Overview

This document contains code for feature selection using the projpred package. To use this package for feature selection, we need to set a reference model and then test combinations of predictors to see the minimum amount of predictors that has the same model accuracy.

The process of the feature selection was based off of projpred documentation.

We performed feature selection on our final model selection with the formula including: diet, habitat, species, year, sediment DDT (including interacting predictors as well)

Load in Data

Load in appropriate dataset and split data into training and testing sets.

# read in cleaned data
fish_cleaned <- read_csv(here::here("data", "data_outputs", "ddx_southernCA_norm.csv"))

# split new data
fish_split <- initial_split(fish_cleaned, prop = 0.7)
fish_train <- training(fish_split)
fish_test <- testing(fish_split)

Set reference model

Set reference model using stan_glmer() function but the same formula as the clients: This did not work unless I selected only the predictors in the model so tidy the data to select these first.

# Clean training dataset to only include predictors in model
fish_projpred_train <- fish_train %>% 
  select(TotalDDT.trans.non, TotalDDT.sed.trans, trophic_category, feeding_position, Year, CompositeCommonName)

# set the reference model as specified in projpred documentation
refm_fit <- stan_glmer(
  TotalDDT.trans.non ~ TotalDDT.sed.trans * trophic_category + TotalDDT.sed.trans * feeding_position + Year + (1|CompositeCommonName),
  family = gaussian(),
  data = fish_projpred_train,
  refresh = 0,
  prior_intercept = rstanarm::cauchy(0, 0.5)
)

Incorporating projpred

The next steps all include the workflow from the projpred vignette from the projpred documentation.

In the projpred vignette, they set the method to L1, but it did not work with our multilevel model, so I took it out. Plot the model performance using rmse.

# set the reference model (client's model)
refm_obj <- get_refmodel(refm_fit)

# preliminary (fast) run
# Preliminary cv_varsel() run:
# had to take out method = L1 because reference model is different format
cvvs_fast <- cv_varsel(
  refm_obj,
  validate_search = FALSE,
  ### Only for the sake of speed (not recommended in general):
  refit_prj = FALSE,
  ###
  nterms_max = 15,
  ### In interactive use, we recommend not to deactivate the verbose mode:
  verbose = FALSE
  ### 
)

plot(cvvs_fast, stats = "rmse", ranking_nterms_max = NA)

# Preliminary cv_varsel() run with `refit_prj = TRUE`:
cvvs_fast_refit <- cv_varsel(
  cvvs_fast,
  ### Only for the sake of speed (not recommended in general):
  nclusters_pred = 15,
  ###
  ### In interactive use, we recommend not to deactivate the verbose mode:
  verbose = FALSE
  ### 
)

plot(cvvs_fast_refit, stats = "rmse", ranking_nterms_max = NA)

Both plot shows that the model performance levels at around 3 predictors.

We now run the model with k-fold cross validation (using 10 folds).

ncores <- parallel::detectCores(logical = FALSE)

# Refit the reference model K times:
cv_fits <- run_cvfun(
  refm_obj,
  K = 10
)
# For running projpred's CV in parallel (see cv_varsel()'s argument `parallel`):
doParallel::registerDoParallel(ncores)
# Final cv_varsel() run:
cvvs <- cv_varsel(
  refm_obj,
  cv_method = "kfold",
  cvfits = cv_fits,
  ### Only for the sake of speed (not recommended in general):
  nclusters_pred = 20,
  ###
  nterms_max = 5,
  parallel = TRUE,
  ### In interactive use, we recommend not to deactivate the verbose mode:
  verbose = FALSE
  ### 
)

plot(cvvs, stats = "rmse", deltas = TRUE)

suggest_size(cvvs, stat = "rmse")
## [1] NA

Ranking predictors

rk <- ranking(cvvs)

( pr_rk <- cv_proportions(rk) )
##     predictor
## size TotalDDT.sed.trans (1 | CompositeCommonName) Year feeding_position
##    1                  1                         0    0                0
##    2                  0                         1    0                0
##    3                  0                         0    1                0
##    4                  0                         0    0                1
##    5                  0                         0    0                0
##     predictor
## size TotalDDT.sed.trans:feeding_position
##    1                                   0
##    2                                   0
##    3                                   0
##    4                                   0
##    5                                   1
## attr(,"class")
## [1] "cv_proportions"
plot(pr_rk)

plotting posteriors

# selected optimal number of predictors
( predictors_final <- head(rk[["fulldata"]], 7) )
## [1] "TotalDDT.sed.trans"                  "(1 | CompositeCommonName)"          
## [3] "Year"                                "feeding_position"                   
## [5] "TotalDDT.sed.trans:feeding_position"
prj <- project(
  refm_obj,
  predictor_terms = predictors_final,
  verbose = TRUE
)
##   |                                                                              |                                                                      |   0%  |                                                                              |=                                                                     |   1%  |                                                                              |=                                                                     |   2%  |                                                                              |==                                                                    |   2%  |                                                                              |==                                                                    |   3%  |                                                                              |==                                                                    |   4%  |                                                                              |===                                                                   |   4%  |                                                                              |===                                                                   |   5%  |                                                                              |====                                                                  |   5%  |                                                                              |====                                                                  |   6%  |                                                                              |=====                                                                 |   6%  |                                                                              |=====                                                                 |   7%  |                                                                              |=====                                                                 |   8%  |                                                                              |======                                                                |   8%  |                                                                              |======                                                                |   9%  |                                                                              |=======                                                               |  10%  |                                                                              |========                                                              |  11%  |                                                                              |========                                                              |  12%  |                                                                              |=========                                                             |  12%  |                                                                              |=========                                                             |  13%  |                                                                              |=========                                                             |  14%  |                                                                              |==========                                                            |  14%  |                                                                              |==========                                                            |  15%  |                                                                              |===========                                                           |  15%  |                                                                              |===========                                                           |  16%  |                                                                              |============                                                          |  16%  |                                                                              |============                                                          |  17%  |                                                                              |============                                                          |  18%  |                                                                              |=============                                                         |  18%  |                                                                              |=============                                                         |  19%  |                                                                              |==============                                                        |  20%  |                                                                              |===============                                                       |  21%  |                                                                              |===============                                                       |  22%  |                                                                              |================                                                      |  22%  |                                                                              |================                                                      |  23%  |                                                                              |================                                                      |  24%  |                                                                              |=================                                                     |  24%  |                                                                              |=================                                                     |  25%  |                                                                              |==================                                                    |  25%  |                                                                              |==================                                                    |  26%  |                                                                              |===================                                                   |  26%  |                                                                              |===================                                                   |  27%  |                                                                              |===================                                                   |  28%  |                                                                              |====================                                                  |  28%  |                                                                              |====================                                                  |  29%  |                                                                              |=====================                                                 |  30%  |                                                                              |======================                                                |  31%  |                                                                              |======================                                                |  32%  |                                                                              |=======================                                               |  32%  |                                                                              |=======================                                               |  33%  |                                                                              |=======================                                               |  34%  |                                                                              |========================                                              |  34%  |                                                                              |========================                                              |  35%  |                                                                              |=========================                                             |  35%  |                                                                              |=========================                                             |  36%  |                                                                              |==========================                                            |  36%  |                                                                              |==========================                                            |  37%  |                                                                              |==========================                                            |  38%  |                                                                              |===========================                                           |  38%  |                                                                              |===========================                                           |  39%  |                                                                              |============================                                          |  40%  |                                                                              |=============================                                         |  41%  |                                                                              |=============================                                         |  42%  |                                                                              |==============================                                        |  42%  |                                                                              |==============================                                        |  43%  |                                                                              |==============================                                        |  44%  |                                                                              |===============================                                       |  44%  |                                                                              |===============================                                       |  45%  |                                                                              |================================                                      |  45%  |                                                                              |================================                                      |  46%  |                                                                              |=================================                                     |  46%  |                                                                              |=================================                                     |  47%  |                                                                              |=================================                                     |  48%  |                                                                              |==================================                                    |  48%  |                                                                              |==================================                                    |  49%  |                                                                              |===================================                                   |  50%  |                                                                              |====================================                                  |  51%  |                                                                              |====================================                                  |  52%  |                                                                              |=====================================                                 |  52%  |                                                                              |=====================================                                 |  53%  |                                                                              |=====================================                                 |  54%  |                                                                              |======================================                                |  54%  |                                                                              |======================================                                |  55%  |                                                                              |=======================================                               |  55%  |                                                                              |=======================================                               |  56%  |                                                                              |========================================                              |  56%  |                                                                              |========================================                              |  57%  |                                                                              |========================================                              |  58%  |                                                                              |=========================================                             |  58%  |                                                                              |=========================================                             |  59%  |                                                                              |==========================================                            |  60%  |                                                                              |===========================================                           |  61%  |                                                                              |===========================================                           |  62%  |                                                                              |============================================                          |  62%  |                                                                              |============================================                          |  63%  |                                                                              |============================================                          |  64%  |                                                                              |=============================================                         |  64%  |                                                                              |=============================================                         |  65%  |                                                                              |==============================================                        |  65%  |                                                                              |==============================================                        |  66%  |                                                                              |===============================================                       |  66%  |                                                                              |===============================================                       |  67%  |                                                                              |===============================================                       |  68%  |                                                                              |================================================                      |  68%  |                                                                              |================================================                      |  69%  |                                                                              |=================================================                     |  70%  |                                                                              |==================================================                    |  71%  |                                                                              |==================================================                    |  72%  |                                                                              |===================================================                   |  72%  |                                                                              |===================================================                   |  73%  |                                                                              |===================================================                   |  74%  |                                                                              |====================================================                  |  74%  |                                                                              |====================================================                  |  75%  |                                                                              |=====================================================                 |  75%  |                                                                              |=====================================================                 |  76%  |                                                                              |======================================================                |  76%  |                                                                              |======================================================                |  77%  |                                                                              |======================================================                |  78%  |                                                                              |=======================================================               |  78%  |                                                                              |=======================================================               |  79%  |                                                                              |========================================================              |  80%  |                                                                              |=========================================================             |  81%  |                                                                              |=========================================================             |  82%  |                                                                              |==========================================================            |  82%  |                                                                              |==========================================================            |  83%  |                                                                              |==========================================================            |  84%  |                                                                              |===========================================================           |  84%  |                                                                              |===========================================================           |  85%  |                                                                              |============================================================          |  85%  |                                                                              |============================================================          |  86%  |                                                                              |=============================================================         |  86%  |                                                                              |=============================================================         |  87%  |                                                                              |=============================================================         |  88%  |                                                                              |==============================================================        |  88%  |                                                                              |==============================================================        |  89%  |                                                                              |===============================================================       |  90%  |                                                                              |================================================================      |  91%  |                                                                              |================================================================      |  92%  |                                                                              |=================================================================     |  92%  |                                                                              |=================================================================     |  93%  |                                                                              |=================================================================     |  94%  |                                                                              |==================================================================    |  94%  |                                                                              |==================================================================    |  95%  |                                                                              |===================================================================   |  95%  |                                                                              |===================================================================   |  96%  |                                                                              |====================================================================  |  96%  |                                                                              |====================================================================  |  97%  |                                                                              |====================================================================  |  98%  |                                                                              |===================================================================== |  98%  |                                                                              |===================================================================== |  99%  |                                                                              |======================================================================| 100%
prj_mat <- as.matrix(prj)

prj_drws <- as_draws_matrix(prj_mat)
prj_smmry <- summarize_draws(
  prj_drws,
  "median", "mad", function(x) quantile(x, probs = c(0.025, 0.975))
)
# Coerce to a `data.frame` because pkgdown versions > 1.6.1 don't print the
# tibble correctly:
prj_smmry <- as.data.frame(prj_smmry)
print(prj_smmry, digits = 1)
##                                                       variable median   mad
## 1                                                  (Intercept)  1.821 0.205
## 2                                           TotalDDT.sed.trans  0.625 0.055
## 3                                                         Year -0.063 0.006
## 4                                feeding_positionBenthopelagic  0.178 0.217
## 5                                     feeding_positionMidwater  0.660 0.278
## 6                                      feeding_positionPelagic  0.752 0.312
## 7             TotalDDT.sed.trans:feeding_positionBenthopelagic -0.005 0.060
## 8                  TotalDDT.sed.trans:feeding_positionMidwater -0.231 0.067
## 9                   TotalDDT.sed.trans:feeding_positionPelagic -0.418 0.084
## 10          Sigma[CompositeCommonName:(Intercept),(Intercept)]  0.921 0.062
## 11         b[(Intercept) CompositeCommonName:barred sand bass]  0.247 0.186
## 12         b[(Intercept) CompositeCommonName:barred surfperch]  0.336 0.194
## 13            b[(Intercept) CompositeCommonName:black croaker]  0.020 0.439
## 14              b[(Intercept) CompositeCommonName:black perch] -0.490 0.187
## 15            b[(Intercept) CompositeCommonName:blue rockfish]  0.175 0.619
## 16           b[(Intercept) CompositeCommonName:brown rockfish] -0.757 0.285
## 17 b[(Intercept) CompositeCommonName:brown smooth-hound shark]  1.364 0.392
## 18       b[(Intercept) CompositeCommonName:california corbina]  0.078 0.206
## 19       b[(Intercept) CompositeCommonName:california halibut]  0.126 0.344
## 20    b[(Intercept) CompositeCommonName:california lizardfish] -0.196 0.504
## 21  b[(Intercept) CompositeCommonName:california scorpionfish]  0.595 0.219
## 22     b[(Intercept) CompositeCommonName:california sheephead] -0.145 0.402
## 23          b[(Intercept) CompositeCommonName:canary rockfish]  0.228 0.602
## 24     b[(Intercept) CompositeCommonName:chilipepper rockfish]  0.250 0.571
## 25            b[(Intercept) CompositeCommonName:chub mackerel]  0.268 0.187
## 26          b[(Intercept) CompositeCommonName:copper rockfish]  0.704 0.285
## 27           b[(Intercept) CompositeCommonName:diamond turbot] -0.418 0.300
## 28             b[(Intercept) CompositeCommonName:fantail sole] -0.361 0.538
## 29            b[(Intercept) CompositeCommonName:flag rockfish]  0.854 0.584
## 30          b[(Intercept) CompositeCommonName:gopher rockfish] -0.593 0.412
## 31   b[(Intercept) CompositeCommonName:gray smoothhound shark] -0.690 0.438
## 32   b[(Intercept) CompositeCommonName:greenblotched rockfish]  0.258 0.394
## 33    b[(Intercept) CompositeCommonName:greenspotted rockfish]  0.311 0.507
## 34                 b[(Intercept) CompositeCommonName:halfmoon] -2.733 0.498
## 35         b[(Intercept) CompositeCommonName:hornyhead turbot]  1.118 0.296
## 36                b[(Intercept) CompositeCommonName:jacksmelt] -0.204 0.561
## 37                b[(Intercept) CompositeCommonName:kelp bass] -0.034 0.253
## 38            b[(Intercept) CompositeCommonName:kelp rockfish] -0.478 0.638
## 39            b[(Intercept) CompositeCommonName:leopard shark] -0.190 0.504
## 40          b[(Intercept) CompositeCommonName:longfin sanddab] -0.119 0.467
## 41             b[(Intercept) CompositeCommonName:market squid] -2.217 0.232
## 42         b[(Intercept) CompositeCommonName:northern anchovy]  0.655 0.264
## 43          b[(Intercept) CompositeCommonName:ocean whitefish] -0.527 0.477
## 44           b[(Intercept) CompositeCommonName:olive rockfish]  0.340 0.552
## 45                  b[(Intercept) CompositeCommonName:opaleye] -2.998 0.267
## 46        b[(Intercept) CompositeCommonName:pacific barracuda]  0.828 0.570
## 47          b[(Intercept) CompositeCommonName:pacific sardine]  0.153 0.221
## 48           b[(Intercept) CompositeCommonName:pile surfperch]  0.291 0.389
## 49                b[(Intercept) CompositeCommonName:queenfish]  0.579 0.318
## 50       b[(Intercept) CompositeCommonName:quillback rockfish] -0.703 0.568
## 51        b[(Intercept) CompositeCommonName:rainbow surfperch] -0.001 0.315
## 52            b[(Intercept) CompositeCommonName:rosy rockfish] -0.161 0.417
## 53         b[(Intercept) CompositeCommonName:shiner surfperch]  1.128 0.246
## 54    b[(Intercept) CompositeCommonName:shovelnose guitarfish] -0.144 0.343
## 55           b[(Intercept) CompositeCommonName:slough anchovy]  0.326 0.453
## 56        b[(Intercept) CompositeCommonName:speckled rockfish]  0.019 0.404
## 57         b[(Intercept) CompositeCommonName:speckled sanddab] -0.272 0.419
## 58          b[(Intercept) CompositeCommonName:spotfin croaker] -0.058 0.370
## 59        b[(Intercept) CompositeCommonName:spotted sand bass] -0.075 0.205
## 60           b[(Intercept) CompositeCommonName:spotted turbot] -0.271 0.382
## 61      b[(Intercept) CompositeCommonName:squarespot rockfish] -0.065 0.451
## 62          b[(Intercept) CompositeCommonName:starry rockfish]  0.893 0.408
## 63           b[(Intercept) CompositeCommonName:striped mullet] -0.250 0.450
## 64                b[(Intercept) CompositeCommonName:top smelt]  0.793 0.353
## 65       b[(Intercept) CompositeCommonName:vermilion rockfish] -0.197 0.159
## 66        b[(Intercept) CompositeCommonName:walleye surfperch]  0.328 0.374
## 67            b[(Intercept) CompositeCommonName:white croaker]  1.466 0.149
## 68          b[(Intercept) CompositeCommonName:white surfperch]  0.360 0.325
## 69        b[(Intercept) CompositeCommonName:yellowfin croaker]  0.333 0.203
## 70      b[(Intercept) CompositeCommonName:yellowtail rockfish] -0.109 0.525
## 71                                                       sigma  1.022 0.028
##     2.5% 97.5%
## 1   1.42  2.23
## 2   0.52  0.73
## 3  -0.07 -0.05
## 4  -0.28  0.57
## 5   0.13  1.14
## 6   0.20  1.32
## 7  -0.12  0.11
## 8  -0.36 -0.10
## 9  -0.60 -0.27
## 10  0.81  1.03
## 11 -0.10  0.62
## 12 -0.05  0.80
## 13 -0.80  0.94
## 14 -0.81 -0.18
## 15 -1.02  1.45
## 16 -1.31 -0.26
## 17  0.42  2.35
## 18 -0.33  0.46
## 19 -0.53  0.84
## 20 -1.18  0.62
## 21  0.16  1.03
## 22 -0.95  0.63
## 23 -0.74  1.37
## 24 -0.94  1.36
## 25 -0.13  0.66
## 26  0.14  1.32
## 27 -1.01  0.14
## 28 -1.51  0.77
## 29 -0.24  2.01
## 30 -1.37  0.24
## 31 -1.57  0.17
## 32 -0.58  1.10
## 33 -0.67  1.32
## 34 -3.67 -1.83
## 35  0.45  1.70
## 36 -1.32  0.92
## 37 -0.44  0.41
## 38 -1.61  0.71
## 39 -1.01  0.70
## 40 -0.98  0.75
## 41 -2.69 -1.77
## 42  0.14  1.24
## 43 -1.58  0.54
## 44 -0.73  1.41
## 45 -3.45 -2.46
## 46 -0.26  1.82
## 47 -0.31  0.63
## 48 -0.49  1.02
## 49 -0.03  1.14
## 50 -1.76  0.40
## 51 -0.60  0.64
## 52 -0.95  0.76
## 53  0.67  1.60
## 54 -0.83  0.58
## 55 -0.57  1.34
## 56 -0.67  0.85
## 57 -1.11  0.46
## 58 -0.71  0.67
## 59 -0.49  0.32
## 60 -1.01  0.50
## 61 -1.10  0.87
## 62  0.22  1.72
## 63 -1.04  0.65
## 64  0.18  1.44
## 65 -0.53  0.07
## 66 -0.47  1.09
## 67  1.19  1.73
## 68 -0.27  0.94
## 69 -0.04  0.68
## 70 -1.31  1.00
## 71  0.97  1.07
library(bayesplot)
bayesplot_theme_set(ggplot2::theme_bw())
mcmc_intervals(prj_mat) +
  ggplot2::coord_cartesian(xlim = c(-1.5, 1.6))

predictions

prj_linpred <- proj_linpred(prj, newdata = fish_projpred_train)
cbind(fish_projpred_train, linpred = as.vector(prj_linpred$pred))
##       TotalDDT.trans.non TotalDDT.sed.trans    trophic_category
## 1             2.94443898        0.757060688 Secondary Carnivore
## 2             2.60268969        0.009889753   Primary Carnivore
## 3             1.69708242        2.122440181 Secondary Carnivore
## 4             3.43398720        0.002344505 Secondary Carnivore
## 5             4.80745776        1.168798094   Primary Carnivore
## 6             1.60140574        0.281204828 Secondary Carnivore
## 7             4.56954301        6.849625561 Secondary Carnivore
## 8             1.85629799        0.002059853 Secondary Carnivore
## 9             2.52652832        0.015041422   Primary Carnivore
## 10            2.16332303        0.223982763 Secondary Carnivore
## 11            1.66770682        2.894695819 Secondary Carnivore
## 12            4.47960696        6.849625561 Secondary Carnivore
## 13            0.00000000        0.015041422   Primary Carnivore
## 14            4.85203026        6.942696930 Secondary Carnivore
## 15            5.02388052        4.094232049   Primary Carnivore
## 16            1.85848310        0.900183757   Primary Carnivore
## 17            6.44730586        7.288251436 Secondary Carnivore
## 18            0.00000000        1.315195554   Primary Carnivore
## 19            4.79579055        7.288251436   Primary Carnivore
## 20            2.86789890        2.387053327 Secondary Carnivore
## 21            3.15700042        2.387053327 Secondary Carnivore
## 22            1.09192330        0.211247175 Secondary Carnivore
## 23            1.82454929        0.063185562 Secondary Carnivore
## 24            1.02961942        2.894695819   Primary Carnivore
## 25            4.59208495        2.387053327 Secondary Carnivore
## 26            3.91657264        4.232513096   Primary Carnivore
## 27            1.76644166        4.047182371 Secondary Carnivore
## 28            2.74071098        3.873611973 Secondary Carnivore
## 29            0.99325177        0.878396534   Primary Carnivore
## 30            3.26956894        2.894695819   Primary Carnivore
## 31            3.01944880        2.853935439 Secondary Carnivore
## 32            7.72832775        6.670778349 Secondary Carnivore
## 33            1.12167756        0.015041422   Primary Carnivore
## 34            1.08180517        0.211247175 Secondary Carnivore
## 35            0.83290912        0.470853119  Tertiary Carnivore
## 36            4.12713439        0.004578480  Tertiary Carnivore
## 37            0.00000000        1.126655451   Primary Carnivore
## 38            3.58629287        6.670778349   Primary Carnivore
## 39            0.01064316        0.305596011  Tertiary Carnivore
## 40            1.38629436        0.020024930  Tertiary Carnivore
## 41            1.24126859        0.561550440 Secondary Carnivore
## 42            5.48188814        6.670778349 Secondary Carnivore
## 43            7.34018684        6.942696930  Tertiary Carnivore
## 44            1.32972401        0.015041422  Tertiary Carnivore
## 45            6.06092531        2.610718759 Secondary Carnivore
## 46            7.88615659        6.670778349 Secondary Carnivore
## 47            4.25844557        0.002059853 Secondary Carnivore
## 48            8.12346889        7.288251436 Secondary Carnivore
## 49            1.14740245        0.015041422 Secondary Carnivore
## 50            6.83936937        6.849625561 Secondary Carnivore
## 51            6.41345896        4.094232049 Secondary Carnivore
## 52            3.92395158        2.277308093   Primary Carnivore
## 53            3.54673969        6.670778349 Secondary Carnivore
## 54            3.56953270        2.387053327 Secondary Carnivore
## 55            0.00000000        0.130455954 Secondary Carnivore
## 56            4.41642806        6.670778349 Secondary Carnivore
## 57            3.21112587        3.651616415 Secondary Carnivore
## 58            3.01553490        0.015041422  Tertiary Carnivore
## 59            4.29959566        2.153233085   Primary Carnivore
## 60            4.83628191        6.849625561 Secondary Carnivore
## 61            4.24769492        3.873611973 Secondary Carnivore
## 62            3.91921707        1.506685742 Secondary Carnivore
## 63            0.26236426        2.024989105   Primary Carnivore
## 64            1.40609699        0.305596011  Tertiary Carnivore
## 65            0.00000000        1.459857720   Primary Carnivore
## 66            5.14166356        7.288251436  Tertiary Carnivore
## 67            3.28057281        2.433189939 Secondary Carnivore
## 68            4.45781801        7.288251436   Primary Carnivore
## 69            4.27527626        6.670778349   Primary Carnivore
## 70            7.52736356        7.288251436 Secondary Carnivore
## 71            4.23555473        4.094232049 Secondary Carnivore
## 72            0.02078254        1.180964506 Secondary Carnivore
## 73            0.85441533        2.153233085           Herbivore
## 74            0.00000000        0.130455954 Secondary Carnivore
## 75            1.99877364        0.015041422  Tertiary Carnivore
## 76            0.00000000        3.146907198   Primary Carnivore
## 77            7.95384545        6.849625561 Secondary Carnivore
## 78            2.64617480        0.305596011  Tertiary Carnivore
## 79            3.12236492        3.038160131 Secondary Carnivore
## 80            0.00000000        0.340191127   Primary Carnivore
## 81            4.41558229        3.943759073 Secondary Carnivore
## 82            3.70179568        0.735932630   Primary Carnivore
## 83            4.56017282        3.146907198 Secondary Carnivore
## 84            2.13416644        1.742111989 Secondary Carnivore
## 85            6.77445243        6.670778349 Secondary Carnivore
## 86            2.54160199        2.050338578   Primary Carnivore
## 87            2.08815348        0.009889753           Herbivore
## 88            2.89668512        2.136925014 Secondary Carnivore
## 89            2.10413415        1.886232978 Secondary Carnivore
## 90            4.71573613        3.304296954 Secondary Carnivore
## 91            7.34665516        7.288251436 Secondary Carnivore
## 92            5.22810947        1.168798094   Primary Carnivore
## 93            2.21920348        0.223982763 Secondary Carnivore
## 94            2.79116511        1.886232978   Primary Carnivore
## 95            2.56240767        2.075946520   Primary Carnivore
## 96            2.84490938        3.473231162  Tertiary Carnivore
## 97            1.52388002        1.532760019 Secondary Carnivore
## 98            3.63663834        3.651616415   Primary Carnivore
## 99            2.36368019        0.015041422   Primary Carnivore
## 100           3.92789635        6.849625561   Primary Carnivore
## 101           2.91695959        2.433189939 Secondary Carnivore
## 102           6.52590904        6.670778349 Secondary Carnivore
## 103           2.45958884        0.015041422   Primary Carnivore
## 104           2.59525471        3.473231162 Secondary Carnivore
## 105           7.61386804        6.670778349 Secondary Carnivore
## 106           2.27212589        1.532760019   Primary Carnivore
## 107           3.68637632        2.153233085 Secondary Carnivore
## 108           0.00000000        0.211247175 Secondary Carnivore
## 109           3.33932198        2.404044412 Secondary Carnivore
## 110           1.90389697        0.211247175 Secondary Carnivore
## 111           3.25424297        3.515099295 Secondary Carnivore
## 112           2.98568194        4.121930401   Primary Carnivore
## 113           2.82137889        2.153233085 Secondary Carnivore
## 114           3.15700042        1.168798094 Secondary Carnivore
## 115           5.61312811        6.849625561   Primary Carnivore
## 116           3.23080440        2.241290896   Primary Carnivore
## 117           2.05412373        0.856029167 Secondary Carnivore
## 118           2.47653840        0.885298676  Tertiary Carnivore
## 119           3.24259235        0.749689812   Primary Carnivore
## 120           3.23867845        3.146907198 Secondary Carnivore
## 121           2.27829240        2.387053327  Tertiary Carnivore
## 122           5.44570235        1.168798094   Primary Carnivore
## 123           5.77455155        6.942696930  Tertiary Carnivore
## 124           4.57367952        4.094232049 Secondary Carnivore
## 125           6.28897318        6.670778349 Secondary Carnivore
## 126           4.86375810        1.673740129   Primary Carnivore
## 127           2.81367068        2.891851822  Tertiary Carnivore
## 128           0.00000000        0.002344505 Secondary Carnivore
## 129           1.20297230        0.015041422   Primary Carnivore
## 130           2.83749827        2.853935439 Secondary Carnivore
## 131           7.05142263        6.670778349 Secondary Carnivore
## 132           3.25037449        0.020024930   Primary Carnivore
## 133           1.00063188        1.711701702 Secondary Carnivore
## 134           7.78130551        6.670778349 Secondary Carnivore
## 135           7.82043952        7.288251436 Secondary Carnivore
## 136           8.06495089        4.094232049 Secondary Carnivore
## 137           0.79750720        0.413477448 Secondary Carnivore
## 138           0.00000000        1.673740129           Herbivore
## 139           4.51085951        7.288251436 Secondary Carnivore
## 140           2.25023861        0.214753881 Secondary Carnivore
## 141           2.82137889        0.009889753   Primary Carnivore
## 142           8.50329709        7.288251436 Secondary Carnivore
## 143           4.58598737        4.094232049 Secondary Carnivore
## 144           3.79098468        1.168798094 Secondary Carnivore
## 145           0.00000000        0.015041422   Primary Carnivore
## 146           2.54944517        0.015041422  Tertiary Carnivore
## 147           5.52146092        6.942696930 Secondary Carnivore
## 148           2.94443898        2.894695819   Primary Carnivore
## 149           1.62136648        1.180964506  Tertiary Carnivore
## 150           3.72810017        1.673740129 Secondary Carnivore
## 151           3.66612247        6.849625561 Secondary Carnivore
## 152           0.83290912        0.147199990  Tertiary Carnivore
## 153           1.66203036        0.009889753  Tertiary Carnivore
## 154           4.30000280        6.849625561 Secondary Carnivore
## 155           1.69009582        0.015041422 Secondary Carnivore
## 156           3.88362353        6.849625561   Primary Carnivore
## 157           2.54944517        0.044241443   Primary Carnivore
## 158           0.63180355        4.047182371   Primary Carnivore
## 159           3.87120101        1.673740129 Secondary Carnivore
## 160           3.59731226        2.153233085 Secondary Carnivore
## 161           4.66343909        6.849625561 Secondary Carnivore
## 162           5.57215403        4.259772081   Primary Carnivore
## 163           1.27256560        0.823328714 Secondary Carnivore
## 164           0.82855182        1.877421323 Secondary Carnivore
## 165           6.11146734        7.288251436   Primary Carnivore
## 166           0.00000000        0.116104790 Secondary Carnivore
## 167           4.98360662        4.094232049   Primary Carnivore
## 168           4.46579317        3.473231162   Primary Carnivore
## 169           5.35185813        7.288251436  Tertiary Carnivore
## 170           1.99741771        0.490146528  Tertiary Carnivore
## 171           3.81683282        2.153233085 Secondary Carnivore
## 172           0.30748470        0.211247175  Tertiary Carnivore
## 173           6.27795841        6.670778349 Secondary Carnivore
## 174           1.22671229        0.305596011  Tertiary Carnivore
## 175           0.69314718        0.470853119  Tertiary Carnivore
## 176           2.91158951        1.962719022 Secondary Carnivore
## 177           3.93573953        1.168798094 Secondary Carnivore
## 178           2.77819796        0.015041422   Primary Carnivore
## 179           4.29728541        4.094232049 Secondary Carnivore
## 180           0.00000000        0.009889753  Tertiary Carnivore
## 181           7.22875123        6.670778349 Secondary Carnivore
## 182           5.55902642        1.168798094   Primary Carnivore
## 183           7.02028007        6.670778349 Secondary Carnivore
## 184           2.37861978        2.387053327 Secondary Carnivore
## 185           4.48863637        6.670778349 Secondary Carnivore
## 186           0.78845736        0.130455954 Secondary Carnivore
## 187           0.40546511        2.894695819   Primary Carnivore
## 188           7.34665516        7.288251436 Secondary Carnivore
## 189           0.00000000        1.459857720   Primary Carnivore
## 190           0.00000000        0.002344505 Secondary Carnivore
## 191           4.92308559        7.288251436 Secondary Carnivore
## 192           3.36729583        1.168798094 Secondary Carnivore
## 193           1.78170913        0.856029167   Primary Carnivore
## 194           6.08904488        7.288251436 Secondary Carnivore
## 195           2.16676537        0.015041422  Tertiary Carnivore
## 196           3.75560309        6.942696930 Secondary Carnivore
## 197           0.83290912        4.262479896 Secondary Carnivore
## 198           1.05779029        2.122440181 Secondary Carnivore
## 199           4.51085951        7.288251436 Secondary Carnivore
## 200           1.93152141        0.490146528 Secondary Carnivore
## 201           2.03339760        1.742111989 Secondary Carnivore
## 202           3.68135119        2.387053327 Secondary Carnivore
## 203           2.56510319        2.254856321   Primary Carnivore
## 204           5.64897424        4.259772081 Secondary Carnivore
## 205           3.51868408        1.886232978 Secondary Carnivore
## 206           2.54944517        0.281204828 Secondary Carnivore
## 207           5.89715387        6.942696930  Tertiary Carnivore
## 208           2.61739583        1.742111989 Secondary Carnivore
## 209           2.24191003        6.670778349 Secondary Carnivore
## 210           7.47363711        7.288251436 Secondary Carnivore
## 211           1.96571278        0.856029167 Secondary Carnivore
## 212           0.40546511        0.063185562 Secondary Carnivore
## 213           6.19031541        6.942696930  Tertiary Carnivore
## 214           2.28033948        1.532760019   Primary Carnivore
## 215           2.13947776        4.047182371 Secondary Carnivore
## 216           3.49650756        3.146907198 Secondary Carnivore
## 217           0.53062825        0.130455954  Tertiary Carnivore
## 218           3.95316495        6.670778349 Secondary Carnivore
## 219           3.73050113        6.670778349 Secondary Carnivore
## 220           3.05870707        3.038160131 Secondary Carnivore
## 221           8.44080878        6.849625561 Secondary Carnivore
## 222           2.32630162        2.845177164 Secondary Carnivore
## 223           1.48160454        0.130455954 Secondary Carnivore
## 224           3.57234564        3.168005566 Secondary Carnivore
## 225           6.59441346        7.288251436  Tertiary Carnivore
## 226           4.60616969        4.259772081  Tertiary Carnivore
## 227           1.54756251        0.015041422 Secondary Carnivore
## 228           4.22537282        1.168798094 Secondary Carnivore
## 229           0.00000000        0.470853119  Tertiary Carnivore
## 230           2.98061864        2.387053327 Secondary Carnivore
## 231           3.76352300        1.168798094 Secondary Carnivore
## 232           3.19179236        1.540263127 Secondary Carnivore
## 233           4.01096295        6.670778349 Secondary Carnivore
## 234           5.11198779        4.094232049  Tertiary Carnivore
## 235           1.16315081        1.126655451   Primary Carnivore
## 236           1.19392247        0.211247175 Secondary Carnivore
## 237           7.39079852        7.288251436 Secondary Carnivore
## 238           4.66861436        2.153233085 Secondary Carnivore
## 239           1.54756251        0.009889753  Tertiary Carnivore
## 240           6.06610809        7.288251436  Tertiary Carnivore
## 241           4.04480412        6.942696930  Tertiary Carnivore
## 242           4.98561830        3.304296954   Primary Carnivore
## 243           6.77502357        6.849625561 Secondary Carnivore
## 244           4.62497281        3.168005566 Secondary Carnivore
## 245           2.58021683        1.532760019   Primary Carnivore
## 246           4.98360662        4.094232049   Primary Carnivore
## 247           2.63905733        2.153233085 Secondary Carnivore
## 248           5.22035583        3.146907198 Secondary Carnivore
## 249           7.13297667        6.670778349 Secondary Carnivore
## 250           2.58776404        0.757060688 Secondary Carnivore
## 251           2.11709853        3.515099295 Secondary Carnivore
## 252           2.36837283        0.735932630 Secondary Carnivore
## 253           4.18813844        6.849625561  Tertiary Carnivore
## 254           0.00000000        0.004578480 Secondary Carnivore
## 255           3.41444261        1.742111989 Secondary Carnivore
## 256           5.13603370        1.673740129 Secondary Carnivore
## 257           1.80664808        0.116104790 Secondary Carnivore
## 258           3.39114705        1.670180746 Secondary Carnivore
## 259           1.30019166        2.845177164 Secondary Carnivore
## 260           3.13113691        4.259772081 Secondary Carnivore
## 261           2.64326276        0.490146528 Secondary Carnivore
## 262           0.00000000        0.015041422 Secondary Carnivore
## 263           4.08260931        6.670778349 Secondary Carnivore
## 264           5.02388052        6.942696930 Secondary Carnivore
## 265           1.04027671        0.885298676 Secondary Carnivore
## 266           3.94931879        7.161415474 Secondary Carnivore
## 267           0.00000000        0.002059853 Secondary Carnivore
## 268           2.14943391        0.735932630 Secondary Carnivore
## 269           7.29369772        7.288251436 Secondary Carnivore
## 270           1.53686722        0.015041422  Tertiary Carnivore
## 271           0.00000000        0.147199990 Secondary Carnivore
## 272           2.11142459        0.900183757 Secondary Carnivore
## 273           1.82454929        0.490146528  Tertiary Carnivore
## 274           0.83290912        1.831515834 Secondary Carnivore
## 275           4.75780543        4.094232049 Secondary Carnivore
## 276           2.74084002        1.886232978 Secondary Carnivore
## 277           6.03954017        1.886232978 Secondary Carnivore
## 278           0.17395331        1.532760019  Tertiary Carnivore
## 279           3.28091122        3.146907198 Secondary Carnivore
## 280           5.35185813        7.288251436  Tertiary Carnivore
## 281           0.00000000        2.404044412           Herbivore
## 282           1.19392247        0.147199990 Secondary Carnivore
## 283           4.44968528        1.168798094  Tertiary Carnivore
## 284           4.82807371        1.673740129   Primary Carnivore
## 285           0.00000000        1.877421323 Secondary Carnivore
## 286           7.68303529        6.849625561 Secondary Carnivore
## 287           1.85207032        0.211247175 Secondary Carnivore
## 288           0.19885086        0.305596011 Secondary Carnivore
## 289           1.65822808        0.885298676  Tertiary Carnivore
## 290           1.84292776        1.962719022 Secondary Carnivore
## 291           2.58021683        2.136925014 Secondary Carnivore
## 292           5.77299754        1.886232978   Primary Carnivore
## 293           4.45771372        1.886232978   Primary Carnivore
## 294           2.77102500        1.962719022  Tertiary Carnivore
## 295           3.94352167        3.146907198  Tertiary Carnivore
## 296           2.95491028        2.472143654   Primary Carnivore
## 297           7.98214318        6.849625561 Secondary Carnivore
## 298           4.79892612        2.387053327   Primary Carnivore
## 299           0.92821930        6.942696930           Herbivore
## 300           7.83494639        6.670778349 Secondary Carnivore
## 301           7.03341830        6.670778349 Secondary Carnivore
## 302           1.32175584        2.254856321 Secondary Carnivore
## 303           6.78649119        6.670778349  Tertiary Carnivore
## 304           0.00000000        1.670180746   Primary Carnivore
## 305           0.00000000        2.404044412           Herbivore
## 306           5.90511659        1.886232978   Primary Carnivore
## 307           4.61485315        1.432814265 Secondary Carnivore
## 308           4.22753423        1.506685742   Primary Carnivore
## 309           7.39184671        7.288251436 Secondary Carnivore
## 310           1.28923265        0.856029167 Secondary Carnivore
## 311           1.51292701        0.015041422 Secondary Carnivore
## 312           0.97455964        0.305596011  Tertiary Carnivore
## 313           7.97968130        7.288251436 Secondary Carnivore
## 314           1.18784342        0.561550440 Secondary Carnivore
## 315           4.06355884        2.138914945 Secondary Carnivore
## 316           3.19043520        2.610718759 Secondary Carnivore
## 317           1.76985463        0.015041422  Tertiary Carnivore
## 318           5.38587026        0.004578480  Tertiary Carnivore
## 319           1.32441896        4.047182371 Secondary Carnivore
## 320           0.83290912        5.169038067   Primary Carnivore
## 321           2.56617937        1.962719022 Secondary Carnivore
## 322           2.17815501        2.845177164 Secondary Carnivore
## 323           4.96284463        6.670778349  Tertiary Carnivore
## 324           2.16217294        0.009889753   Primary Carnivore
## 325           0.90421815        0.305596011  Tertiary Carnivore
## 326           0.00000000        1.886232978           Herbivore
## 327           1.34547237        0.856029167 Secondary Carnivore
## 328           0.00000000        0.004578480  Tertiary Carnivore
## 329           3.57660621        1.432814265  Tertiary Carnivore
## 330           0.43048287        0.856029167  Tertiary Carnivore
## 331           7.98132323        6.670778349 Secondary Carnivore
## 332           3.66867675        0.749689812   Primary Carnivore
## 333           1.19392247        1.532760019  Tertiary Carnivore
## 334           4.18801704        3.651616415   Primary Carnivore
## 335           1.44926916        1.251683108 Secondary Carnivore
## 336           4.50534985        4.094232049  Tertiary Carnivore
## 337           2.44633906        0.470853119 Secondary Carnivore
## 338           4.34510328        6.670778349 Secondary Carnivore
## 339           4.84418709        3.146907198 Secondary Carnivore
## 340           1.49962305        0.561550440 Secondary Carnivore
## 341           6.67997600        6.670778349 Secondary Carnivore
## 342           2.11384297        0.009889753 Secondary Carnivore
## 343           3.50453585        3.873611973  Tertiary Carnivore
## 344           8.49631679        6.849625561 Secondary Carnivore
## 345           5.86646806        2.153233085  Tertiary Carnivore
## 346           0.37156356        0.130455954 Secondary Carnivore
## 347           0.00000000        1.981883583   Primary Carnivore
## 348           4.31348009        4.259772081 Secondary Carnivore
## 349           2.82137889        1.168798094 Secondary Carnivore
## 350           2.65324196        0.002344505 Secondary Carnivore
## 351           3.85014760        6.849625561 Secondary Carnivore
## 352           3.86157146        0.015041422 Secondary Carnivore
## 353           3.26575941        2.387053327 Secondary Carnivore
## 354           4.62497281        4.259772081 Secondary Carnivore
## 355           2.94443898        0.004578480  Tertiary Carnivore
## 356           4.39444915        7.288251436 Secondary Carnivore
## 357           0.99325177        0.130455954  Tertiary Carnivore
## 358           4.00369019        1.307030142 Secondary Carnivore
## 359           0.53999600        0.413477448  Tertiary Carnivore
## 360           0.26236426        1.920179330   Primary Carnivore
## 361           3.30310667        1.506685742 Secondary Carnivore
## 362           0.00000000        0.130455954 Secondary Carnivore
## 363           4.21331208        1.886232978 Secondary Carnivore
## 364           5.75574221        1.168798094 Secondary Carnivore
## 365           1.56024767        0.009889753   Primary Carnivore
## 366           2.02683159        0.885298676  Tertiary Carnivore
## 367           4.75531284        3.943759073 Secondary Carnivore
## 368           4.99767163        4.232513096 Secondary Carnivore
## 369           2.22354189        0.015041422 Secondary Carnivore
## 370           3.26575941        5.169038067   Primary Carnivore
## 371           1.71918878        0.856029167   Primary Carnivore
## 372           1.13462273        2.136925014 Secondary Carnivore
## 373           0.58778666        0.147199990 Secondary Carnivore
## 374           1.84150156        1.711701702  Tertiary Carnivore
## 375           2.97041447        2.387053327 Secondary Carnivore
## 376           0.00000000        0.002344505 Secondary Carnivore
## 377           0.00000000        2.404044412           Herbivore
## 378           2.77258872        0.116104790 Secondary Carnivore
## 379           1.85629799        0.490146528  Tertiary Carnivore
## 380           4.59410924        3.168005566 Secondary Carnivore
## 381           5.56452041        7.288251436  Tertiary Carnivore
## 382           8.05360097        6.670778349 Secondary Carnivore
## 383           3.24649099        1.307030142 Secondary Carnivore
## 384           1.70292826        0.015041422 Secondary Carnivore
## 385           3.88752537        0.749689812   Primary Carnivore
## 386           0.00000000        0.015041422  Tertiary Carnivore
## 387           5.18178355        6.849625561 Secondary Carnivore
## 388           2.40865536        1.540263127 Secondary Carnivore
## 389           2.90690106        3.515099295 Secondary Carnivore
## 390           2.61739583        0.757060688  Tertiary Carnivore
## 391           2.52572864        0.735932630 Secondary Carnivore
## 392           3.36037539        2.891851822  Tertiary Carnivore
## 393           3.35340672        5.169038067   Primary Carnivore
## 394           0.00000000        1.886232978           Herbivore
## 395           1.98787435        2.241290896   Primary Carnivore
## 396           2.68852753        3.226603994 Secondary Carnivore
## 397           2.58776404        2.136925014 Secondary Carnivore
## 398           1.35325451        2.404044412 Secondary Carnivore
## 399           4.70953020        7.288251436 Secondary Carnivore
## 400           7.35212054        6.849625561 Secondary Carnivore
## 401           2.56494936        1.315195554 Secondary Carnivore
## 402           5.81889528        6.849625561 Secondary Carnivore
## 403           1.79275897        0.116104790 Secondary Carnivore
## 404           1.62924054        0.147199990 Secondary Carnivore
## 405           7.75022723        6.670778349 Secondary Carnivore
## 406           3.79773386        4.094232049 Secondary Carnivore
## 407           0.95551145        0.490146528  Tertiary Carnivore
## 408           1.53255687        2.075946520 Secondary Carnivore
## 409           5.14813381        1.886232978   Primary Carnivore
## 410           0.00000000        1.886232978           Herbivore
## 411           0.33647224        2.894695819   Primary Carnivore
## 412           3.28578653        0.015041422 Secondary Carnivore
## 413           2.29253476        1.315195554   Primary Carnivore
## 414           7.29715875        6.849625561 Secondary Carnivore
## 415           0.26236426        2.024989105   Primary Carnivore
## 416           0.68813464        1.251683108 Secondary Carnivore
## 417           1.02961942        0.470853119  Tertiary Carnivore
## 418           1.26976054        1.180964506 Secondary Carnivore
## 419           4.04305127        6.670778349  Tertiary Carnivore
## 420           3.96840334        2.050338578   Primary Carnivore
## 421           5.72227706        6.849625561 Secondary Carnivore
## 422           4.79579055        7.288251436 Secondary Carnivore
## 423           7.40482675        6.670778349 Secondary Carnivore
## 424           0.78845736        7.161415474   Primary Carnivore
## 425           5.57215403        4.259772081   Primary Carnivore
## 426           3.51452607        1.886232978 Secondary Carnivore
## 427           1.87640694        0.885298676  Tertiary Carnivore
## 428           2.63905733        0.002059853 Secondary Carnivore
## 429           0.00000000        2.894695819   Primary Carnivore
## 430           3.40452517        1.886232978 Secondary Carnivore
## 431           0.00000000        0.002059853 Secondary Carnivore
## 432           2.24918432        0.009889753   Primary Carnivore
## 433           1.66392610        0.211247175 Secondary Carnivore
## 434           0.06765865        0.305596011 Secondary Carnivore
## 435           2.27212589        1.670180746 Secondary Carnivore
## 436           2.77881927        0.885298676  Tertiary Carnivore
## 437           6.58340922        4.259772081  Tertiary Carnivore
## 438           0.00000000        1.670180746   Primary Carnivore
## 439           1.45161383        1.532760019 Secondary Carnivore
## 440           1.99333884        1.307030142 Secondary Carnivore
## 441           0.00000000        0.002059853 Secondary Carnivore
## 442           2.04122033        0.063185562 Secondary Carnivore
## 443           2.23537634        0.015041422 Secondary Carnivore
## 444           2.58021683        2.891851822 Secondary Carnivore
## 445           4.25134831        1.168798094 Secondary Carnivore
## 446           0.00000000        2.404044412           Herbivore
## 447           1.47476301        0.900183757 Secondary Carnivore
## 448           6.77490937        6.849625561 Secondary Carnivore
## 449           3.42816383        0.015041422   Primary Carnivore
## 450           1.61541998        0.009889753  Tertiary Carnivore
## 451           6.90505163        6.849625561 Secondary Carnivore
## 452           1.66770682        0.002344505 Secondary Carnivore
## 453           3.03013370        3.146907198 Secondary Carnivore
## 454           1.81156210        0.211247175 Secondary Carnivore
## 455           1.01884732        0.223982763 Secondary Carnivore
## 456           1.51072194        0.015041422  Tertiary Carnivore
## 457           5.68357977        4.094232049  Tertiary Carnivore
## 458           4.79579055        7.288251436 Secondary Carnivore
## 459           1.19996478        0.015041422  Tertiary Carnivore
## 460           7.45066080        7.288251436 Secondary Carnivore
## 461           2.47863704        1.711701702   Primary Carnivore
## 462           1.31640823        0.214753881 Secondary Carnivore
## 463           6.08677473        4.094232049 Secondary Carnivore
## 464           3.51443678        2.610718759 Secondary Carnivore
## 465           2.92316158        3.473231162 Secondary Carnivore
## 466           1.77495235        0.002344505 Secondary Carnivore
## 467           0.00000000        1.877421323 Secondary Carnivore
## 468           2.32727771        0.009889753           Herbivore
## 469           1.43983513        0.305596011  Tertiary Carnivore
## 470           5.21553341        0.735932630   Primary Carnivore
## 471           4.19166787        2.433189939 Secondary Carnivore
## 472           1.47796155        1.711701702  Tertiary Carnivore
## 473           2.28238239        1.315195554 Secondary Carnivore
## 474           2.55722731        1.315195554 Secondary Carnivore
## 475           3.16665579        0.470853119 Secondary Carnivore
## 476           0.00000000        0.002344505  Tertiary Carnivore
## 477           2.79116511        0.009889753           Herbivore
## 478           1.75958057        4.262479896 Secondary Carnivore
## 479           1.29746315        0.413477448 Secondary Carnivore
## 480           2.85647021        1.886232978 Secondary Carnivore
## 481           2.85070650        0.063185562 Secondary Carnivore
## 482           5.18505908        1.432814265 Secondary Carnivore
## 483           1.20297230        1.831515834  Tertiary Carnivore
## 484           3.26956894        1.886232978 Secondary Carnivore
## 485           3.80443779        6.670778349   Primary Carnivore
## 486           5.01727984        7.288251436  Tertiary Carnivore
## 487           3.85227300        6.670778349 Secondary Carnivore
## 488           3.27222700        0.735932630   Primary Carnivore
## 489           1.08180517        0.116104790 Secondary Carnivore
## 490           1.89611948        0.885298676 Secondary Carnivore
## 491           1.66770682        0.490146528 Secondary Carnivore
## 492           4.27495632        4.232513096  Tertiary Carnivore
## 493           5.77827133        6.670778349  Tertiary Carnivore
## 494           0.00000000        1.673740129           Herbivore
## 495           1.48387469        0.885298676 Secondary Carnivore
## 496           3.55820113        2.153233085           Herbivore
## 497           0.78845736        2.145288428 Secondary Carnivore
## 498           2.00417906        0.211247175 Secondary Carnivore
## 499           8.42299240        6.849625561 Secondary Carnivore
## 500           6.01859321        7.288251436  Tertiary Carnivore
## 501           0.00000000        0.002059853 Secondary Carnivore
## 502           1.95727391        0.004578480   Primary Carnivore
## 503           1.62924054        0.223982763 Secondary Carnivore
## 504           1.04027671        1.454402431 Secondary Carnivore
## 505           5.44241771        2.153233085 Secondary Carnivore
## 506           3.06339092        3.943759073 Secondary Carnivore
## 507           2.53369681        1.981883583   Primary Carnivore
## 508           4.09434456        7.288251436 Secondary Carnivore
## 509           3.28776736        2.433189939  Tertiary Carnivore
## 510           5.30330491        7.288251436 Secondary Carnivore
## 511           0.00000000        0.009889753 Secondary Carnivore
## 512           5.28826703        2.153233085  Tertiary Carnivore
## 513           0.95551145        0.211247175 Secondary Carnivore
## 514           1.67335124        0.735932630 Secondary Carnivore
## 515           2.70136121        3.515099295 Secondary Carnivore
## 516           1.18172720        2.387053327 Secondary Carnivore
## 517           2.41126011        1.014024833 Secondary Carnivore
## 518           2.32238772        0.223982763 Secondary Carnivore
## 519           7.51261754        6.942696930 Secondary Carnivore
## 520           0.00000000        0.009889753 Secondary Carnivore
## 521           2.63905733        0.002059853 Secondary Carnivore
## 522           0.91629073        0.063185562 Secondary Carnivore
## 523           3.02456266        2.254856321 Secondary Carnivore
## 524           1.41098697        0.147199990 Secondary Carnivore
## 525           3.78940329        0.214753881  Tertiary Carnivore
## 526           0.83290912        0.130455954 Secondary Carnivore
## 527           7.62525355        6.849625561 Secondary Carnivore
## 528           3.34990409        2.387053327   Primary Carnivore
## 529           4.61512052        7.288251436  Tertiary Carnivore
## 530           3.55010577        1.540263127 Secondary Carnivore
## 531           1.24990174        2.241290896   Primary Carnivore
## 532           7.22329568        7.288251436 Secondary Carnivore
## 533           4.71849887        3.146907198 Secondary Carnivore
## 534           3.92296295        2.138914945 Secondary Carnivore
## 535           3.28091122        1.168798094   Primary Carnivore
## 536           2.38139627        2.136925014 Secondary Carnivore
## 537           1.34547237        0.885298676 Secondary Carnivore
## 538           2.23697934        0.490146528   Primary Carnivore
## 539           2.91463067        2.136925014 Secondary Carnivore
## 540           4.30217141        0.002059853 Secondary Carnivore
## 541           1.13140211        0.470853119  Tertiary Carnivore
## 542           3.38113072        1.632888289 Secondary Carnivore
## 543           1.53901545        2.853935439 Secondary Carnivore
## 544           2.98061864        0.885298676  Tertiary Carnivore
## 545           1.95868534        0.211247175 Secondary Carnivore
## 546           1.68639895        7.161415474 Secondary Carnivore
## 547           3.09557761        0.009889753   Primary Carnivore
## 548           2.63991411        2.254856321   Primary Carnivore
## 549           0.00000000        0.305596011 Secondary Carnivore
## 550           3.36037539        1.168798094 Secondary Carnivore
## 551           1.59533899        0.413477448 Secondary Carnivore
## 552           3.56133013        1.886232978 Secondary Carnivore
## 553           4.65396035        1.168798094 Secondary Carnivore
## 554           0.00000000        1.459857720   Primary Carnivore
## 555           7.34968088        6.849625561 Secondary Carnivore
## 556           4.68213123        6.670778349  Tertiary Carnivore
## 557           1.31908561        0.004578480   Primary Carnivore
## 558           8.85237889        7.288251436 Secondary Carnivore
## 559           0.93216408        4.094232049           Herbivore
## 560           4.86753445        2.153233085 Secondary Carnivore
## 561           0.00000000        0.281204828 Secondary Carnivore
## 562           2.12823171        0.211247175 Secondary Carnivore
## 563           5.67194775        1.886232978 Secondary Carnivore
## 564           0.82417544        1.831515834   Primary Carnivore
## 565           0.63657683        4.259772081           Herbivore
## 566           6.61069604        6.942696930 Secondary Carnivore
## 567           3.42426265        3.651616415  Tertiary Carnivore
## 568           3.73440238        3.943759073 Secondary Carnivore
## 569           3.66612247        0.749689812   Primary Carnivore
## 570           2.08193842        0.004578480  Tertiary Carnivore
## 571           0.00000000        2.145288428 Secondary Carnivore
## 572           3.77045944        2.050338578   Primary Carnivore
## 573           8.52734152        7.288251436 Secondary Carnivore
## 574           3.71571611        2.433189939 Secondary Carnivore
## 575           3.06339092        0.735932630 Secondary Carnivore
## 576           2.61520365        3.226603994  Tertiary Carnivore
## 577           7.20630310        6.849625561 Secondary Carnivore
## 578           2.83321334        3.146907198 Secondary Carnivore
## 579           2.80940270        1.420705940 Secondary Carnivore
## 580           6.99062476        7.288251436 Secondary Carnivore
## 581           4.47847253        1.168798094 Secondary Carnivore
## 582           1.68639895        0.116104790 Secondary Carnivore
## 583           0.00000000        0.009889753           Herbivore
## 584           2.50470928        1.432814265 Secondary Carnivore
## 585           6.66134310        6.670778349 Secondary Carnivore
## 586           0.87546874        0.063185562 Secondary Carnivore
## 587           3.20453346        2.610718759  Tertiary Carnivore
## 588           1.08518927        1.180964506  Tertiary Carnivore
## 589           3.00071982        0.214753881  Tertiary Carnivore
## 590           2.00552586        1.307030142 Secondary Carnivore
## 591           1.46325540        4.094232049           Herbivore
## 592           4.53689135        1.673740129 Secondary Carnivore
## 593           5.25227343        7.288251436   Primary Carnivore
## 594           3.03013370        1.670180746   Primary Carnivore
## 595           5.25017699        3.473231162   Primary Carnivore
## 596           3.88567903        2.387053327 Secondary Carnivore
## 597           3.89731538        0.735932630 Secondary Carnivore
## 598           5.54126355        3.146907198 Secondary Carnivore
## 599           4.77912349        4.094232049  Tertiary Carnivore
## 600           1.70402055        0.211247175 Secondary Carnivore
## 601           2.81540872        0.757060688 Secondary Carnivore
## 602           7.84998662        6.670778349 Secondary Carnivore
## 603           0.00000000        0.002344505  Tertiary Carnivore
## 604           3.94158181        3.168005566 Secondary Carnivore
## 605           1.73342389        0.015041422 Secondary Carnivore
## 606           3.49347266        1.168798094 Secondary Carnivore
## 607           0.26236426        2.107009466   Primary Carnivore
## 608           0.00000000        2.107009466   Primary Carnivore
## 609           2.84490938        0.020024930  Tertiary Carnivore
## 610           0.74193734        2.241290896   Primary Carnivore
## 611           1.67335124        0.490146528 Secondary Carnivore
## 612           4.02177387        2.153233085  Tertiary Carnivore
## 613           4.50976000        6.670778349 Secondary Carnivore
## 614           4.07414185        3.159561805   Primary Carnivore
## 615           2.76744803        6.670778349 Secondary Carnivore
## 616           2.96460274        3.038160131 Secondary Carnivore
## 617           5.17868888        2.153233085 Secondary Carnivore
## 618           1.55180880        0.009889753  Tertiary Carnivore
## 619           1.38629436        0.063185562 Secondary Carnivore
## 620           4.54648119        3.146907198 Secondary Carnivore
## 621           2.37024374        0.490146528 Secondary Carnivore
## 622           0.30748470        4.259772081           Herbivore
## 623           2.01089500        0.214753881 Secondary Carnivore
## 624           3.39450839        1.479154529   Primary Carnivore
## 625           2.68784749        0.757060688   Primary Carnivore
## 626           2.35801980        3.515099295 Secondary Carnivore
## 627           3.76584050        0.009889753  Tertiary Carnivore
## 628           0.81536481        1.251683108 Secondary Carnivore
## 629           0.00000000        1.886232978           Herbivore
## 630           1.28923265        0.004578480 Secondary Carnivore
## 631           2.00512201        2.853935439   Primary Carnivore
## 632           4.74449725        3.146907198 Secondary Carnivore
## 633           4.03777421        6.670778349   Primary Carnivore
## 634           4.71635371        1.168798094 Secondary Carnivore
## 635           0.36394843        0.413477448  Tertiary Carnivore
## 636           0.00000000        0.009889753           Herbivore
## 637           4.94875989        7.288251436 Secondary Carnivore
## 638           3.99636415        6.670778349 Secondary Carnivore
## 639           1.15688120        0.004578480   Primary Carnivore
## 640           3.51452607        1.168798094 Secondary Carnivore
## 641           8.20305762        7.288251436 Secondary Carnivore
## 642           0.81668960        1.705681497 Secondary Carnivore
## 643           2.55567572        0.015041422   Primary Carnivore
## 644           1.34547237        1.962719022 Secondary Carnivore
## 645           2.37954613        0.004578480 Secondary Carnivore
## 646           4.85203026        6.849625561  Tertiary Carnivore
## 647           0.95165788        1.877421323 Secondary Carnivore
## 648           4.74701691        0.002059853 Secondary Carnivore
## 649           0.98954119        0.116104790 Secondary Carnivore
## 650           7.58054668        6.670778349 Secondary Carnivore
## 651           3.03013370        2.153233085 Secondary Carnivore
## 652           6.27476202        7.288251436   Primary Carnivore
## 653           4.55807858        6.670778349 Secondary Carnivore
## 654           1.06594239        2.145288428 Secondary Carnivore
## 655           2.39059597        1.886232978   Primary Carnivore
## 656           5.50443683        6.942696930 Secondary Carnivore
## 657           2.01623547        1.886232978   Primary Carnivore
## 658           1.40609699        2.136925014 Secondary Carnivore
## 659           0.00000000        2.404044412           Herbivore
## 660           4.99043259        6.670778349 Secondary Carnivore
## 661           3.44998755        1.886232978 Secondary Carnivore
## 662           1.74221902        1.831515834 Secondary Carnivore
## 663           0.83290912        1.315195554   Primary Carnivore
## 664           2.67414865        1.168798094 Secondary Carnivore
## 665           3.39785848        2.153233085 Secondary Carnivore
## 666           3.76537743        1.886232978   Primary Carnivore
## 667           0.53062825        2.472143654   Primary Carnivore
## 668           3.68145194        1.014024833 Secondary Carnivore
## 669           7.71020519        7.288251436 Secondary Carnivore
## 670           2.18941639        1.532760019   Primary Carnivore
## 671           1.82454929        3.226603994  Tertiary Carnivore
## 672           1.79342475        4.047182371  Tertiary Carnivore
## 673           6.29876541        6.849625561 Secondary Carnivore
## 674           2.60172626        0.470853119  Tertiary Carnivore
## 675           0.40879290        2.891851822 Secondary Carnivore
## 676           0.00000000        0.009889753  Tertiary Carnivore
## 677           2.70951579        1.540263127 Secondary Carnivore
## 678           1.67147330        0.015041422   Primary Carnivore
## 679           5.30330491        4.259772081 Secondary Carnivore
## 680           3.64021428        1.070822001   Primary Carnivore
## 681           1.89069942        2.075946520 Secondary Carnivore
## 682           4.24849524        6.849625561 Secondary Carnivore
## 683           3.97168717        4.232513096 Secondary Carnivore
## 684           0.99694863        1.540263127   Primary Carnivore
## 685           4.44851638        6.670778349 Secondary Carnivore
## 686           0.00000000        0.015041422   Primary Carnivore
## 687           2.62466859        0.004578480 Secondary Carnivore
## 688           6.68511160        6.849625561 Secondary Carnivore
## 689           5.30230939        6.670778349  Tertiary Carnivore
## 690           4.50733683        2.387053327 Secondary Carnivore
## 691           3.12236492        2.891851822 Secondary Carnivore
## 692           6.72623340        6.942696930  Tertiary Carnivore
## 693           1.04027671        0.116104790 Secondary Carnivore
## 694           2.71469474        1.886232978 Secondary Carnivore
## 695           1.30291275        0.490146528 Secondary Carnivore
## 696           3.81771233        0.735932630 Secondary Carnivore
## 697           2.84490938        4.259772081 Secondary Carnivore
## 698           1.67147330        0.004578480   Primary Carnivore
## 699           1.32441896        2.122440181 Secondary Carnivore
## 700           1.66770682        0.490146528  Tertiary Carnivore
## 701           1.69561561        0.009889753 Secondary Carnivore
## 702           7.38634693        7.288251436 Secondary Carnivore
## 703           1.45861502        0.223982763 Secondary Carnivore
## 704           3.55820113        2.404044412 Secondary Carnivore
## 705           3.95871573        3.473231162 Secondary Carnivore
## 706           1.22377543        0.878396534   Primary Carnivore
## 707           3.91800508        3.146907198  Tertiary Carnivore
## 708           2.80336038        1.168798094 Secondary Carnivore
## 709           1.79175947        0.878396534   Primary Carnivore
## 710           1.75785792        0.223982763 Secondary Carnivore
## 711           3.45568557        0.749689812   Primary Carnivore
## 712           3.68250921        3.873611973 Secondary Carnivore
## 713           1.42310833        1.454402431 Secondary Carnivore
## 714           5.73979291        2.153233085   Primary Carnivore
## 715           3.08190997        0.002059853 Secondary Carnivore
## 716           3.23474917        1.886232978 Secondary Carnivore
## 717           5.08140436        6.670778349   Primary Carnivore
## 718           1.04027671        0.116104790 Secondary Carnivore
## 719           3.91202301        0.004578480  Tertiary Carnivore
## 720           3.92197334        6.670778349   Primary Carnivore
## 721           2.33505228        1.886232978 Secondary Carnivore
## 722           7.83391713        6.670778349 Secondary Carnivore
## 723           4.52601875        2.138914945  Tertiary Carnivore
## 724           4.56076888        1.432814265 Secondary Carnivore
## 725           3.57632647        0.470853119 Secondary Carnivore
## 726           2.94968834        1.307030142 Secondary Carnivore
## 727           7.17142638        6.670778349 Secondary Carnivore
## 728           2.37954613        0.490146528  Tertiary Carnivore
## 729           1.80500470        1.886232978 Secondary Carnivore
## 730           2.12584791        3.515099295 Secondary Carnivore
## 731           4.80541352        4.094232049 Secondary Carnivore
## 732           1.68639895        0.130455954 Secondary Carnivore
## 733           6.91214563        6.670778349 Secondary Carnivore
## 734           5.57473625        3.473231162   Primary Carnivore
## 735           7.21604848        6.849625561 Secondary Carnivore
## 736           2.43562887        2.853935439 Secondary Carnivore
## 737           2.07693841        0.735932630 Secondary Carnivore
## 738           1.28093385        0.130455954  Tertiary Carnivore
## 739           1.41342303        0.413477448 Secondary Carnivore
## 740           4.26310232        2.433189939  Tertiary Carnivore
## 741           7.68959991        6.849625561 Secondary Carnivore
## 742           4.26267988        7.288251436   Primary Carnivore
## 743           3.49650756        1.168798094 Secondary Carnivore
## 744           4.00551335        3.146907198 Secondary Carnivore
## 745           4.20916024        1.886232978   Primary Carnivore
## 746           7.83241093        6.942696930 Secondary Carnivore
## 747           4.53646299        3.146907198 Secondary Carnivore
## 748           8.53210151        6.849625561 Secondary Carnivore
## 749           1.33500107        0.015041422 Secondary Carnivore
## 750           2.82731362        0.002344505 Secondary Carnivore
## 751           4.70048037        6.670778349 Secondary Carnivore
## 752           4.35388433        1.168798094 Secondary Carnivore
## 753           4.61541750        3.473231162  Tertiary Carnivore
## 754           1.42069579        0.214753881 Secondary Carnivore
## 755           1.06471074        0.305596011  Tertiary Carnivore
## 756           5.16478597        7.288251436 Secondary Carnivore
## 757           0.00000000        0.004578480 Secondary Carnivore
## 758           1.09192330        1.180964506 Secondary Carnivore
## 759           0.47000363        0.147199990 Secondary Carnivore
## 760           0.00000000        0.004578480   Primary Carnivore
## 761           5.39816270        7.288251436  Tertiary Carnivore
## 762           1.19392247        1.670180746   Primary Carnivore
## 763           5.50938834        4.094232049  Tertiary Carnivore
## 764           1.77495235        0.490146528  Tertiary Carnivore
## 765           3.23474917        1.670180746   Primary Carnivore
## 766           3.06339092        0.735932630 Secondary Carnivore
## 767           3.71843826        2.387053327 Secondary Carnivore
## 768           1.67147330        0.856029167  Tertiary Carnivore
## 769           4.98360662        6.849625561   Primary Carnivore
## 770           0.00000000        0.147199990 Secondary Carnivore
## 771           1.79175947        0.223982763 Secondary Carnivore
## 772           1.49290410        0.823328714 Secondary Carnivore
## 773           2.94443898        0.757060688 Secondary Carnivore
## 774           2.60268969        0.009889753   Primary Carnivore
## 775           1.69708242        2.122440181 Secondary Carnivore
## 776           3.43398720        0.002344505 Secondary Carnivore
## 777           4.80745776        1.168798094   Primary Carnivore
## 778           1.60140574        0.281204828 Secondary Carnivore
## 779           4.56954301        6.849625561 Secondary Carnivore
## 780           1.85629799        0.002059853 Secondary Carnivore
## 781           2.52652832        0.015041422   Primary Carnivore
## 782           2.16332303        0.223982763 Secondary Carnivore
## 783           1.66770682        2.894695819 Secondary Carnivore
## 784           4.47960696        6.849625561 Secondary Carnivore
## 785           0.00000000        0.015041422   Primary Carnivore
## 786           4.85203026        6.942696930 Secondary Carnivore
## 787           5.02388052        4.094232049   Primary Carnivore
## 788           1.85848310        0.900183757   Primary Carnivore
## 789           6.44730586        7.288251436 Secondary Carnivore
## 790           0.00000000        1.315195554   Primary Carnivore
## 791           4.79579055        7.288251436   Primary Carnivore
## 792           2.86789890        2.387053327 Secondary Carnivore
## 793           3.15700042        2.387053327 Secondary Carnivore
## 794           1.09192330        0.211247175 Secondary Carnivore
## 795           1.82454929        0.063185562 Secondary Carnivore
## 796           1.02961942        2.894695819   Primary Carnivore
## 797           4.59208495        2.387053327 Secondary Carnivore
## 798           3.91657264        4.232513096   Primary Carnivore
## 799           1.76644166        4.047182371 Secondary Carnivore
## 800           2.74071098        3.873611973 Secondary Carnivore
## 801           0.99325177        0.878396534   Primary Carnivore
## 802           3.26956894        2.894695819   Primary Carnivore
## 803           3.01944880        2.853935439 Secondary Carnivore
## 804           7.72832775        6.670778349 Secondary Carnivore
## 805           1.12167756        0.015041422   Primary Carnivore
## 806           1.08180517        0.211247175 Secondary Carnivore
## 807           0.83290912        0.470853119  Tertiary Carnivore
## 808           4.12713439        0.004578480  Tertiary Carnivore
## 809           0.00000000        1.126655451   Primary Carnivore
## 810           3.58629287        6.670778349   Primary Carnivore
## 811           0.01064316        0.305596011  Tertiary Carnivore
## 812           1.38629436        0.020024930  Tertiary Carnivore
## 813           1.24126859        0.561550440 Secondary Carnivore
## 814           5.48188814        6.670778349 Secondary Carnivore
## 815           7.34018684        6.942696930  Tertiary Carnivore
## 816           1.32972401        0.015041422  Tertiary Carnivore
## 817           6.06092531        2.610718759 Secondary Carnivore
## 818           7.88615659        6.670778349 Secondary Carnivore
## 819           4.25844557        0.002059853 Secondary Carnivore
## 820           8.12346889        7.288251436 Secondary Carnivore
## 821           1.14740245        0.015041422 Secondary Carnivore
## 822           6.83936937        6.849625561 Secondary Carnivore
## 823           6.41345896        4.094232049 Secondary Carnivore
## 824           3.92395158        2.277308093   Primary Carnivore
## 825           3.54673969        6.670778349 Secondary Carnivore
## 826           3.56953270        2.387053327 Secondary Carnivore
## 827           0.00000000        0.130455954 Secondary Carnivore
## 828           4.41642806        6.670778349 Secondary Carnivore
## 829           3.21112587        3.651616415 Secondary Carnivore
## 830           3.01553490        0.015041422  Tertiary Carnivore
## 831           4.29959566        2.153233085   Primary Carnivore
## 832           4.83628191        6.849625561 Secondary Carnivore
## 833           4.24769492        3.873611973 Secondary Carnivore
## 834           3.91921707        1.506685742 Secondary Carnivore
## 835           0.26236426        2.024989105   Primary Carnivore
## 836           1.40609699        0.305596011  Tertiary Carnivore
## 837           0.00000000        1.459857720   Primary Carnivore
## 838           5.14166356        7.288251436  Tertiary Carnivore
## 839           3.28057281        2.433189939 Secondary Carnivore
## 840           4.45781801        7.288251436   Primary Carnivore
## 841           4.27527626        6.670778349   Primary Carnivore
## 842           7.52736356        7.288251436 Secondary Carnivore
## 843           4.23555473        4.094232049 Secondary Carnivore
## 844           0.02078254        1.180964506 Secondary Carnivore
## 845           0.85441533        2.153233085           Herbivore
## 846           0.00000000        0.130455954 Secondary Carnivore
## 847           1.99877364        0.015041422  Tertiary Carnivore
## 848           0.00000000        3.146907198   Primary Carnivore
## 849           7.95384545        6.849625561 Secondary Carnivore
## 850           2.64617480        0.305596011  Tertiary Carnivore
## 851           3.12236492        3.038160131 Secondary Carnivore
## 852           0.00000000        0.340191127   Primary Carnivore
## 853           4.41558229        3.943759073 Secondary Carnivore
## 854           3.70179568        0.735932630   Primary Carnivore
## 855           4.56017282        3.146907198 Secondary Carnivore
## 856           2.13416644        1.742111989 Secondary Carnivore
## 857           6.77445243        6.670778349 Secondary Carnivore
## 858           2.54160199        2.050338578   Primary Carnivore
## 859           2.08815348        0.009889753           Herbivore
## 860           2.89668512        2.136925014 Secondary Carnivore
## 861           2.10413415        1.886232978 Secondary Carnivore
## 862           4.71573613        3.304296954 Secondary Carnivore
## 863           7.34665516        7.288251436 Secondary Carnivore
## 864           5.22810947        1.168798094   Primary Carnivore
## 865           2.21920348        0.223982763 Secondary Carnivore
## 866           2.79116511        1.886232978   Primary Carnivore
## 867           2.56240767        2.075946520   Primary Carnivore
## 868           2.84490938        3.473231162  Tertiary Carnivore
## 869           1.52388002        1.532760019 Secondary Carnivore
## 870           3.63663834        3.651616415   Primary Carnivore
## 871           2.36368019        0.015041422   Primary Carnivore
## 872           3.92789635        6.849625561   Primary Carnivore
## 873           2.91695959        2.433189939 Secondary Carnivore
## 874           6.52590904        6.670778349 Secondary Carnivore
## 875           2.45958884        0.015041422   Primary Carnivore
## 876           2.59525471        3.473231162 Secondary Carnivore
## 877           7.61386804        6.670778349 Secondary Carnivore
## 878           2.27212589        1.532760019   Primary Carnivore
## 879           3.68637632        2.153233085 Secondary Carnivore
## 880           0.00000000        0.211247175 Secondary Carnivore
## 881           3.33932198        2.404044412 Secondary Carnivore
## 882           1.90389697        0.211247175 Secondary Carnivore
## 883           3.25424297        3.515099295 Secondary Carnivore
## 884           2.98568194        4.121930401   Primary Carnivore
## 885           2.82137889        2.153233085 Secondary Carnivore
## 886           3.15700042        1.168798094 Secondary Carnivore
## 887           5.61312811        6.849625561   Primary Carnivore
## 888           3.23080440        2.241290896   Primary Carnivore
## 889           2.05412373        0.856029167 Secondary Carnivore
## 890           2.47653840        0.885298676  Tertiary Carnivore
## 891           3.24259235        0.749689812   Primary Carnivore
## 892           3.23867845        3.146907198 Secondary Carnivore
## 893           2.27829240        2.387053327  Tertiary Carnivore
## 894           5.44570235        1.168798094   Primary Carnivore
## 895           5.77455155        6.942696930  Tertiary Carnivore
## 896           4.57367952        4.094232049 Secondary Carnivore
## 897           6.28897318        6.670778349 Secondary Carnivore
## 898           4.86375810        1.673740129   Primary Carnivore
## 899           2.81367068        2.891851822  Tertiary Carnivore
## 900           0.00000000        0.002344505 Secondary Carnivore
## 901           1.20297230        0.015041422   Primary Carnivore
## 902           2.83749827        2.853935439 Secondary Carnivore
## 903           7.05142263        6.670778349 Secondary Carnivore
## 904           3.25037449        0.020024930   Primary Carnivore
## 905           1.00063188        1.711701702 Secondary Carnivore
## 906           7.78130551        6.670778349 Secondary Carnivore
## 907           7.82043952        7.288251436 Secondary Carnivore
## 908           8.06495089        4.094232049 Secondary Carnivore
## 909           0.79750720        0.413477448 Secondary Carnivore
## 910           0.00000000        1.673740129           Herbivore
## 911           4.51085951        7.288251436 Secondary Carnivore
## 912           2.25023861        0.214753881 Secondary Carnivore
## 913           2.82137889        0.009889753   Primary Carnivore
## 914           8.50329709        7.288251436 Secondary Carnivore
## 915           4.58598737        4.094232049 Secondary Carnivore
## 916           3.79098468        1.168798094 Secondary Carnivore
## 917           0.00000000        0.015041422   Primary Carnivore
## 918           2.54944517        0.015041422  Tertiary Carnivore
## 919           5.52146092        6.942696930 Secondary Carnivore
## 920           2.94443898        2.894695819   Primary Carnivore
## 921           1.62136648        1.180964506  Tertiary Carnivore
## 922           3.72810017        1.673740129 Secondary Carnivore
## 923           3.66612247        6.849625561 Secondary Carnivore
## 924           0.83290912        0.147199990  Tertiary Carnivore
## 925           1.66203036        0.009889753  Tertiary Carnivore
## 926           4.30000280        6.849625561 Secondary Carnivore
## 927           1.69009582        0.015041422 Secondary Carnivore
## 928           3.88362353        6.849625561   Primary Carnivore
## 929           2.54944517        0.044241443   Primary Carnivore
## 930           0.63180355        4.047182371   Primary Carnivore
## 931           3.87120101        1.673740129 Secondary Carnivore
## 932           3.59731226        2.153233085 Secondary Carnivore
## 933           4.66343909        6.849625561 Secondary Carnivore
## 934           5.57215403        4.259772081   Primary Carnivore
## 935           1.27256560        0.823328714 Secondary Carnivore
## 936           0.82855182        1.877421323 Secondary Carnivore
## 937           6.11146734        7.288251436   Primary Carnivore
## 938           0.00000000        0.116104790 Secondary Carnivore
## 939           4.98360662        4.094232049   Primary Carnivore
## 940           4.46579317        3.473231162   Primary Carnivore
## 941           5.35185813        7.288251436  Tertiary Carnivore
## 942           1.99741771        0.490146528  Tertiary Carnivore
## 943           3.81683282        2.153233085 Secondary Carnivore
## 944           0.30748470        0.211247175  Tertiary Carnivore
## 945           6.27795841        6.670778349 Secondary Carnivore
## 946           1.22671229        0.305596011  Tertiary Carnivore
## 947           0.69314718        0.470853119  Tertiary Carnivore
## 948           2.91158951        1.962719022 Secondary Carnivore
## 949           3.93573953        1.168798094 Secondary Carnivore
## 950           2.77819796        0.015041422   Primary Carnivore
## 951           4.29728541        4.094232049 Secondary Carnivore
## 952           0.00000000        0.009889753  Tertiary Carnivore
## 953           7.22875123        6.670778349 Secondary Carnivore
## 954           5.55902642        1.168798094   Primary Carnivore
## 955           7.02028007        6.670778349 Secondary Carnivore
## 956           2.37861978        2.387053327 Secondary Carnivore
## 957           4.48863637        6.670778349 Secondary Carnivore
## 958           0.78845736        0.130455954 Secondary Carnivore
## 959           0.40546511        2.894695819   Primary Carnivore
## 960           7.34665516        7.288251436 Secondary Carnivore
## 961           0.00000000        1.459857720   Primary Carnivore
## 962           0.00000000        0.002344505 Secondary Carnivore
## 963           4.92308559        7.288251436 Secondary Carnivore
## 964           3.36729583        1.168798094 Secondary Carnivore
## 965           1.78170913        0.856029167   Primary Carnivore
## 966           6.08904488        7.288251436 Secondary Carnivore
## 967           2.16676537        0.015041422  Tertiary Carnivore
## 968           3.75560309        6.942696930 Secondary Carnivore
## 969           0.83290912        4.262479896 Secondary Carnivore
## 970           1.05779029        2.122440181 Secondary Carnivore
## 971           4.51085951        7.288251436 Secondary Carnivore
## 972           1.93152141        0.490146528 Secondary Carnivore
## 973           2.03339760        1.742111989 Secondary Carnivore
## 974           3.68135119        2.387053327 Secondary Carnivore
## 975           2.56510319        2.254856321   Primary Carnivore
## 976           5.64897424        4.259772081 Secondary Carnivore
## 977           3.51868408        1.886232978 Secondary Carnivore
## 978           2.54944517        0.281204828 Secondary Carnivore
## 979           5.89715387        6.942696930  Tertiary Carnivore
## 980           2.61739583        1.742111989 Secondary Carnivore
## 981           2.24191003        6.670778349 Secondary Carnivore
## 982           7.47363711        7.288251436 Secondary Carnivore
## 983           1.96571278        0.856029167 Secondary Carnivore
## 984           0.40546511        0.063185562 Secondary Carnivore
## 985           6.19031541        6.942696930  Tertiary Carnivore
## 986           2.28033948        1.532760019   Primary Carnivore
## 987           2.13947776        4.047182371 Secondary Carnivore
## 988           3.49650756        3.146907198 Secondary Carnivore
## 989           0.53062825        0.130455954  Tertiary Carnivore
## 990           3.95316495        6.670778349 Secondary Carnivore
## 991           3.73050113        6.670778349 Secondary Carnivore
## 992           3.05870707        3.038160131 Secondary Carnivore
## 993           8.44080878        6.849625561 Secondary Carnivore
## 994           2.32630162        2.845177164 Secondary Carnivore
## 995           1.48160454        0.130455954 Secondary Carnivore
## 996           3.57234564        3.168005566 Secondary Carnivore
## 997           6.59441346        7.288251436  Tertiary Carnivore
## 998           4.60616969        4.259772081  Tertiary Carnivore
## 999           1.54756251        0.015041422 Secondary Carnivore
## 1000          4.22537282        1.168798094 Secondary Carnivore
## 1001          0.00000000        0.470853119  Tertiary Carnivore
## 1002          2.98061864        2.387053327 Secondary Carnivore
## 1003          3.76352300        1.168798094 Secondary Carnivore
## 1004          3.19179236        1.540263127 Secondary Carnivore
## 1005          4.01096295        6.670778349 Secondary Carnivore
## 1006          5.11198779        4.094232049  Tertiary Carnivore
## 1007          1.16315081        1.126655451   Primary Carnivore
## 1008          1.19392247        0.211247175 Secondary Carnivore
## 1009          7.39079852        7.288251436 Secondary Carnivore
## 1010          4.66861436        2.153233085 Secondary Carnivore
## 1011          1.54756251        0.009889753  Tertiary Carnivore
## 1012          6.06610809        7.288251436  Tertiary Carnivore
## 1013          4.04480412        6.942696930  Tertiary Carnivore
## 1014          4.98561830        3.304296954   Primary Carnivore
## 1015          6.77502357        6.849625561 Secondary Carnivore
## 1016          4.62497281        3.168005566 Secondary Carnivore
## 1017          2.58021683        1.532760019   Primary Carnivore
## 1018          4.98360662        4.094232049   Primary Carnivore
## 1019          2.63905733        2.153233085 Secondary Carnivore
## 1020          5.22035583        3.146907198 Secondary Carnivore
## 1021          7.13297667        6.670778349 Secondary Carnivore
## 1022          2.58776404        0.757060688 Secondary Carnivore
## 1023          2.11709853        3.515099295 Secondary Carnivore
## 1024          2.36837283        0.735932630 Secondary Carnivore
## 1025          4.18813844        6.849625561  Tertiary Carnivore
## 1026          0.00000000        0.004578480 Secondary Carnivore
## 1027          3.41444261        1.742111989 Secondary Carnivore
## 1028          5.13603370        1.673740129 Secondary Carnivore
## 1029          1.80664808        0.116104790 Secondary Carnivore
## 1030          3.39114705        1.670180746 Secondary Carnivore
## 1031          1.30019166        2.845177164 Secondary Carnivore
## 1032          3.13113691        4.259772081 Secondary Carnivore
## 1033          2.64326276        0.490146528 Secondary Carnivore
## 1034          0.00000000        0.015041422 Secondary Carnivore
## 1035          4.08260931        6.670778349 Secondary Carnivore
## 1036          5.02388052        6.942696930 Secondary Carnivore
## 1037          1.04027671        0.885298676 Secondary Carnivore
## 1038          3.94931879        7.161415474 Secondary Carnivore
## 1039          0.00000000        0.002059853 Secondary Carnivore
## 1040          2.14943391        0.735932630 Secondary Carnivore
## 1041          7.29369772        7.288251436 Secondary Carnivore
## 1042          1.53686722        0.015041422  Tertiary Carnivore
## 1043          0.00000000        0.147199990 Secondary Carnivore
## 1044          2.11142459        0.900183757 Secondary Carnivore
## 1045          1.82454929        0.490146528  Tertiary Carnivore
## 1046          0.83290912        1.831515834 Secondary Carnivore
## 1047          4.75780543        4.094232049 Secondary Carnivore
## 1048          2.74084002        1.886232978 Secondary Carnivore
## 1049          6.03954017        1.886232978 Secondary Carnivore
## 1050          0.17395331        1.532760019  Tertiary Carnivore
## 1051          3.28091122        3.146907198 Secondary Carnivore
## 1052          5.35185813        7.288251436  Tertiary Carnivore
## 1053          0.00000000        2.404044412           Herbivore
## 1054          1.19392247        0.147199990 Secondary Carnivore
## 1055          4.44968528        1.168798094  Tertiary Carnivore
## 1056          4.82807371        1.673740129   Primary Carnivore
## 1057          0.00000000        1.877421323 Secondary Carnivore
## 1058          7.68303529        6.849625561 Secondary Carnivore
## 1059          1.85207032        0.211247175 Secondary Carnivore
## 1060          0.19885086        0.305596011 Secondary Carnivore
## 1061          1.65822808        0.885298676  Tertiary Carnivore
## 1062          1.84292776        1.962719022 Secondary Carnivore
## 1063          2.58021683        2.136925014 Secondary Carnivore
## 1064          5.77299754        1.886232978   Primary Carnivore
## 1065          4.45771372        1.886232978   Primary Carnivore
## 1066          2.77102500        1.962719022  Tertiary Carnivore
## 1067          3.94352167        3.146907198  Tertiary Carnivore
## 1068          2.95491028        2.472143654   Primary Carnivore
## 1069          7.98214318        6.849625561 Secondary Carnivore
## 1070          4.79892612        2.387053327   Primary Carnivore
## 1071          0.92821930        6.942696930           Herbivore
## 1072          7.83494639        6.670778349 Secondary Carnivore
## 1073          7.03341830        6.670778349 Secondary Carnivore
## 1074          1.32175584        2.254856321 Secondary Carnivore
## 1075          6.78649119        6.670778349  Tertiary Carnivore
## 1076          0.00000000        1.670180746   Primary Carnivore
## 1077          0.00000000        2.404044412           Herbivore
## 1078          5.90511659        1.886232978   Primary Carnivore
## 1079          4.61485315        1.432814265 Secondary Carnivore
## 1080          4.22753423        1.506685742   Primary Carnivore
## 1081          7.39184671        7.288251436 Secondary Carnivore
## 1082          1.28923265        0.856029167 Secondary Carnivore
## 1083          1.51292701        0.015041422 Secondary Carnivore
## 1084          0.97455964        0.305596011  Tertiary Carnivore
## 1085          7.97968130        7.288251436 Secondary Carnivore
## 1086          1.18784342        0.561550440 Secondary Carnivore
## 1087          4.06355884        2.138914945 Secondary Carnivore
## 1088          3.19043520        2.610718759 Secondary Carnivore
## 1089          1.76985463        0.015041422  Tertiary Carnivore
## 1090          5.38587026        0.004578480  Tertiary Carnivore
## 1091          1.32441896        4.047182371 Secondary Carnivore
## 1092          0.83290912        5.169038067   Primary Carnivore
## 1093          2.56617937        1.962719022 Secondary Carnivore
## 1094          2.17815501        2.845177164 Secondary Carnivore
## 1095          4.96284463        6.670778349  Tertiary Carnivore
## 1096          2.16217294        0.009889753   Primary Carnivore
## 1097          0.90421815        0.305596011  Tertiary Carnivore
## 1098          0.00000000        1.886232978           Herbivore
## 1099          1.34547237        0.856029167 Secondary Carnivore
## 1100          0.00000000        0.004578480  Tertiary Carnivore
## 1101          3.57660621        1.432814265  Tertiary Carnivore
## 1102          0.43048287        0.856029167  Tertiary Carnivore
## 1103          7.98132323        6.670778349 Secondary Carnivore
## 1104          3.66867675        0.749689812   Primary Carnivore
## 1105          1.19392247        1.532760019  Tertiary Carnivore
## 1106          4.18801704        3.651616415   Primary Carnivore
## 1107          1.44926916        1.251683108 Secondary Carnivore
## 1108          4.50534985        4.094232049  Tertiary Carnivore
## 1109          2.44633906        0.470853119 Secondary Carnivore
## 1110          4.34510328        6.670778349 Secondary Carnivore
## 1111          4.84418709        3.146907198 Secondary Carnivore
## 1112          1.49962305        0.561550440 Secondary Carnivore
## 1113          6.67997600        6.670778349 Secondary Carnivore
## 1114          2.11384297        0.009889753 Secondary Carnivore
## 1115          3.50453585        3.873611973  Tertiary Carnivore
## 1116          8.49631679        6.849625561 Secondary Carnivore
## 1117          5.86646806        2.153233085  Tertiary Carnivore
## 1118          0.37156356        0.130455954 Secondary Carnivore
## 1119          0.00000000        1.981883583   Primary Carnivore
## 1120          4.31348009        4.259772081 Secondary Carnivore
## 1121          2.82137889        1.168798094 Secondary Carnivore
## 1122          2.65324196        0.002344505 Secondary Carnivore
## 1123          3.85014760        6.849625561 Secondary Carnivore
## 1124          3.86157146        0.015041422 Secondary Carnivore
## 1125          3.26575941        2.387053327 Secondary Carnivore
## 1126          4.62497281        4.259772081 Secondary Carnivore
## 1127          2.94443898        0.004578480  Tertiary Carnivore
## 1128          4.39444915        7.288251436 Secondary Carnivore
## 1129          0.99325177        0.130455954  Tertiary Carnivore
## 1130          4.00369019        1.307030142 Secondary Carnivore
## 1131          0.53999600        0.413477448  Tertiary Carnivore
## 1132          0.26236426        1.920179330   Primary Carnivore
## 1133          3.30310667        1.506685742 Secondary Carnivore
## 1134          0.00000000        0.130455954 Secondary Carnivore
## 1135          4.21331208        1.886232978 Secondary Carnivore
## 1136          5.75574221        1.168798094 Secondary Carnivore
## 1137          1.56024767        0.009889753   Primary Carnivore
## 1138          2.02683159        0.885298676  Tertiary Carnivore
## 1139          4.75531284        3.943759073 Secondary Carnivore
## 1140          4.99767163        4.232513096 Secondary Carnivore
## 1141          2.22354189        0.015041422 Secondary Carnivore
## 1142          3.26575941        5.169038067   Primary Carnivore
## 1143          1.71918878        0.856029167   Primary Carnivore
## 1144          1.13462273        2.136925014 Secondary Carnivore
## 1145          0.58778666        0.147199990 Secondary Carnivore
## 1146          1.84150156        1.711701702  Tertiary Carnivore
## 1147          2.97041447        2.387053327 Secondary Carnivore
## 1148          0.00000000        0.002344505 Secondary Carnivore
## 1149          0.00000000        2.404044412           Herbivore
## 1150          2.77258872        0.116104790 Secondary Carnivore
## 1151          1.85629799        0.490146528  Tertiary Carnivore
## 1152          4.59410924        3.168005566 Secondary Carnivore
## 1153          5.56452041        7.288251436  Tertiary Carnivore
## 1154          8.05360097        6.670778349 Secondary Carnivore
## 1155          3.24649099        1.307030142 Secondary Carnivore
## 1156          1.70292826        0.015041422 Secondary Carnivore
## 1157          3.88752537        0.749689812   Primary Carnivore
## 1158          0.00000000        0.015041422  Tertiary Carnivore
## 1159          5.18178355        6.849625561 Secondary Carnivore
## 1160          2.40865536        1.540263127 Secondary Carnivore
## 1161          2.90690106        3.515099295 Secondary Carnivore
## 1162          2.61739583        0.757060688  Tertiary Carnivore
## 1163          2.52572864        0.735932630 Secondary Carnivore
## 1164          3.36037539        2.891851822  Tertiary Carnivore
## 1165          3.35340672        5.169038067   Primary Carnivore
## 1166          0.00000000        1.886232978           Herbivore
## 1167          1.98787435        2.241290896   Primary Carnivore
## 1168          2.68852753        3.226603994 Secondary Carnivore
## 1169          2.58776404        2.136925014 Secondary Carnivore
## 1170          1.35325451        2.404044412 Secondary Carnivore
## 1171          4.70953020        7.288251436 Secondary Carnivore
## 1172          7.35212054        6.849625561 Secondary Carnivore
## 1173          2.56494936        1.315195554 Secondary Carnivore
## 1174          5.81889528        6.849625561 Secondary Carnivore
## 1175          1.79275897        0.116104790 Secondary Carnivore
## 1176          1.62924054        0.147199990 Secondary Carnivore
## 1177          7.75022723        6.670778349 Secondary Carnivore
## 1178          3.79773386        4.094232049 Secondary Carnivore
## 1179          0.95551145        0.490146528  Tertiary Carnivore
## 1180          1.53255687        2.075946520 Secondary Carnivore
## 1181          5.14813381        1.886232978   Primary Carnivore
## 1182          0.00000000        1.886232978           Herbivore
## 1183          0.33647224        2.894695819   Primary Carnivore
## 1184          3.28578653        0.015041422 Secondary Carnivore
## 1185          2.29253476        1.315195554   Primary Carnivore
## 1186          7.29715875        6.849625561 Secondary Carnivore
## 1187          0.26236426        2.024989105   Primary Carnivore
## 1188          0.68813464        1.251683108 Secondary Carnivore
## 1189          1.02961942        0.470853119  Tertiary Carnivore
## 1190          1.26976054        1.180964506 Secondary Carnivore
## 1191          4.04305127        6.670778349  Tertiary Carnivore
## 1192          3.96840334        2.050338578   Primary Carnivore
## 1193          5.72227706        6.849625561 Secondary Carnivore
## 1194          4.79579055        7.288251436 Secondary Carnivore
## 1195          7.40482675        6.670778349 Secondary Carnivore
## 1196          0.78845736        7.161415474   Primary Carnivore
## 1197          5.57215403        4.259772081   Primary Carnivore
## 1198          3.51452607        1.886232978 Secondary Carnivore
## 1199          1.87640694        0.885298676  Tertiary Carnivore
## 1200          2.63905733        0.002059853 Secondary Carnivore
## 1201          0.00000000        2.894695819   Primary Carnivore
## 1202          3.40452517        1.886232978 Secondary Carnivore
## 1203          0.00000000        0.002059853 Secondary Carnivore
## 1204          2.24918432        0.009889753   Primary Carnivore
## 1205          1.66392610        0.211247175 Secondary Carnivore
## 1206          0.06765865        0.305596011 Secondary Carnivore
## 1207          2.27212589        1.670180746 Secondary Carnivore
## 1208          2.77881927        0.885298676  Tertiary Carnivore
## 1209          6.58340922        4.259772081  Tertiary Carnivore
## 1210          0.00000000        1.670180746   Primary Carnivore
## 1211          1.45161383        1.532760019 Secondary Carnivore
## 1212          1.99333884        1.307030142 Secondary Carnivore
## 1213          0.00000000        0.002059853 Secondary Carnivore
## 1214          2.04122033        0.063185562 Secondary Carnivore
## 1215          2.23537634        0.015041422 Secondary Carnivore
## 1216          2.58021683        2.891851822 Secondary Carnivore
## 1217          4.25134831        1.168798094 Secondary Carnivore
## 1218          0.00000000        2.404044412           Herbivore
## 1219          1.47476301        0.900183757 Secondary Carnivore
## 1220          6.77490937        6.849625561 Secondary Carnivore
## 1221          3.42816383        0.015041422   Primary Carnivore
## 1222          1.61541998        0.009889753  Tertiary Carnivore
## 1223          6.90505163        6.849625561 Secondary Carnivore
## 1224          1.66770682        0.002344505 Secondary Carnivore
## 1225          3.03013370        3.146907198 Secondary Carnivore
## 1226          1.81156210        0.211247175 Secondary Carnivore
## 1227          1.01884732        0.223982763 Secondary Carnivore
## 1228          1.51072194        0.015041422  Tertiary Carnivore
## 1229          5.68357977        4.094232049  Tertiary Carnivore
## 1230          4.79579055        7.288251436 Secondary Carnivore
## 1231          1.19996478        0.015041422  Tertiary Carnivore
## 1232          7.45066080        7.288251436 Secondary Carnivore
## 1233          2.47863704        1.711701702   Primary Carnivore
## 1234          1.31640823        0.214753881 Secondary Carnivore
## 1235          6.08677473        4.094232049 Secondary Carnivore
## 1236          3.51443678        2.610718759 Secondary Carnivore
## 1237          2.92316158        3.473231162 Secondary Carnivore
## 1238          1.77495235        0.002344505 Secondary Carnivore
## 1239          0.00000000        1.877421323 Secondary Carnivore
## 1240          2.32727771        0.009889753           Herbivore
## 1241          1.43983513        0.305596011  Tertiary Carnivore
## 1242          5.21553341        0.735932630   Primary Carnivore
## 1243          4.19166787        2.433189939 Secondary Carnivore
## 1244          1.47796155        1.711701702  Tertiary Carnivore
## 1245          2.28238239        1.315195554 Secondary Carnivore
## 1246          2.55722731        1.315195554 Secondary Carnivore
## 1247          3.16665579        0.470853119 Secondary Carnivore
## 1248          0.00000000        0.002344505  Tertiary Carnivore
## 1249          2.79116511        0.009889753           Herbivore
## 1250          1.75958057        4.262479896 Secondary Carnivore
## 1251          1.29746315        0.413477448 Secondary Carnivore
## 1252          2.85647021        1.886232978 Secondary Carnivore
## 1253          2.85070650        0.063185562 Secondary Carnivore
## 1254          5.18505908        1.432814265 Secondary Carnivore
## 1255          1.20297230        1.831515834  Tertiary Carnivore
## 1256          3.26956894        1.886232978 Secondary Carnivore
## 1257          3.80443779        6.670778349   Primary Carnivore
## 1258          5.01727984        7.288251436  Tertiary Carnivore
## 1259          3.85227300        6.670778349 Secondary Carnivore
## 1260          3.27222700        0.735932630   Primary Carnivore
## 1261          1.08180517        0.116104790 Secondary Carnivore
## 1262          1.89611948        0.885298676 Secondary Carnivore
## 1263          1.66770682        0.490146528 Secondary Carnivore
## 1264          4.27495632        4.232513096  Tertiary Carnivore
## 1265          5.77827133        6.670778349  Tertiary Carnivore
## 1266          0.00000000        1.673740129           Herbivore
## 1267          1.48387469        0.885298676 Secondary Carnivore
## 1268          3.55820113        2.153233085           Herbivore
## 1269          0.78845736        2.145288428 Secondary Carnivore
## 1270          2.00417906        0.211247175 Secondary Carnivore
## 1271          8.42299240        6.849625561 Secondary Carnivore
## 1272          6.01859321        7.288251436  Tertiary Carnivore
## 1273          0.00000000        0.002059853 Secondary Carnivore
## 1274          1.95727391        0.004578480   Primary Carnivore
## 1275          1.62924054        0.223982763 Secondary Carnivore
## 1276          1.04027671        1.454402431 Secondary Carnivore
## 1277          5.44241771        2.153233085 Secondary Carnivore
## 1278          3.06339092        3.943759073 Secondary Carnivore
## 1279          2.53369681        1.981883583   Primary Carnivore
## 1280          4.09434456        7.288251436 Secondary Carnivore
## 1281          3.28776736        2.433189939  Tertiary Carnivore
## 1282          5.30330491        7.288251436 Secondary Carnivore
## 1283          0.00000000        0.009889753 Secondary Carnivore
## 1284          5.28826703        2.153233085  Tertiary Carnivore
## 1285          0.95551145        0.211247175 Secondary Carnivore
## 1286          1.67335124        0.735932630 Secondary Carnivore
## 1287          2.70136121        3.515099295 Secondary Carnivore
## 1288          1.18172720        2.387053327 Secondary Carnivore
## 1289          2.41126011        1.014024833 Secondary Carnivore
## 1290          2.32238772        0.223982763 Secondary Carnivore
## 1291          7.51261754        6.942696930 Secondary Carnivore
## 1292          0.00000000        0.009889753 Secondary Carnivore
## 1293          2.63905733        0.002059853 Secondary Carnivore
## 1294          0.91629073        0.063185562 Secondary Carnivore
## 1295          3.02456266        2.254856321 Secondary Carnivore
## 1296          1.41098697        0.147199990 Secondary Carnivore
## 1297          3.78940329        0.214753881  Tertiary Carnivore
## 1298          0.83290912        0.130455954 Secondary Carnivore
## 1299          7.62525355        6.849625561 Secondary Carnivore
## 1300          3.34990409        2.387053327   Primary Carnivore
## 1301          4.61512052        7.288251436  Tertiary Carnivore
## 1302          3.55010577        1.540263127 Secondary Carnivore
## 1303          1.24990174        2.241290896   Primary Carnivore
## 1304          7.22329568        7.288251436 Secondary Carnivore
## 1305          4.71849887        3.146907198 Secondary Carnivore
## 1306          3.92296295        2.138914945 Secondary Carnivore
## 1307          3.28091122        1.168798094   Primary Carnivore
## 1308          2.38139627        2.136925014 Secondary Carnivore
## 1309          1.34547237        0.885298676 Secondary Carnivore
## 1310          2.23697934        0.490146528   Primary Carnivore
## 1311          2.91463067        2.136925014 Secondary Carnivore
## 1312          4.30217141        0.002059853 Secondary Carnivore
## 1313          1.13140211        0.470853119  Tertiary Carnivore
## 1314          3.38113072        1.632888289 Secondary Carnivore
## 1315          1.53901545        2.853935439 Secondary Carnivore
## 1316          2.98061864        0.885298676  Tertiary Carnivore
## 1317          1.95868534        0.211247175 Secondary Carnivore
## 1318          1.68639895        7.161415474 Secondary Carnivore
## 1319          3.09557761        0.009889753   Primary Carnivore
## 1320          2.63991411        2.254856321   Primary Carnivore
## 1321          0.00000000        0.305596011 Secondary Carnivore
## 1322          3.36037539        1.168798094 Secondary Carnivore
## 1323          1.59533899        0.413477448 Secondary Carnivore
## 1324          3.56133013        1.886232978 Secondary Carnivore
## 1325          4.65396035        1.168798094 Secondary Carnivore
## 1326          0.00000000        1.459857720   Primary Carnivore
## 1327          7.34968088        6.849625561 Secondary Carnivore
## 1328          4.68213123        6.670778349  Tertiary Carnivore
## 1329          1.31908561        0.004578480   Primary Carnivore
## 1330          8.85237889        7.288251436 Secondary Carnivore
## 1331          0.93216408        4.094232049           Herbivore
## 1332          4.86753445        2.153233085 Secondary Carnivore
## 1333          0.00000000        0.281204828 Secondary Carnivore
## 1334          2.12823171        0.211247175 Secondary Carnivore
## 1335          5.67194775        1.886232978 Secondary Carnivore
## 1336          0.82417544        1.831515834   Primary Carnivore
## 1337          0.63657683        4.259772081           Herbivore
## 1338          6.61069604        6.942696930 Secondary Carnivore
## 1339          3.42426265        3.651616415  Tertiary Carnivore
## 1340          3.73440238        3.943759073 Secondary Carnivore
## 1341          3.66612247        0.749689812   Primary Carnivore
## 1342          2.08193842        0.004578480  Tertiary Carnivore
## 1343          0.00000000        2.145288428 Secondary Carnivore
## 1344          3.77045944        2.050338578   Primary Carnivore
## 1345          8.52734152        7.288251436 Secondary Carnivore
## 1346          3.71571611        2.433189939 Secondary Carnivore
## 1347          3.06339092        0.735932630 Secondary Carnivore
## 1348          2.61520365        3.226603994  Tertiary Carnivore
## 1349          7.20630310        6.849625561 Secondary Carnivore
## 1350          2.83321334        3.146907198 Secondary Carnivore
## 1351          2.80940270        1.420705940 Secondary Carnivore
## 1352          6.99062476        7.288251436 Secondary Carnivore
## 1353          4.47847253        1.168798094 Secondary Carnivore
## 1354          1.68639895        0.116104790 Secondary Carnivore
## 1355          0.00000000        0.009889753           Herbivore
## 1356          2.50470928        1.432814265 Secondary Carnivore
## 1357          6.66134310        6.670778349 Secondary Carnivore
## 1358          0.87546874        0.063185562 Secondary Carnivore
## 1359          3.20453346        2.610718759  Tertiary Carnivore
## 1360          1.08518927        1.180964506  Tertiary Carnivore
## 1361          3.00071982        0.214753881  Tertiary Carnivore
## 1362          2.00552586        1.307030142 Secondary Carnivore
## 1363          1.46325540        4.094232049           Herbivore
## 1364          4.53689135        1.673740129 Secondary Carnivore
## 1365          5.25227343        7.288251436   Primary Carnivore
## 1366          3.03013370        1.670180746   Primary Carnivore
## 1367          5.25017699        3.473231162   Primary Carnivore
## 1368          3.88567903        2.387053327 Secondary Carnivore
## 1369          3.89731538        0.735932630 Secondary Carnivore
## 1370          5.54126355        3.146907198 Secondary Carnivore
## 1371          4.77912349        4.094232049  Tertiary Carnivore
## 1372          1.70402055        0.211247175 Secondary Carnivore
## 1373          2.81540872        0.757060688 Secondary Carnivore
## 1374          7.84998662        6.670778349 Secondary Carnivore
## 1375          0.00000000        0.002344505  Tertiary Carnivore
## 1376          3.94158181        3.168005566 Secondary Carnivore
## 1377          1.73342389        0.015041422 Secondary Carnivore
## 1378          3.49347266        1.168798094 Secondary Carnivore
## 1379          0.26236426        2.107009466   Primary Carnivore
## 1380          0.00000000        2.107009466   Primary Carnivore
## 1381          2.84490938        0.020024930  Tertiary Carnivore
## 1382          0.74193734        2.241290896   Primary Carnivore
## 1383          1.67335124        0.490146528 Secondary Carnivore
## 1384          4.02177387        2.153233085  Tertiary Carnivore
## 1385          4.50976000        6.670778349 Secondary Carnivore
## 1386          4.07414185        3.159561805   Primary Carnivore
## 1387          2.76744803        6.670778349 Secondary Carnivore
## 1388          2.96460274        3.038160131 Secondary Carnivore
## 1389          5.17868888        2.153233085 Secondary Carnivore
## 1390          1.55180880        0.009889753  Tertiary Carnivore
## 1391          1.38629436        0.063185562 Secondary Carnivore
## 1392          4.54648119        3.146907198 Secondary Carnivore
## 1393          2.37024374        0.490146528 Secondary Carnivore
## 1394          0.30748470        4.259772081           Herbivore
## 1395          2.01089500        0.214753881 Secondary Carnivore
## 1396          3.39450839        1.479154529   Primary Carnivore
## 1397          2.68784749        0.757060688   Primary Carnivore
## 1398          2.35801980        3.515099295 Secondary Carnivore
## 1399          3.76584050        0.009889753  Tertiary Carnivore
## 1400          0.81536481        1.251683108 Secondary Carnivore
## 1401          0.00000000        1.886232978           Herbivore
## 1402          1.28923265        0.004578480 Secondary Carnivore
## 1403          2.00512201        2.853935439   Primary Carnivore
## 1404          4.74449725        3.146907198 Secondary Carnivore
## 1405          4.03777421        6.670778349   Primary Carnivore
## 1406          4.71635371        1.168798094 Secondary Carnivore
## 1407          0.36394843        0.413477448  Tertiary Carnivore
## 1408          0.00000000        0.009889753           Herbivore
## 1409          4.94875989        7.288251436 Secondary Carnivore
## 1410          3.99636415        6.670778349 Secondary Carnivore
## 1411          1.15688120        0.004578480   Primary Carnivore
## 1412          3.51452607        1.168798094 Secondary Carnivore
## 1413          8.20305762        7.288251436 Secondary Carnivore
## 1414          0.81668960        1.705681497 Secondary Carnivore
## 1415          2.55567572        0.015041422   Primary Carnivore
## 1416          1.34547237        1.962719022 Secondary Carnivore
## 1417          2.37954613        0.004578480 Secondary Carnivore
## 1418          4.85203026        6.849625561  Tertiary Carnivore
## 1419          0.95165788        1.877421323 Secondary Carnivore
## 1420          4.74701691        0.002059853 Secondary Carnivore
## 1421          0.98954119        0.116104790 Secondary Carnivore
## 1422          7.58054668        6.670778349 Secondary Carnivore
## 1423          3.03013370        2.153233085 Secondary Carnivore
## 1424          6.27476202        7.288251436   Primary Carnivore
## 1425          4.55807858        6.670778349 Secondary Carnivore
## 1426          1.06594239        2.145288428 Secondary Carnivore
## 1427          2.39059597        1.886232978   Primary Carnivore
## 1428          5.50443683        6.942696930 Secondary Carnivore
## 1429          2.01623547        1.886232978   Primary Carnivore
## 1430          1.40609699        2.136925014 Secondary Carnivore
## 1431          0.00000000        2.404044412           Herbivore
## 1432          4.99043259        6.670778349 Secondary Carnivore
## 1433          3.44998755        1.886232978 Secondary Carnivore
## 1434          1.74221902        1.831515834 Secondary Carnivore
## 1435          0.83290912        1.315195554   Primary Carnivore
## 1436          2.67414865        1.168798094 Secondary Carnivore
## 1437          3.39785848        2.153233085 Secondary Carnivore
## 1438          3.76537743        1.886232978   Primary Carnivore
## 1439          0.53062825        2.472143654   Primary Carnivore
## 1440          3.68145194        1.014024833 Secondary Carnivore
## 1441          7.71020519        7.288251436 Secondary Carnivore
## 1442          2.18941639        1.532760019   Primary Carnivore
## 1443          1.82454929        3.226603994  Tertiary Carnivore
## 1444          1.79342475        4.047182371  Tertiary Carnivore
## 1445          6.29876541        6.849625561 Secondary Carnivore
## 1446          2.60172626        0.470853119  Tertiary Carnivore
## 1447          0.40879290        2.891851822 Secondary Carnivore
## 1448          0.00000000        0.009889753  Tertiary Carnivore
## 1449          2.70951579        1.540263127 Secondary Carnivore
## 1450          1.67147330        0.015041422   Primary Carnivore
## 1451          5.30330491        4.259772081 Secondary Carnivore
## 1452          3.64021428        1.070822001   Primary Carnivore
## 1453          1.89069942        2.075946520 Secondary Carnivore
## 1454          4.24849524        6.849625561 Secondary Carnivore
## 1455          3.97168717        4.232513096 Secondary Carnivore
## 1456          0.99694863        1.540263127   Primary Carnivore
## 1457          4.44851638        6.670778349 Secondary Carnivore
## 1458          0.00000000        0.015041422   Primary Carnivore
## 1459          2.62466859        0.004578480 Secondary Carnivore
## 1460          6.68511160        6.849625561 Secondary Carnivore
## 1461          5.30230939        6.670778349  Tertiary Carnivore
## 1462          4.50733683        2.387053327 Secondary Carnivore
## 1463          3.12236492        2.891851822 Secondary Carnivore
## 1464          6.72623340        6.942696930  Tertiary Carnivore
## 1465          1.04027671        0.116104790 Secondary Carnivore
## 1466          2.71469474        1.886232978 Secondary Carnivore
## 1467          1.30291275        0.490146528 Secondary Carnivore
## 1468          3.81771233        0.735932630 Secondary Carnivore
## 1469          2.84490938        4.259772081 Secondary Carnivore
## 1470          1.67147330        0.004578480   Primary Carnivore
## 1471          1.32441896        2.122440181 Secondary Carnivore
## 1472          1.66770682        0.490146528  Tertiary Carnivore
## 1473          1.69561561        0.009889753 Secondary Carnivore
## 1474          7.38634693        7.288251436 Secondary Carnivore
## 1475          1.45861502        0.223982763 Secondary Carnivore
## 1476          3.55820113        2.404044412 Secondary Carnivore
## 1477          3.95871573        3.473231162 Secondary Carnivore
## 1478          1.22377543        0.878396534   Primary Carnivore
## 1479          3.91800508        3.146907198  Tertiary Carnivore
## 1480          2.80336038        1.168798094 Secondary Carnivore
## 1481          1.79175947        0.878396534   Primary Carnivore
## 1482          1.75785792        0.223982763 Secondary Carnivore
## 1483          3.45568557        0.749689812   Primary Carnivore
## 1484          3.68250921        3.873611973 Secondary Carnivore
## 1485          1.42310833        1.454402431 Secondary Carnivore
## 1486          5.73979291        2.153233085   Primary Carnivore
## 1487          3.08190997        0.002059853 Secondary Carnivore
## 1488          3.23474917        1.886232978 Secondary Carnivore
## 1489          5.08140436        6.670778349   Primary Carnivore
## 1490          1.04027671        0.116104790 Secondary Carnivore
## 1491          3.91202301        0.004578480  Tertiary Carnivore
## 1492          3.92197334        6.670778349   Primary Carnivore
## 1493          2.33505228        1.886232978 Secondary Carnivore
## 1494          7.83391713        6.670778349 Secondary Carnivore
## 1495          4.52601875        2.138914945  Tertiary Carnivore
## 1496          4.56076888        1.432814265 Secondary Carnivore
## 1497          3.57632647        0.470853119 Secondary Carnivore
## 1498          2.94968834        1.307030142 Secondary Carnivore
## 1499          7.17142638        6.670778349 Secondary Carnivore
## 1500          2.37954613        0.490146528  Tertiary Carnivore
## 1501          1.80500470        1.886232978 Secondary Carnivore
## 1502          2.12584791        3.515099295 Secondary Carnivore
## 1503          4.80541352        4.094232049 Secondary Carnivore
## 1504          1.68639895        0.130455954 Secondary Carnivore
## 1505          6.91214563        6.670778349 Secondary Carnivore
## 1506          5.57473625        3.473231162   Primary Carnivore
## 1507          7.21604848        6.849625561 Secondary Carnivore
## 1508          2.43562887        2.853935439 Secondary Carnivore
## 1509          2.07693841        0.735932630 Secondary Carnivore
## 1510          1.28093385        0.130455954  Tertiary Carnivore
## 1511          1.41342303        0.413477448 Secondary Carnivore
## 1512          4.26310232        2.433189939  Tertiary Carnivore
## 1513          7.68959991        6.849625561 Secondary Carnivore
## 1514          4.26267988        7.288251436   Primary Carnivore
## 1515          3.49650756        1.168798094 Secondary Carnivore
## 1516          4.00551335        3.146907198 Secondary Carnivore
## 1517          4.20916024        1.886232978   Primary Carnivore
## 1518          7.83241093        6.942696930 Secondary Carnivore
## 1519          4.53646299        3.146907198 Secondary Carnivore
## 1520          8.53210151        6.849625561 Secondary Carnivore
## 1521          1.33500107        0.015041422 Secondary Carnivore
## 1522          2.82731362        0.002344505 Secondary Carnivore
## 1523          4.70048037        6.670778349 Secondary Carnivore
## 1524          4.35388433        1.168798094 Secondary Carnivore
## 1525          4.61541750        3.473231162  Tertiary Carnivore
## 1526          1.42069579        0.214753881 Secondary Carnivore
## 1527          1.06471074        0.305596011  Tertiary Carnivore
## 1528          5.16478597        7.288251436 Secondary Carnivore
## 1529          0.00000000        0.004578480 Secondary Carnivore
## 1530          1.09192330        1.180964506 Secondary Carnivore
## 1531          0.47000363        0.147199990 Secondary Carnivore
## 1532          0.00000000        0.004578480   Primary Carnivore
## 1533          5.39816270        7.288251436  Tertiary Carnivore
## 1534          1.19392247        1.670180746   Primary Carnivore
## 1535          5.50938834        4.094232049  Tertiary Carnivore
## 1536          1.77495235        0.490146528  Tertiary Carnivore
## 1537          3.23474917        1.670180746   Primary Carnivore
## 1538          3.06339092        0.735932630 Secondary Carnivore
## 1539          3.71843826        2.387053327 Secondary Carnivore
## 1540          1.67147330        0.856029167  Tertiary Carnivore
## 1541          4.98360662        6.849625561   Primary Carnivore
## 1542          0.00000000        0.147199990 Secondary Carnivore
## 1543          1.79175947        0.223982763 Secondary Carnivore
## 1544          1.49290410        0.823328714 Secondary Carnivore
## 1545          2.94443898        0.757060688 Secondary Carnivore
## 1546          2.60268969        0.009889753   Primary Carnivore
## 1547          1.69708242        2.122440181 Secondary Carnivore
## 1548          3.43398720        0.002344505 Secondary Carnivore
## 1549          4.80745776        1.168798094   Primary Carnivore
## 1550          1.60140574        0.281204828 Secondary Carnivore
## 1551          4.56954301        6.849625561 Secondary Carnivore
## 1552          1.85629799        0.002059853 Secondary Carnivore
## 1553          2.52652832        0.015041422   Primary Carnivore
## 1554          2.16332303        0.223982763 Secondary Carnivore
## 1555          1.66770682        2.894695819 Secondary Carnivore
## 1556          4.47960696        6.849625561 Secondary Carnivore
## 1557          0.00000000        0.015041422   Primary Carnivore
## 1558          4.85203026        6.942696930 Secondary Carnivore
## 1559          5.02388052        4.094232049   Primary Carnivore
## 1560          1.85848310        0.900183757   Primary Carnivore
## 1561          6.44730586        7.288251436 Secondary Carnivore
## 1562          0.00000000        1.315195554   Primary Carnivore
## 1563          4.79579055        7.288251436   Primary Carnivore
## 1564          2.86789890        2.387053327 Secondary Carnivore
## 1565          3.15700042        2.387053327 Secondary Carnivore
## 1566          1.09192330        0.211247175 Secondary Carnivore
## 1567          1.82454929        0.063185562 Secondary Carnivore
## 1568          1.02961942        2.894695819   Primary Carnivore
## 1569          4.59208495        2.387053327 Secondary Carnivore
## 1570          3.91657264        4.232513096   Primary Carnivore
## 1571          1.76644166        4.047182371 Secondary Carnivore
## 1572          2.74071098        3.873611973 Secondary Carnivore
## 1573          0.99325177        0.878396534   Primary Carnivore
## 1574          3.26956894        2.894695819   Primary Carnivore
## 1575          3.01944880        2.853935439 Secondary Carnivore
## 1576          7.72832775        6.670778349 Secondary Carnivore
## 1577          1.12167756        0.015041422   Primary Carnivore
## 1578          1.08180517        0.211247175 Secondary Carnivore
## 1579          0.83290912        0.470853119  Tertiary Carnivore
## 1580          4.12713439        0.004578480  Tertiary Carnivore
## 1581          0.00000000        1.126655451   Primary Carnivore
## 1582          3.58629287        6.670778349   Primary Carnivore
## 1583          0.01064316        0.305596011  Tertiary Carnivore
## 1584          1.38629436        0.020024930  Tertiary Carnivore
## 1585          1.24126859        0.561550440 Secondary Carnivore
## 1586          5.48188814        6.670778349 Secondary Carnivore
## 1587          7.34018684        6.942696930  Tertiary Carnivore
## 1588          1.32972401        0.015041422  Tertiary Carnivore
## 1589          6.06092531        2.610718759 Secondary Carnivore
## 1590          7.88615659        6.670778349 Secondary Carnivore
## 1591          4.25844557        0.002059853 Secondary Carnivore
## 1592          8.12346889        7.288251436 Secondary Carnivore
## 1593          1.14740245        0.015041422 Secondary Carnivore
## 1594          6.83936937        6.849625561 Secondary Carnivore
## 1595          6.41345896        4.094232049 Secondary Carnivore
## 1596          3.92395158        2.277308093   Primary Carnivore
## 1597          3.54673969        6.670778349 Secondary Carnivore
## 1598          3.56953270        2.387053327 Secondary Carnivore
## 1599          0.00000000        0.130455954 Secondary Carnivore
## 1600          4.41642806        6.670778349 Secondary Carnivore
## 1601          3.21112587        3.651616415 Secondary Carnivore
## 1602          3.01553490        0.015041422  Tertiary Carnivore
## 1603          4.29959566        2.153233085   Primary Carnivore
## 1604          4.83628191        6.849625561 Secondary Carnivore
## 1605          4.24769492        3.873611973 Secondary Carnivore
## 1606          3.91921707        1.506685742 Secondary Carnivore
## 1607          0.26236426        2.024989105   Primary Carnivore
## 1608          1.40609699        0.305596011  Tertiary Carnivore
## 1609          0.00000000        1.459857720   Primary Carnivore
## 1610          5.14166356        7.288251436  Tertiary Carnivore
## 1611          3.28057281        2.433189939 Secondary Carnivore
## 1612          4.45781801        7.288251436   Primary Carnivore
## 1613          4.27527626        6.670778349   Primary Carnivore
## 1614          7.52736356        7.288251436 Secondary Carnivore
## 1615          4.23555473        4.094232049 Secondary Carnivore
## 1616          0.02078254        1.180964506 Secondary Carnivore
## 1617          0.85441533        2.153233085           Herbivore
## 1618          0.00000000        0.130455954 Secondary Carnivore
## 1619          1.99877364        0.015041422  Tertiary Carnivore
## 1620          0.00000000        3.146907198   Primary Carnivore
## 1621          7.95384545        6.849625561 Secondary Carnivore
## 1622          2.64617480        0.305596011  Tertiary Carnivore
## 1623          3.12236492        3.038160131 Secondary Carnivore
## 1624          0.00000000        0.340191127   Primary Carnivore
## 1625          4.41558229        3.943759073 Secondary Carnivore
## 1626          3.70179568        0.735932630   Primary Carnivore
## 1627          4.56017282        3.146907198 Secondary Carnivore
## 1628          2.13416644        1.742111989 Secondary Carnivore
## 1629          6.77445243        6.670778349 Secondary Carnivore
## 1630          2.54160199        2.050338578   Primary Carnivore
## 1631          2.08815348        0.009889753           Herbivore
## 1632          2.89668512        2.136925014 Secondary Carnivore
## 1633          2.10413415        1.886232978 Secondary Carnivore
## 1634          4.71573613        3.304296954 Secondary Carnivore
## 1635          7.34665516        7.288251436 Secondary Carnivore
## 1636          5.22810947        1.168798094   Primary Carnivore
## 1637          2.21920348        0.223982763 Secondary Carnivore
## 1638          2.79116511        1.886232978   Primary Carnivore
## 1639          2.56240767        2.075946520   Primary Carnivore
## 1640          2.84490938        3.473231162  Tertiary Carnivore
## 1641          1.52388002        1.532760019 Secondary Carnivore
## 1642          3.63663834        3.651616415   Primary Carnivore
## 1643          2.36368019        0.015041422   Primary Carnivore
## 1644          3.92789635        6.849625561   Primary Carnivore
## 1645          2.91695959        2.433189939 Secondary Carnivore
## 1646          6.52590904        6.670778349 Secondary Carnivore
## 1647          2.45958884        0.015041422   Primary Carnivore
## 1648          2.59525471        3.473231162 Secondary Carnivore
## 1649          7.61386804        6.670778349 Secondary Carnivore
## 1650          2.27212589        1.532760019   Primary Carnivore
## 1651          3.68637632        2.153233085 Secondary Carnivore
## 1652          0.00000000        0.211247175 Secondary Carnivore
## 1653          3.33932198        2.404044412 Secondary Carnivore
## 1654          1.90389697        0.211247175 Secondary Carnivore
## 1655          3.25424297        3.515099295 Secondary Carnivore
## 1656          2.98568194        4.121930401   Primary Carnivore
## 1657          2.82137889        2.153233085 Secondary Carnivore
## 1658          3.15700042        1.168798094 Secondary Carnivore
## 1659          5.61312811        6.849625561   Primary Carnivore
## 1660          3.23080440        2.241290896   Primary Carnivore
## 1661          2.05412373        0.856029167 Secondary Carnivore
## 1662          2.47653840        0.885298676  Tertiary Carnivore
## 1663          3.24259235        0.749689812   Primary Carnivore
## 1664          3.23867845        3.146907198 Secondary Carnivore
## 1665          2.27829240        2.387053327  Tertiary Carnivore
## 1666          5.44570235        1.168798094   Primary Carnivore
## 1667          5.77455155        6.942696930  Tertiary Carnivore
## 1668          4.57367952        4.094232049 Secondary Carnivore
## 1669          6.28897318        6.670778349 Secondary Carnivore
## 1670          4.86375810        1.673740129   Primary Carnivore
## 1671          2.81367068        2.891851822  Tertiary Carnivore
## 1672          0.00000000        0.002344505 Secondary Carnivore
## 1673          1.20297230        0.015041422   Primary Carnivore
## 1674          2.83749827        2.853935439 Secondary Carnivore
## 1675          7.05142263        6.670778349 Secondary Carnivore
## 1676          3.25037449        0.020024930   Primary Carnivore
## 1677          1.00063188        1.711701702 Secondary Carnivore
## 1678          7.78130551        6.670778349 Secondary Carnivore
## 1679          7.82043952        7.288251436 Secondary Carnivore
## 1680          8.06495089        4.094232049 Secondary Carnivore
## 1681          0.79750720        0.413477448 Secondary Carnivore
## 1682          0.00000000        1.673740129           Herbivore
## 1683          4.51085951        7.288251436 Secondary Carnivore
## 1684          2.25023861        0.214753881 Secondary Carnivore
## 1685          2.82137889        0.009889753   Primary Carnivore
## 1686          8.50329709        7.288251436 Secondary Carnivore
## 1687          4.58598737        4.094232049 Secondary Carnivore
## 1688          3.79098468        1.168798094 Secondary Carnivore
## 1689          0.00000000        0.015041422   Primary Carnivore
## 1690          2.54944517        0.015041422  Tertiary Carnivore
## 1691          5.52146092        6.942696930 Secondary Carnivore
## 1692          2.94443898        2.894695819   Primary Carnivore
## 1693          1.62136648        1.180964506  Tertiary Carnivore
## 1694          3.72810017        1.673740129 Secondary Carnivore
## 1695          3.66612247        6.849625561 Secondary Carnivore
## 1696          0.83290912        0.147199990  Tertiary Carnivore
## 1697          1.66203036        0.009889753  Tertiary Carnivore
## 1698          4.30000280        6.849625561 Secondary Carnivore
## 1699          1.69009582        0.015041422 Secondary Carnivore
## 1700          3.88362353        6.849625561   Primary Carnivore
## 1701          2.54944517        0.044241443   Primary Carnivore
## 1702          0.63180355        4.047182371   Primary Carnivore
## 1703          3.87120101        1.673740129 Secondary Carnivore
## 1704          3.59731226        2.153233085 Secondary Carnivore
## 1705          4.66343909        6.849625561 Secondary Carnivore
## 1706          5.57215403        4.259772081   Primary Carnivore
## 1707          1.27256560        0.823328714 Secondary Carnivore
## 1708          0.82855182        1.877421323 Secondary Carnivore
## 1709          6.11146734        7.288251436   Primary Carnivore
## 1710          0.00000000        0.116104790 Secondary Carnivore
## 1711          4.98360662        4.094232049   Primary Carnivore
## 1712          4.46579317        3.473231162   Primary Carnivore
## 1713          5.35185813        7.288251436  Tertiary Carnivore
## 1714          1.99741771        0.490146528  Tertiary Carnivore
## 1715          3.81683282        2.153233085 Secondary Carnivore
## 1716          0.30748470        0.211247175  Tertiary Carnivore
## 1717          6.27795841        6.670778349 Secondary Carnivore
## 1718          1.22671229        0.305596011  Tertiary Carnivore
## 1719          0.69314718        0.470853119  Tertiary Carnivore
## 1720          2.91158951        1.962719022 Secondary Carnivore
## 1721          3.93573953        1.168798094 Secondary Carnivore
## 1722          2.77819796        0.015041422   Primary Carnivore
## 1723          4.29728541        4.094232049 Secondary Carnivore
## 1724          0.00000000        0.009889753  Tertiary Carnivore
## 1725          7.22875123        6.670778349 Secondary Carnivore
## 1726          5.55902642        1.168798094   Primary Carnivore
## 1727          7.02028007        6.670778349 Secondary Carnivore
## 1728          2.37861978        2.387053327 Secondary Carnivore
## 1729          4.48863637        6.670778349 Secondary Carnivore
## 1730          0.78845736        0.130455954 Secondary Carnivore
## 1731          0.40546511        2.894695819   Primary Carnivore
## 1732          7.34665516        7.288251436 Secondary Carnivore
## 1733          0.00000000        1.459857720   Primary Carnivore
## 1734          0.00000000        0.002344505 Secondary Carnivore
## 1735          4.92308559        7.288251436 Secondary Carnivore
## 1736          3.36729583        1.168798094 Secondary Carnivore
## 1737          1.78170913        0.856029167   Primary Carnivore
## 1738          6.08904488        7.288251436 Secondary Carnivore
## 1739          2.16676537        0.015041422  Tertiary Carnivore
## 1740          3.75560309        6.942696930 Secondary Carnivore
## 1741          0.83290912        4.262479896 Secondary Carnivore
## 1742          1.05779029        2.122440181 Secondary Carnivore
## 1743          4.51085951        7.288251436 Secondary Carnivore
## 1744          1.93152141        0.490146528 Secondary Carnivore
## 1745          2.03339760        1.742111989 Secondary Carnivore
## 1746          3.68135119        2.387053327 Secondary Carnivore
## 1747          2.56510319        2.254856321   Primary Carnivore
## 1748          5.64897424        4.259772081 Secondary Carnivore
## 1749          3.51868408        1.886232978 Secondary Carnivore
## 1750          2.54944517        0.281204828 Secondary Carnivore
## 1751          5.89715387        6.942696930  Tertiary Carnivore
## 1752          2.61739583        1.742111989 Secondary Carnivore
## 1753          2.24191003        6.670778349 Secondary Carnivore
## 1754          7.47363711        7.288251436 Secondary Carnivore
## 1755          1.96571278        0.856029167 Secondary Carnivore
## 1756          0.40546511        0.063185562 Secondary Carnivore
## 1757          6.19031541        6.942696930  Tertiary Carnivore
## 1758          2.28033948        1.532760019   Primary Carnivore
## 1759          2.13947776        4.047182371 Secondary Carnivore
## 1760          3.49650756        3.146907198 Secondary Carnivore
## 1761          0.53062825        0.130455954  Tertiary Carnivore
## 1762          3.95316495        6.670778349 Secondary Carnivore
## 1763          3.73050113        6.670778349 Secondary Carnivore
## 1764          3.05870707        3.038160131 Secondary Carnivore
## 1765          8.44080878        6.849625561 Secondary Carnivore
## 1766          2.32630162        2.845177164 Secondary Carnivore
## 1767          1.48160454        0.130455954 Secondary Carnivore
## 1768          3.57234564        3.168005566 Secondary Carnivore
## 1769          6.59441346        7.288251436  Tertiary Carnivore
## 1770          4.60616969        4.259772081  Tertiary Carnivore
## 1771          1.54756251        0.015041422 Secondary Carnivore
## 1772          4.22537282        1.168798094 Secondary Carnivore
## 1773          0.00000000        0.470853119  Tertiary Carnivore
## 1774          2.98061864        2.387053327 Secondary Carnivore
## 1775          3.76352300        1.168798094 Secondary Carnivore
## 1776          3.19179236        1.540263127 Secondary Carnivore
## 1777          4.01096295        6.670778349 Secondary Carnivore
## 1778          5.11198779        4.094232049  Tertiary Carnivore
## 1779          1.16315081        1.126655451   Primary Carnivore
## 1780          1.19392247        0.211247175 Secondary Carnivore
## 1781          7.39079852        7.288251436 Secondary Carnivore
## 1782          4.66861436        2.153233085 Secondary Carnivore
## 1783          1.54756251        0.009889753  Tertiary Carnivore
## 1784          6.06610809        7.288251436  Tertiary Carnivore
## 1785          4.04480412        6.942696930  Tertiary Carnivore
## 1786          4.98561830        3.304296954   Primary Carnivore
## 1787          6.77502357        6.849625561 Secondary Carnivore
## 1788          4.62497281        3.168005566 Secondary Carnivore
## 1789          2.58021683        1.532760019   Primary Carnivore
## 1790          4.98360662        4.094232049   Primary Carnivore
## 1791          2.63905733        2.153233085 Secondary Carnivore
## 1792          5.22035583        3.146907198 Secondary Carnivore
## 1793          7.13297667        6.670778349 Secondary Carnivore
## 1794          2.58776404        0.757060688 Secondary Carnivore
## 1795          2.11709853        3.515099295 Secondary Carnivore
## 1796          2.36837283        0.735932630 Secondary Carnivore
## 1797          4.18813844        6.849625561  Tertiary Carnivore
## 1798          0.00000000        0.004578480 Secondary Carnivore
## 1799          3.41444261        1.742111989 Secondary Carnivore
## 1800          5.13603370        1.673740129 Secondary Carnivore
## 1801          1.80664808        0.116104790 Secondary Carnivore
## 1802          3.39114705        1.670180746 Secondary Carnivore
## 1803          1.30019166        2.845177164 Secondary Carnivore
## 1804          3.13113691        4.259772081 Secondary Carnivore
## 1805          2.64326276        0.490146528 Secondary Carnivore
## 1806          0.00000000        0.015041422 Secondary Carnivore
## 1807          4.08260931        6.670778349 Secondary Carnivore
## 1808          5.02388052        6.942696930 Secondary Carnivore
## 1809          1.04027671        0.885298676 Secondary Carnivore
## 1810          3.94931879        7.161415474 Secondary Carnivore
## 1811          0.00000000        0.002059853 Secondary Carnivore
## 1812          2.14943391        0.735932630 Secondary Carnivore
## 1813          7.29369772        7.288251436 Secondary Carnivore
## 1814          1.53686722        0.015041422  Tertiary Carnivore
## 1815          0.00000000        0.147199990 Secondary Carnivore
## 1816          2.11142459        0.900183757 Secondary Carnivore
## 1817          1.82454929        0.490146528  Tertiary Carnivore
## 1818          0.83290912        1.831515834 Secondary Carnivore
## 1819          4.75780543        4.094232049 Secondary Carnivore
## 1820          2.74084002        1.886232978 Secondary Carnivore
## 1821          6.03954017        1.886232978 Secondary Carnivore
## 1822          0.17395331        1.532760019  Tertiary Carnivore
## 1823          3.28091122        3.146907198 Secondary Carnivore
## 1824          5.35185813        7.288251436  Tertiary Carnivore
## 1825          0.00000000        2.404044412           Herbivore
## 1826          1.19392247        0.147199990 Secondary Carnivore
## 1827          4.44968528        1.168798094  Tertiary Carnivore
## 1828          4.82807371        1.673740129   Primary Carnivore
## 1829          0.00000000        1.877421323 Secondary Carnivore
## 1830          7.68303529        6.849625561 Secondary Carnivore
## 1831          1.85207032        0.211247175 Secondary Carnivore
## 1832          0.19885086        0.305596011 Secondary Carnivore
## 1833          1.65822808        0.885298676  Tertiary Carnivore
## 1834          1.84292776        1.962719022 Secondary Carnivore
## 1835          2.58021683        2.136925014 Secondary Carnivore
## 1836          5.77299754        1.886232978   Primary Carnivore
## 1837          4.45771372        1.886232978   Primary Carnivore
## 1838          2.77102500        1.962719022  Tertiary Carnivore
## 1839          3.94352167        3.146907198  Tertiary Carnivore
## 1840          2.95491028        2.472143654   Primary Carnivore
## 1841          7.98214318        6.849625561 Secondary Carnivore
## 1842          4.79892612        2.387053327   Primary Carnivore
## 1843          0.92821930        6.942696930           Herbivore
## 1844          7.83494639        6.670778349 Secondary Carnivore
## 1845          7.03341830        6.670778349 Secondary Carnivore
## 1846          1.32175584        2.254856321 Secondary Carnivore
## 1847          6.78649119        6.670778349  Tertiary Carnivore
## 1848          0.00000000        1.670180746   Primary Carnivore
## 1849          0.00000000        2.404044412           Herbivore
## 1850          5.90511659        1.886232978   Primary Carnivore
## 1851          4.61485315        1.432814265 Secondary Carnivore
## 1852          4.22753423        1.506685742   Primary Carnivore
## 1853          7.39184671        7.288251436 Secondary Carnivore
## 1854          1.28923265        0.856029167 Secondary Carnivore
## 1855          1.51292701        0.015041422 Secondary Carnivore
## 1856          0.97455964        0.305596011  Tertiary Carnivore
## 1857          7.97968130        7.288251436 Secondary Carnivore
## 1858          1.18784342        0.561550440 Secondary Carnivore
## 1859          4.06355884        2.138914945 Secondary Carnivore
## 1860          3.19043520        2.610718759 Secondary Carnivore
## 1861          1.76985463        0.015041422  Tertiary Carnivore
## 1862          5.38587026        0.004578480  Tertiary Carnivore
## 1863          1.32441896        4.047182371 Secondary Carnivore
## 1864          0.83290912        5.169038067   Primary Carnivore
## 1865          2.56617937        1.962719022 Secondary Carnivore
## 1866          2.17815501        2.845177164 Secondary Carnivore
## 1867          4.96284463        6.670778349  Tertiary Carnivore
## 1868          2.16217294        0.009889753   Primary Carnivore
## 1869          0.90421815        0.305596011  Tertiary Carnivore
## 1870          0.00000000        1.886232978           Herbivore
## 1871          1.34547237        0.856029167 Secondary Carnivore
## 1872          0.00000000        0.004578480  Tertiary Carnivore
## 1873          3.57660621        1.432814265  Tertiary Carnivore
## 1874          0.43048287        0.856029167  Tertiary Carnivore
## 1875          7.98132323        6.670778349 Secondary Carnivore
## 1876          3.66867675        0.749689812   Primary Carnivore
## 1877          1.19392247        1.532760019  Tertiary Carnivore
## 1878          4.18801704        3.651616415   Primary Carnivore
## 1879          1.44926916        1.251683108 Secondary Carnivore
## 1880          4.50534985        4.094232049  Tertiary Carnivore
## 1881          2.44633906        0.470853119 Secondary Carnivore
## 1882          4.34510328        6.670778349 Secondary Carnivore
## 1883          4.84418709        3.146907198 Secondary Carnivore
## 1884          1.49962305        0.561550440 Secondary Carnivore
## 1885          6.67997600        6.670778349 Secondary Carnivore
## 1886          2.11384297        0.009889753 Secondary Carnivore
## 1887          3.50453585        3.873611973  Tertiary Carnivore
## 1888          8.49631679        6.849625561 Secondary Carnivore
## 1889          5.86646806        2.153233085  Tertiary Carnivore
## 1890          0.37156356        0.130455954 Secondary Carnivore
## 1891          0.00000000        1.981883583   Primary Carnivore
## 1892          4.31348009        4.259772081 Secondary Carnivore
## 1893          2.82137889        1.168798094 Secondary Carnivore
## 1894          2.65324196        0.002344505 Secondary Carnivore
## 1895          3.85014760        6.849625561 Secondary Carnivore
## 1896          3.86157146        0.015041422 Secondary Carnivore
## 1897          3.26575941        2.387053327 Secondary Carnivore
## 1898          4.62497281        4.259772081 Secondary Carnivore
## 1899          2.94443898        0.004578480  Tertiary Carnivore
## 1900          4.39444915        7.288251436 Secondary Carnivore
## 1901          0.99325177        0.130455954  Tertiary Carnivore
## 1902          4.00369019        1.307030142 Secondary Carnivore
## 1903          0.53999600        0.413477448  Tertiary Carnivore
## 1904          0.26236426        1.920179330   Primary Carnivore
## 1905          3.30310667        1.506685742 Secondary Carnivore
## 1906          0.00000000        0.130455954 Secondary Carnivore
## 1907          4.21331208        1.886232978 Secondary Carnivore
## 1908          5.75574221        1.168798094 Secondary Carnivore
## 1909          1.56024767        0.009889753   Primary Carnivore
## 1910          2.02683159        0.885298676  Tertiary Carnivore
## 1911          4.75531284        3.943759073 Secondary Carnivore
## 1912          4.99767163        4.232513096 Secondary Carnivore
## 1913          2.22354189        0.015041422 Secondary Carnivore
## 1914          3.26575941        5.169038067   Primary Carnivore
## 1915          1.71918878        0.856029167   Primary Carnivore
## 1916          1.13462273        2.136925014 Secondary Carnivore
## 1917          0.58778666        0.147199990 Secondary Carnivore
## 1918          1.84150156        1.711701702  Tertiary Carnivore
## 1919          2.97041447        2.387053327 Secondary Carnivore
## 1920          0.00000000        0.002344505 Secondary Carnivore
## 1921          0.00000000        2.404044412           Herbivore
## 1922          2.77258872        0.116104790 Secondary Carnivore
## 1923          1.85629799        0.490146528  Tertiary Carnivore
## 1924          4.59410924        3.168005566 Secondary Carnivore
## 1925          5.56452041        7.288251436  Tertiary Carnivore
## 1926          8.05360097        6.670778349 Secondary Carnivore
## 1927          3.24649099        1.307030142 Secondary Carnivore
## 1928          1.70292826        0.015041422 Secondary Carnivore
## 1929          3.88752537        0.749689812   Primary Carnivore
## 1930          0.00000000        0.015041422  Tertiary Carnivore
## 1931          5.18178355        6.849625561 Secondary Carnivore
## 1932          2.40865536        1.540263127 Secondary Carnivore
## 1933          2.90690106        3.515099295 Secondary Carnivore
## 1934          2.61739583        0.757060688  Tertiary Carnivore
## 1935          2.52572864        0.735932630 Secondary Carnivore
## 1936          3.36037539        2.891851822  Tertiary Carnivore
## 1937          3.35340672        5.169038067   Primary Carnivore
## 1938          0.00000000        1.886232978           Herbivore
## 1939          1.98787435        2.241290896   Primary Carnivore
## 1940          2.68852753        3.226603994 Secondary Carnivore
## 1941          2.58776404        2.136925014 Secondary Carnivore
## 1942          1.35325451        2.404044412 Secondary Carnivore
## 1943          4.70953020        7.288251436 Secondary Carnivore
## 1944          7.35212054        6.849625561 Secondary Carnivore
## 1945          2.56494936        1.315195554 Secondary Carnivore
## 1946          5.81889528        6.849625561 Secondary Carnivore
## 1947          1.79275897        0.116104790 Secondary Carnivore
## 1948          1.62924054        0.147199990 Secondary Carnivore
## 1949          7.75022723        6.670778349 Secondary Carnivore
## 1950          3.79773386        4.094232049 Secondary Carnivore
## 1951          0.95551145        0.490146528  Tertiary Carnivore
## 1952          1.53255687        2.075946520 Secondary Carnivore
## 1953          5.14813381        1.886232978   Primary Carnivore
## 1954          0.00000000        1.886232978           Herbivore
## 1955          0.33647224        2.894695819   Primary Carnivore
## 1956          3.28578653        0.015041422 Secondary Carnivore
## 1957          2.29253476        1.315195554   Primary Carnivore
## 1958          7.29715875        6.849625561 Secondary Carnivore
## 1959          0.26236426        2.024989105   Primary Carnivore
## 1960          0.68813464        1.251683108 Secondary Carnivore
## 1961          1.02961942        0.470853119  Tertiary Carnivore
## 1962          1.26976054        1.180964506 Secondary Carnivore
## 1963          4.04305127        6.670778349  Tertiary Carnivore
## 1964          3.96840334        2.050338578   Primary Carnivore
## 1965          5.72227706        6.849625561 Secondary Carnivore
## 1966          4.79579055        7.288251436 Secondary Carnivore
## 1967          7.40482675        6.670778349 Secondary Carnivore
## 1968          0.78845736        7.161415474   Primary Carnivore
## 1969          5.57215403        4.259772081   Primary Carnivore
## 1970          3.51452607        1.886232978 Secondary Carnivore
## 1971          1.87640694        0.885298676  Tertiary Carnivore
## 1972          2.63905733        0.002059853 Secondary Carnivore
## 1973          0.00000000        2.894695819   Primary Carnivore
## 1974          3.40452517        1.886232978 Secondary Carnivore
## 1975          0.00000000        0.002059853 Secondary Carnivore
## 1976          2.24918432        0.009889753   Primary Carnivore
## 1977          1.66392610        0.211247175 Secondary Carnivore
## 1978          0.06765865        0.305596011 Secondary Carnivore
## 1979          2.27212589        1.670180746 Secondary Carnivore
## 1980          2.77881927        0.885298676  Tertiary Carnivore
## 1981          6.58340922        4.259772081  Tertiary Carnivore
## 1982          0.00000000        1.670180746   Primary Carnivore
## 1983          1.45161383        1.532760019 Secondary Carnivore
## 1984          1.99333884        1.307030142 Secondary Carnivore
## 1985          0.00000000        0.002059853 Secondary Carnivore
## 1986          2.04122033        0.063185562 Secondary Carnivore
## 1987          2.23537634        0.015041422 Secondary Carnivore
## 1988          2.58021683        2.891851822 Secondary Carnivore
## 1989          4.25134831        1.168798094 Secondary Carnivore
## 1990          0.00000000        2.404044412           Herbivore
## 1991          1.47476301        0.900183757 Secondary Carnivore
## 1992          6.77490937        6.849625561 Secondary Carnivore
## 1993          3.42816383        0.015041422   Primary Carnivore
## 1994          1.61541998        0.009889753  Tertiary Carnivore
## 1995          6.90505163        6.849625561 Secondary Carnivore
## 1996          1.66770682        0.002344505 Secondary Carnivore
## 1997          3.03013370        3.146907198 Secondary Carnivore
## 1998          1.81156210        0.211247175 Secondary Carnivore
## 1999          1.01884732        0.223982763 Secondary Carnivore
## 2000          1.51072194        0.015041422  Tertiary Carnivore
## 2001          5.68357977        4.094232049  Tertiary Carnivore
## 2002          4.79579055        7.288251436 Secondary Carnivore
## 2003          1.19996478        0.015041422  Tertiary Carnivore
## 2004          7.45066080        7.288251436 Secondary Carnivore
## 2005          2.47863704        1.711701702   Primary Carnivore
## 2006          1.31640823        0.214753881 Secondary Carnivore
## 2007          6.08677473        4.094232049 Secondary Carnivore
## 2008          3.51443678        2.610718759 Secondary Carnivore
## 2009          2.92316158        3.473231162 Secondary Carnivore
## 2010          1.77495235        0.002344505 Secondary Carnivore
## 2011          0.00000000        1.877421323 Secondary Carnivore
## 2012          2.32727771        0.009889753           Herbivore
## 2013          1.43983513        0.305596011  Tertiary Carnivore
## 2014          5.21553341        0.735932630   Primary Carnivore
## 2015          4.19166787        2.433189939 Secondary Carnivore
## 2016          1.47796155        1.711701702  Tertiary Carnivore
## 2017          2.28238239        1.315195554 Secondary Carnivore
## 2018          2.55722731        1.315195554 Secondary Carnivore
## 2019          3.16665579        0.470853119 Secondary Carnivore
## 2020          0.00000000        0.002344505  Tertiary Carnivore
## 2021          2.79116511        0.009889753           Herbivore
## 2022          1.75958057        4.262479896 Secondary Carnivore
## 2023          1.29746315        0.413477448 Secondary Carnivore
## 2024          2.85647021        1.886232978 Secondary Carnivore
## 2025          2.85070650        0.063185562 Secondary Carnivore
## 2026          5.18505908        1.432814265 Secondary Carnivore
## 2027          1.20297230        1.831515834  Tertiary Carnivore
## 2028          3.26956894        1.886232978 Secondary Carnivore
## 2029          3.80443779        6.670778349   Primary Carnivore
## 2030          5.01727984        7.288251436  Tertiary Carnivore
## 2031          3.85227300        6.670778349 Secondary Carnivore
## 2032          3.27222700        0.735932630   Primary Carnivore
## 2033          1.08180517        0.116104790 Secondary Carnivore
## 2034          1.89611948        0.885298676 Secondary Carnivore
## 2035          1.66770682        0.490146528 Secondary Carnivore
## 2036          4.27495632        4.232513096  Tertiary Carnivore
## 2037          5.77827133        6.670778349  Tertiary Carnivore
## 2038          0.00000000        1.673740129           Herbivore
## 2039          1.48387469        0.885298676 Secondary Carnivore
## 2040          3.55820113        2.153233085           Herbivore
## 2041          0.78845736        2.145288428 Secondary Carnivore
## 2042          2.00417906        0.211247175 Secondary Carnivore
## 2043          8.42299240        6.849625561 Secondary Carnivore
## 2044          6.01859321        7.288251436  Tertiary Carnivore
## 2045          0.00000000        0.002059853 Secondary Carnivore
## 2046          1.95727391        0.004578480   Primary Carnivore
## 2047          1.62924054        0.223982763 Secondary Carnivore
## 2048          1.04027671        1.454402431 Secondary Carnivore
## 2049          5.44241771        2.153233085 Secondary Carnivore
## 2050          3.06339092        3.943759073 Secondary Carnivore
## 2051          2.53369681        1.981883583   Primary Carnivore
## 2052          4.09434456        7.288251436 Secondary Carnivore
## 2053          3.28776736        2.433189939  Tertiary Carnivore
## 2054          5.30330491        7.288251436 Secondary Carnivore
## 2055          0.00000000        0.009889753 Secondary Carnivore
## 2056          5.28826703        2.153233085  Tertiary Carnivore
## 2057          0.95551145        0.211247175 Secondary Carnivore
## 2058          1.67335124        0.735932630 Secondary Carnivore
## 2059          2.70136121        3.515099295 Secondary Carnivore
## 2060          1.18172720        2.387053327 Secondary Carnivore
## 2061          2.41126011        1.014024833 Secondary Carnivore
## 2062          2.32238772        0.223982763 Secondary Carnivore
## 2063          7.51261754        6.942696930 Secondary Carnivore
## 2064          0.00000000        0.009889753 Secondary Carnivore
## 2065          2.63905733        0.002059853 Secondary Carnivore
## 2066          0.91629073        0.063185562 Secondary Carnivore
## 2067          3.02456266        2.254856321 Secondary Carnivore
## 2068          1.41098697        0.147199990 Secondary Carnivore
## 2069          3.78940329        0.214753881  Tertiary Carnivore
## 2070          0.83290912        0.130455954 Secondary Carnivore
## 2071          7.62525355        6.849625561 Secondary Carnivore
## 2072          3.34990409        2.387053327   Primary Carnivore
## 2073          4.61512052        7.288251436  Tertiary Carnivore
## 2074          3.55010577        1.540263127 Secondary Carnivore
## 2075          1.24990174        2.241290896   Primary Carnivore
## 2076          7.22329568        7.288251436 Secondary Carnivore
## 2077          4.71849887        3.146907198 Secondary Carnivore
## 2078          3.92296295        2.138914945 Secondary Carnivore
## 2079          3.28091122        1.168798094   Primary Carnivore
## 2080          2.38139627        2.136925014 Secondary Carnivore
## 2081          1.34547237        0.885298676 Secondary Carnivore
## 2082          2.23697934        0.490146528   Primary Carnivore
## 2083          2.91463067        2.136925014 Secondary Carnivore
## 2084          4.30217141        0.002059853 Secondary Carnivore
## 2085          1.13140211        0.470853119  Tertiary Carnivore
## 2086          3.38113072        1.632888289 Secondary Carnivore
## 2087          1.53901545        2.853935439 Secondary Carnivore
## 2088          2.98061864        0.885298676  Tertiary Carnivore
## 2089          1.95868534        0.211247175 Secondary Carnivore
## 2090          1.68639895        7.161415474 Secondary Carnivore
## 2091          3.09557761        0.009889753   Primary Carnivore
## 2092          2.63991411        2.254856321   Primary Carnivore
## 2093          0.00000000        0.305596011 Secondary Carnivore
## 2094          3.36037539        1.168798094 Secondary Carnivore
## 2095          1.59533899        0.413477448 Secondary Carnivore
## 2096          3.56133013        1.886232978 Secondary Carnivore
## 2097          4.65396035        1.168798094 Secondary Carnivore
## 2098          0.00000000        1.459857720   Primary Carnivore
## 2099          7.34968088        6.849625561 Secondary Carnivore
## 2100          4.68213123        6.670778349  Tertiary Carnivore
## 2101          1.31908561        0.004578480   Primary Carnivore
## 2102          8.85237889        7.288251436 Secondary Carnivore
## 2103          0.93216408        4.094232049           Herbivore
## 2104          4.86753445        2.153233085 Secondary Carnivore
## 2105          0.00000000        0.281204828 Secondary Carnivore
## 2106          2.12823171        0.211247175 Secondary Carnivore
## 2107          5.67194775        1.886232978 Secondary Carnivore
## 2108          0.82417544        1.831515834   Primary Carnivore
## 2109          0.63657683        4.259772081           Herbivore
## 2110          6.61069604        6.942696930 Secondary Carnivore
## 2111          3.42426265        3.651616415  Tertiary Carnivore
## 2112          3.73440238        3.943759073 Secondary Carnivore
## 2113          3.66612247        0.749689812   Primary Carnivore
## 2114          2.08193842        0.004578480  Tertiary Carnivore
## 2115          0.00000000        2.145288428 Secondary Carnivore
## 2116          3.77045944        2.050338578   Primary Carnivore
## 2117          8.52734152        7.288251436 Secondary Carnivore
## 2118          3.71571611        2.433189939 Secondary Carnivore
## 2119          3.06339092        0.735932630 Secondary Carnivore
## 2120          2.61520365        3.226603994  Tertiary Carnivore
## 2121          7.20630310        6.849625561 Secondary Carnivore
## 2122          2.83321334        3.146907198 Secondary Carnivore
## 2123          2.80940270        1.420705940 Secondary Carnivore
## 2124          6.99062476        7.288251436 Secondary Carnivore
## 2125          4.47847253        1.168798094 Secondary Carnivore
## 2126          1.68639895        0.116104790 Secondary Carnivore
## 2127          0.00000000        0.009889753           Herbivore
## 2128          2.50470928        1.432814265 Secondary Carnivore
## 2129          6.66134310        6.670778349 Secondary Carnivore
## 2130          0.87546874        0.063185562 Secondary Carnivore
## 2131          3.20453346        2.610718759  Tertiary Carnivore
## 2132          1.08518927        1.180964506  Tertiary Carnivore
## 2133          3.00071982        0.214753881  Tertiary Carnivore
## 2134          2.00552586        1.307030142 Secondary Carnivore
## 2135          1.46325540        4.094232049           Herbivore
## 2136          4.53689135        1.673740129 Secondary Carnivore
## 2137          5.25227343        7.288251436   Primary Carnivore
## 2138          3.03013370        1.670180746   Primary Carnivore
## 2139          5.25017699        3.473231162   Primary Carnivore
## 2140          3.88567903        2.387053327 Secondary Carnivore
## 2141          3.89731538        0.735932630 Secondary Carnivore
## 2142          5.54126355        3.146907198 Secondary Carnivore
## 2143          4.77912349        4.094232049  Tertiary Carnivore
## 2144          1.70402055        0.211247175 Secondary Carnivore
## 2145          2.81540872        0.757060688 Secondary Carnivore
## 2146          7.84998662        6.670778349 Secondary Carnivore
## 2147          0.00000000        0.002344505  Tertiary Carnivore
## 2148          3.94158181        3.168005566 Secondary Carnivore
## 2149          1.73342389        0.015041422 Secondary Carnivore
## 2150          3.49347266        1.168798094 Secondary Carnivore
## 2151          0.26236426        2.107009466   Primary Carnivore
## 2152          0.00000000        2.107009466   Primary Carnivore
## 2153          2.84490938        0.020024930  Tertiary Carnivore
## 2154          0.74193734        2.241290896   Primary Carnivore
## 2155          1.67335124        0.490146528 Secondary Carnivore
## 2156          4.02177387        2.153233085  Tertiary Carnivore
## 2157          4.50976000        6.670778349 Secondary Carnivore
## 2158          4.07414185        3.159561805   Primary Carnivore
## 2159          2.76744803        6.670778349 Secondary Carnivore
## 2160          2.96460274        3.038160131 Secondary Carnivore
## 2161          5.17868888        2.153233085 Secondary Carnivore
## 2162          1.55180880        0.009889753  Tertiary Carnivore
## 2163          1.38629436        0.063185562 Secondary Carnivore
## 2164          4.54648119        3.146907198 Secondary Carnivore
## 2165          2.37024374        0.490146528 Secondary Carnivore
## 2166          0.30748470        4.259772081           Herbivore
## 2167          2.01089500        0.214753881 Secondary Carnivore
## 2168          3.39450839        1.479154529   Primary Carnivore
## 2169          2.68784749        0.757060688   Primary Carnivore
## 2170          2.35801980        3.515099295 Secondary Carnivore
## 2171          3.76584050        0.009889753  Tertiary Carnivore
## 2172          0.81536481        1.251683108 Secondary Carnivore
## 2173          0.00000000        1.886232978           Herbivore
## 2174          1.28923265        0.004578480 Secondary Carnivore
## 2175          2.00512201        2.853935439   Primary Carnivore
## 2176          4.74449725        3.146907198 Secondary Carnivore
## 2177          4.03777421        6.670778349   Primary Carnivore
## 2178          4.71635371        1.168798094 Secondary Carnivore
## 2179          0.36394843        0.413477448  Tertiary Carnivore
## 2180          0.00000000        0.009889753           Herbivore
## 2181          4.94875989        7.288251436 Secondary Carnivore
## 2182          3.99636415        6.670778349 Secondary Carnivore
## 2183          1.15688120        0.004578480   Primary Carnivore
## 2184          3.51452607        1.168798094 Secondary Carnivore
## 2185          8.20305762        7.288251436 Secondary Carnivore
## 2186          0.81668960        1.705681497 Secondary Carnivore
## 2187          2.55567572        0.015041422   Primary Carnivore
## 2188          1.34547237        1.962719022 Secondary Carnivore
## 2189          2.37954613        0.004578480 Secondary Carnivore
## 2190          4.85203026        6.849625561  Tertiary Carnivore
## 2191          0.95165788        1.877421323 Secondary Carnivore
## 2192          4.74701691        0.002059853 Secondary Carnivore
## 2193          0.98954119        0.116104790 Secondary Carnivore
## 2194          7.58054668        6.670778349 Secondary Carnivore
## 2195          3.03013370        2.153233085 Secondary Carnivore
## 2196          6.27476202        7.288251436   Primary Carnivore
## 2197          4.55807858        6.670778349 Secondary Carnivore
## 2198          1.06594239        2.145288428 Secondary Carnivore
## 2199          2.39059597        1.886232978   Primary Carnivore
## 2200          5.50443683        6.942696930 Secondary Carnivore
## 2201          2.01623547        1.886232978   Primary Carnivore
## 2202          1.40609699        2.136925014 Secondary Carnivore
## 2203          0.00000000        2.404044412           Herbivore
## 2204          4.99043259        6.670778349 Secondary Carnivore
## 2205          3.44998755        1.886232978 Secondary Carnivore
## 2206          1.74221902        1.831515834 Secondary Carnivore
## 2207          0.83290912        1.315195554   Primary Carnivore
## 2208          2.67414865        1.168798094 Secondary Carnivore
## 2209          3.39785848        2.153233085 Secondary Carnivore
## 2210          3.76537743        1.886232978   Primary Carnivore
## 2211          0.53062825        2.472143654   Primary Carnivore
## 2212          3.68145194        1.014024833 Secondary Carnivore
## 2213          7.71020519        7.288251436 Secondary Carnivore
## 2214          2.18941639        1.532760019   Primary Carnivore
## 2215          1.82454929        3.226603994  Tertiary Carnivore
## 2216          1.79342475        4.047182371  Tertiary Carnivore
## 2217          6.29876541        6.849625561 Secondary Carnivore
## 2218          2.60172626        0.470853119  Tertiary Carnivore
## 2219          0.40879290        2.891851822 Secondary Carnivore
## 2220          0.00000000        0.009889753  Tertiary Carnivore
## 2221          2.70951579        1.540263127 Secondary Carnivore
## 2222          1.67147330        0.015041422   Primary Carnivore
## 2223          5.30330491        4.259772081 Secondary Carnivore
## 2224          3.64021428        1.070822001   Primary Carnivore
## 2225          1.89069942        2.075946520 Secondary Carnivore
## 2226          4.24849524        6.849625561 Secondary Carnivore
## 2227          3.97168717        4.232513096 Secondary Carnivore
## 2228          0.99694863        1.540263127   Primary Carnivore
## 2229          4.44851638        6.670778349 Secondary Carnivore
## 2230          0.00000000        0.015041422   Primary Carnivore
## 2231          2.62466859        0.004578480 Secondary Carnivore
## 2232          6.68511160        6.849625561 Secondary Carnivore
## 2233          5.30230939        6.670778349  Tertiary Carnivore
## 2234          4.50733683        2.387053327 Secondary Carnivore
## 2235          3.12236492        2.891851822 Secondary Carnivore
## 2236          6.72623340        6.942696930  Tertiary Carnivore
## 2237          1.04027671        0.116104790 Secondary Carnivore
## 2238          2.71469474        1.886232978 Secondary Carnivore
## 2239          1.30291275        0.490146528 Secondary Carnivore
## 2240          3.81771233        0.735932630 Secondary Carnivore
## 2241          2.84490938        4.259772081 Secondary Carnivore
## 2242          1.67147330        0.004578480   Primary Carnivore
## 2243          1.32441896        2.122440181 Secondary Carnivore
## 2244          1.66770682        0.490146528  Tertiary Carnivore
## 2245          1.69561561        0.009889753 Secondary Carnivore
## 2246          7.38634693        7.288251436 Secondary Carnivore
## 2247          1.45861502        0.223982763 Secondary Carnivore
## 2248          3.55820113        2.404044412 Secondary Carnivore
## 2249          3.95871573        3.473231162 Secondary Carnivore
## 2250          1.22377543        0.878396534   Primary Carnivore
## 2251          3.91800508        3.146907198  Tertiary Carnivore
## 2252          2.80336038        1.168798094 Secondary Carnivore
## 2253          1.79175947        0.878396534   Primary Carnivore
## 2254          1.75785792        0.223982763 Secondary Carnivore
## 2255          3.45568557        0.749689812   Primary Carnivore
## 2256          3.68250921        3.873611973 Secondary Carnivore
## 2257          1.42310833        1.454402431 Secondary Carnivore
## 2258          5.73979291        2.153233085   Primary Carnivore
## 2259          3.08190997        0.002059853 Secondary Carnivore
## 2260          3.23474917        1.886232978 Secondary Carnivore
## 2261          5.08140436        6.670778349   Primary Carnivore
## 2262          1.04027671        0.116104790 Secondary Carnivore
## 2263          3.91202301        0.004578480  Tertiary Carnivore
## 2264          3.92197334        6.670778349   Primary Carnivore
## 2265          2.33505228        1.886232978 Secondary Carnivore
## 2266          7.83391713        6.670778349 Secondary Carnivore
## 2267          4.52601875        2.138914945  Tertiary Carnivore
## 2268          4.56076888        1.432814265 Secondary Carnivore
## 2269          3.57632647        0.470853119 Secondary Carnivore
## 2270          2.94968834        1.307030142 Secondary Carnivore
## 2271          7.17142638        6.670778349 Secondary Carnivore
## 2272          2.37954613        0.490146528  Tertiary Carnivore
## 2273          1.80500470        1.886232978 Secondary Carnivore
## 2274          2.12584791        3.515099295 Secondary Carnivore
## 2275          4.80541352        4.094232049 Secondary Carnivore
## 2276          1.68639895        0.130455954 Secondary Carnivore
## 2277          6.91214563        6.670778349 Secondary Carnivore
## 2278          5.57473625        3.473231162   Primary Carnivore
## 2279          7.21604848        6.849625561 Secondary Carnivore
## 2280          2.43562887        2.853935439 Secondary Carnivore
## 2281          2.07693841        0.735932630 Secondary Carnivore
## 2282          1.28093385        0.130455954  Tertiary Carnivore
## 2283          1.41342303        0.413477448 Secondary Carnivore
## 2284          4.26310232        2.433189939  Tertiary Carnivore
## 2285          7.68959991        6.849625561 Secondary Carnivore
## 2286          4.26267988        7.288251436   Primary Carnivore
## 2287          3.49650756        1.168798094 Secondary Carnivore
## 2288          4.00551335        3.146907198 Secondary Carnivore
## 2289          4.20916024        1.886232978   Primary Carnivore
## 2290          7.83241093        6.942696930 Secondary Carnivore
## 2291          4.53646299        3.146907198 Secondary Carnivore
## 2292          8.53210151        6.849625561 Secondary Carnivore
## 2293          1.33500107        0.015041422 Secondary Carnivore
## 2294          2.82731362        0.002344505 Secondary Carnivore
## 2295          4.70048037        6.670778349 Secondary Carnivore
## 2296          4.35388433        1.168798094 Secondary Carnivore
## 2297          4.61541750        3.473231162  Tertiary Carnivore
## 2298          1.42069579        0.214753881 Secondary Carnivore
## 2299          1.06471074        0.305596011  Tertiary Carnivore
## 2300          5.16478597        7.288251436 Secondary Carnivore
## 2301          0.00000000        0.004578480 Secondary Carnivore
## 2302          1.09192330        1.180964506 Secondary Carnivore
## 2303          0.47000363        0.147199990 Secondary Carnivore
## 2304          0.00000000        0.004578480   Primary Carnivore
## 2305          5.39816270        7.288251436  Tertiary Carnivore
## 2306          1.19392247        1.670180746   Primary Carnivore
## 2307          5.50938834        4.094232049  Tertiary Carnivore
## 2308          1.77495235        0.490146528  Tertiary Carnivore
## 2309          3.23474917        1.670180746   Primary Carnivore
## 2310          3.06339092        0.735932630 Secondary Carnivore
## 2311          3.71843826        2.387053327 Secondary Carnivore
## 2312          1.67147330        0.856029167  Tertiary Carnivore
## 2313          4.98360662        6.849625561   Primary Carnivore
## 2314          0.00000000        0.147199990 Secondary Carnivore
## 2315          1.79175947        0.223982763 Secondary Carnivore
## 2316          1.49290410        0.823328714 Secondary Carnivore
## 2317          2.94443898        0.757060688 Secondary Carnivore
## 2318          2.60268969        0.009889753   Primary Carnivore
## 2319          1.69708242        2.122440181 Secondary Carnivore
## 2320          3.43398720        0.002344505 Secondary Carnivore
## 2321          4.80745776        1.168798094   Primary Carnivore
## 2322          1.60140574        0.281204828 Secondary Carnivore
## 2323          4.56954301        6.849625561 Secondary Carnivore
## 2324          1.85629799        0.002059853 Secondary Carnivore
## 2325          2.52652832        0.015041422   Primary Carnivore
## 2326          2.16332303        0.223982763 Secondary Carnivore
## 2327          1.66770682        2.894695819 Secondary Carnivore
## 2328          4.47960696        6.849625561 Secondary Carnivore
## 2329          0.00000000        0.015041422   Primary Carnivore
## 2330          4.85203026        6.942696930 Secondary Carnivore
## 2331          5.02388052        4.094232049   Primary Carnivore
## 2332          1.85848310        0.900183757   Primary Carnivore
## 2333          6.44730586        7.288251436 Secondary Carnivore
## 2334          0.00000000        1.315195554   Primary Carnivore
## 2335          4.79579055        7.288251436   Primary Carnivore
## 2336          2.86789890        2.387053327 Secondary Carnivore
## 2337          3.15700042        2.387053327 Secondary Carnivore
## 2338          1.09192330        0.211247175 Secondary Carnivore
## 2339          1.82454929        0.063185562 Secondary Carnivore
## 2340          1.02961942        2.894695819   Primary Carnivore
## 2341          4.59208495        2.387053327 Secondary Carnivore
## 2342          3.91657264        4.232513096   Primary Carnivore
## 2343          1.76644166        4.047182371 Secondary Carnivore
## 2344          2.74071098        3.873611973 Secondary Carnivore
## 2345          0.99325177        0.878396534   Primary Carnivore
## 2346          3.26956894        2.894695819   Primary Carnivore
## 2347          3.01944880        2.853935439 Secondary Carnivore
## 2348          7.72832775        6.670778349 Secondary Carnivore
## 2349          1.12167756        0.015041422   Primary Carnivore
## 2350          1.08180517        0.211247175 Secondary Carnivore
## 2351          0.83290912        0.470853119  Tertiary Carnivore
## 2352          4.12713439        0.004578480  Tertiary Carnivore
## 2353          0.00000000        1.126655451   Primary Carnivore
## 2354          3.58629287        6.670778349   Primary Carnivore
## 2355          0.01064316        0.305596011  Tertiary Carnivore
## 2356          1.38629436        0.020024930  Tertiary Carnivore
## 2357          1.24126859        0.561550440 Secondary Carnivore
## 2358          5.48188814        6.670778349 Secondary Carnivore
## 2359          7.34018684        6.942696930  Tertiary Carnivore
## 2360          1.32972401        0.015041422  Tertiary Carnivore
## 2361          6.06092531        2.610718759 Secondary Carnivore
## 2362          7.88615659        6.670778349 Secondary Carnivore
## 2363          4.25844557        0.002059853 Secondary Carnivore
## 2364          8.12346889        7.288251436 Secondary Carnivore
## 2365          1.14740245        0.015041422 Secondary Carnivore
## 2366          6.83936937        6.849625561 Secondary Carnivore
## 2367          6.41345896        4.094232049 Secondary Carnivore
## 2368          3.92395158        2.277308093   Primary Carnivore
## 2369          3.54673969        6.670778349 Secondary Carnivore
## 2370          3.56953270        2.387053327 Secondary Carnivore
## 2371          0.00000000        0.130455954 Secondary Carnivore
## 2372          4.41642806        6.670778349 Secondary Carnivore
## 2373          3.21112587        3.651616415 Secondary Carnivore
## 2374          3.01553490        0.015041422  Tertiary Carnivore
## 2375          4.29959566        2.153233085   Primary Carnivore
## 2376          4.83628191        6.849625561 Secondary Carnivore
## 2377          4.24769492        3.873611973 Secondary Carnivore
## 2378          3.91921707        1.506685742 Secondary Carnivore
## 2379          0.26236426        2.024989105   Primary Carnivore
## 2380          1.40609699        0.305596011  Tertiary Carnivore
## 2381          0.00000000        1.459857720   Primary Carnivore
## 2382          5.14166356        7.288251436  Tertiary Carnivore
## 2383          3.28057281        2.433189939 Secondary Carnivore
## 2384          4.45781801        7.288251436   Primary Carnivore
## 2385          4.27527626        6.670778349   Primary Carnivore
## 2386          7.52736356        7.288251436 Secondary Carnivore
## 2387          4.23555473        4.094232049 Secondary Carnivore
## 2388          0.02078254        1.180964506 Secondary Carnivore
## 2389          0.85441533        2.153233085           Herbivore
## 2390          0.00000000        0.130455954 Secondary Carnivore
## 2391          1.99877364        0.015041422  Tertiary Carnivore
## 2392          0.00000000        3.146907198   Primary Carnivore
## 2393          7.95384545        6.849625561 Secondary Carnivore
## 2394          2.64617480        0.305596011  Tertiary Carnivore
## 2395          3.12236492        3.038160131 Secondary Carnivore
## 2396          0.00000000        0.340191127   Primary Carnivore
## 2397          4.41558229        3.943759073 Secondary Carnivore
## 2398          3.70179568        0.735932630   Primary Carnivore
## 2399          4.56017282        3.146907198 Secondary Carnivore
## 2400          2.13416644        1.742111989 Secondary Carnivore
## 2401          6.77445243        6.670778349 Secondary Carnivore
## 2402          2.54160199        2.050338578   Primary Carnivore
## 2403          2.08815348        0.009889753           Herbivore
## 2404          2.89668512        2.136925014 Secondary Carnivore
## 2405          2.10413415        1.886232978 Secondary Carnivore
## 2406          4.71573613        3.304296954 Secondary Carnivore
## 2407          7.34665516        7.288251436 Secondary Carnivore
## 2408          5.22810947        1.168798094   Primary Carnivore
## 2409          2.21920348        0.223982763 Secondary Carnivore
## 2410          2.79116511        1.886232978   Primary Carnivore
## 2411          2.56240767        2.075946520   Primary Carnivore
## 2412          2.84490938        3.473231162  Tertiary Carnivore
## 2413          1.52388002        1.532760019 Secondary Carnivore
## 2414          3.63663834        3.651616415   Primary Carnivore
## 2415          2.36368019        0.015041422   Primary Carnivore
## 2416          3.92789635        6.849625561   Primary Carnivore
## 2417          2.91695959        2.433189939 Secondary Carnivore
## 2418          6.52590904        6.670778349 Secondary Carnivore
## 2419          2.45958884        0.015041422   Primary Carnivore
## 2420          2.59525471        3.473231162 Secondary Carnivore
## 2421          7.61386804        6.670778349 Secondary Carnivore
## 2422          2.27212589        1.532760019   Primary Carnivore
## 2423          3.68637632        2.153233085 Secondary Carnivore
## 2424          0.00000000        0.211247175 Secondary Carnivore
## 2425          3.33932198        2.404044412 Secondary Carnivore
## 2426          1.90389697        0.211247175 Secondary Carnivore
## 2427          3.25424297        3.515099295 Secondary Carnivore
## 2428          2.98568194        4.121930401   Primary Carnivore
## 2429          2.82137889        2.153233085 Secondary Carnivore
## 2430          3.15700042        1.168798094 Secondary Carnivore
## 2431          5.61312811        6.849625561   Primary Carnivore
## 2432          3.23080440        2.241290896   Primary Carnivore
## 2433          2.05412373        0.856029167 Secondary Carnivore
## 2434          2.47653840        0.885298676  Tertiary Carnivore
## 2435          3.24259235        0.749689812   Primary Carnivore
## 2436          3.23867845        3.146907198 Secondary Carnivore
## 2437          2.27829240        2.387053327  Tertiary Carnivore
## 2438          5.44570235        1.168798094   Primary Carnivore
## 2439          5.77455155        6.942696930  Tertiary Carnivore
## 2440          4.57367952        4.094232049 Secondary Carnivore
## 2441          6.28897318        6.670778349 Secondary Carnivore
## 2442          4.86375810        1.673740129   Primary Carnivore
## 2443          2.81367068        2.891851822  Tertiary Carnivore
## 2444          0.00000000        0.002344505 Secondary Carnivore
## 2445          1.20297230        0.015041422   Primary Carnivore
## 2446          2.83749827        2.853935439 Secondary Carnivore
## 2447          7.05142263        6.670778349 Secondary Carnivore
## 2448          3.25037449        0.020024930   Primary Carnivore
## 2449          1.00063188        1.711701702 Secondary Carnivore
## 2450          7.78130551        6.670778349 Secondary Carnivore
## 2451          7.82043952        7.288251436 Secondary Carnivore
## 2452          8.06495089        4.094232049 Secondary Carnivore
## 2453          0.79750720        0.413477448 Secondary Carnivore
## 2454          0.00000000        1.673740129           Herbivore
## 2455          4.51085951        7.288251436 Secondary Carnivore
## 2456          2.25023861        0.214753881 Secondary Carnivore
## 2457          2.82137889        0.009889753   Primary Carnivore
## 2458          8.50329709        7.288251436 Secondary Carnivore
## 2459          4.58598737        4.094232049 Secondary Carnivore
## 2460          3.79098468        1.168798094 Secondary Carnivore
## 2461          0.00000000        0.015041422   Primary Carnivore
## 2462          2.54944517        0.015041422  Tertiary Carnivore
## 2463          5.52146092        6.942696930 Secondary Carnivore
## 2464          2.94443898        2.894695819   Primary Carnivore
## 2465          1.62136648        1.180964506  Tertiary Carnivore
## 2466          3.72810017        1.673740129 Secondary Carnivore
## 2467          3.66612247        6.849625561 Secondary Carnivore
## 2468          0.83290912        0.147199990  Tertiary Carnivore
## 2469          1.66203036        0.009889753  Tertiary Carnivore
## 2470          4.30000280        6.849625561 Secondary Carnivore
## 2471          1.69009582        0.015041422 Secondary Carnivore
## 2472          3.88362353        6.849625561   Primary Carnivore
## 2473          2.54944517        0.044241443   Primary Carnivore
## 2474          0.63180355        4.047182371   Primary Carnivore
## 2475          3.87120101        1.673740129 Secondary Carnivore
## 2476          3.59731226        2.153233085 Secondary Carnivore
## 2477          4.66343909        6.849625561 Secondary Carnivore
## 2478          5.57215403        4.259772081   Primary Carnivore
## 2479          1.27256560        0.823328714 Secondary Carnivore
## 2480          0.82855182        1.877421323 Secondary Carnivore
## 2481          6.11146734        7.288251436   Primary Carnivore
## 2482          0.00000000        0.116104790 Secondary Carnivore
## 2483          4.98360662        4.094232049   Primary Carnivore
## 2484          4.46579317        3.473231162   Primary Carnivore
## 2485          5.35185813        7.288251436  Tertiary Carnivore
## 2486          1.99741771        0.490146528  Tertiary Carnivore
## 2487          3.81683282        2.153233085 Secondary Carnivore
## 2488          0.30748470        0.211247175  Tertiary Carnivore
## 2489          6.27795841        6.670778349 Secondary Carnivore
## 2490          1.22671229        0.305596011  Tertiary Carnivore
## 2491          0.69314718        0.470853119  Tertiary Carnivore
## 2492          2.91158951        1.962719022 Secondary Carnivore
## 2493          3.93573953        1.168798094 Secondary Carnivore
## 2494          2.77819796        0.015041422   Primary Carnivore
## 2495          4.29728541        4.094232049 Secondary Carnivore
## 2496          0.00000000        0.009889753  Tertiary Carnivore
## 2497          7.22875123        6.670778349 Secondary Carnivore
## 2498          5.55902642        1.168798094   Primary Carnivore
## 2499          7.02028007        6.670778349 Secondary Carnivore
## 2500          2.37861978        2.387053327 Secondary Carnivore
## 2501          4.48863637        6.670778349 Secondary Carnivore
## 2502          0.78845736        0.130455954 Secondary Carnivore
## 2503          0.40546511        2.894695819   Primary Carnivore
## 2504          7.34665516        7.288251436 Secondary Carnivore
## 2505          0.00000000        1.459857720   Primary Carnivore
## 2506          0.00000000        0.002344505 Secondary Carnivore
## 2507          4.92308559        7.288251436 Secondary Carnivore
## 2508          3.36729583        1.168798094 Secondary Carnivore
## 2509          1.78170913        0.856029167   Primary Carnivore
## 2510          6.08904488        7.288251436 Secondary Carnivore
## 2511          2.16676537        0.015041422  Tertiary Carnivore
## 2512          3.75560309        6.942696930 Secondary Carnivore
## 2513          0.83290912        4.262479896 Secondary Carnivore
## 2514          1.05779029        2.122440181 Secondary Carnivore
## 2515          4.51085951        7.288251436 Secondary Carnivore
## 2516          1.93152141        0.490146528 Secondary Carnivore
## 2517          2.03339760        1.742111989 Secondary Carnivore
## 2518          3.68135119        2.387053327 Secondary Carnivore
## 2519          2.56510319        2.254856321   Primary Carnivore
## 2520          5.64897424        4.259772081 Secondary Carnivore
## 2521          3.51868408        1.886232978 Secondary Carnivore
## 2522          2.54944517        0.281204828 Secondary Carnivore
## 2523          5.89715387        6.942696930  Tertiary Carnivore
## 2524          2.61739583        1.742111989 Secondary Carnivore
## 2525          2.24191003        6.670778349 Secondary Carnivore
## 2526          7.47363711        7.288251436 Secondary Carnivore
## 2527          1.96571278        0.856029167 Secondary Carnivore
## 2528          0.40546511        0.063185562 Secondary Carnivore
## 2529          6.19031541        6.942696930  Tertiary Carnivore
## 2530          2.28033948        1.532760019   Primary Carnivore
## 2531          2.13947776        4.047182371 Secondary Carnivore
## 2532          3.49650756        3.146907198 Secondary Carnivore
## 2533          0.53062825        0.130455954  Tertiary Carnivore
## 2534          3.95316495        6.670778349 Secondary Carnivore
## 2535          3.73050113        6.670778349 Secondary Carnivore
## 2536          3.05870707        3.038160131 Secondary Carnivore
## 2537          8.44080878        6.849625561 Secondary Carnivore
## 2538          2.32630162        2.845177164 Secondary Carnivore
## 2539          1.48160454        0.130455954 Secondary Carnivore
## 2540          3.57234564        3.168005566 Secondary Carnivore
## 2541          6.59441346        7.288251436  Tertiary Carnivore
## 2542          4.60616969        4.259772081  Tertiary Carnivore
## 2543          1.54756251        0.015041422 Secondary Carnivore
## 2544          4.22537282        1.168798094 Secondary Carnivore
## 2545          0.00000000        0.470853119  Tertiary Carnivore
## 2546          2.98061864        2.387053327 Secondary Carnivore
## 2547          3.76352300        1.168798094 Secondary Carnivore
## 2548          3.19179236        1.540263127 Secondary Carnivore
## 2549          4.01096295        6.670778349 Secondary Carnivore
## 2550          5.11198779        4.094232049  Tertiary Carnivore
## 2551          1.16315081        1.126655451   Primary Carnivore
## 2552          1.19392247        0.211247175 Secondary Carnivore
## 2553          7.39079852        7.288251436 Secondary Carnivore
## 2554          4.66861436        2.153233085 Secondary Carnivore
## 2555          1.54756251        0.009889753  Tertiary Carnivore
## 2556          6.06610809        7.288251436  Tertiary Carnivore
## 2557          4.04480412        6.942696930  Tertiary Carnivore
## 2558          4.98561830        3.304296954   Primary Carnivore
## 2559          6.77502357        6.849625561 Secondary Carnivore
## 2560          4.62497281        3.168005566 Secondary Carnivore
## 2561          2.58021683        1.532760019   Primary Carnivore
## 2562          4.98360662        4.094232049   Primary Carnivore
## 2563          2.63905733        2.153233085 Secondary Carnivore
## 2564          5.22035583        3.146907198 Secondary Carnivore
## 2565          7.13297667        6.670778349 Secondary Carnivore
## 2566          2.58776404        0.757060688 Secondary Carnivore
## 2567          2.11709853        3.515099295 Secondary Carnivore
## 2568          2.36837283        0.735932630 Secondary Carnivore
## 2569          4.18813844        6.849625561  Tertiary Carnivore
## 2570          0.00000000        0.004578480 Secondary Carnivore
## 2571          3.41444261        1.742111989 Secondary Carnivore
## 2572          5.13603370        1.673740129 Secondary Carnivore
## 2573          1.80664808        0.116104790 Secondary Carnivore
## 2574          3.39114705        1.670180746 Secondary Carnivore
## 2575          1.30019166        2.845177164 Secondary Carnivore
## 2576          3.13113691        4.259772081 Secondary Carnivore
## 2577          2.64326276        0.490146528 Secondary Carnivore
## 2578          0.00000000        0.015041422 Secondary Carnivore
## 2579          4.08260931        6.670778349 Secondary Carnivore
## 2580          5.02388052        6.942696930 Secondary Carnivore
## 2581          1.04027671        0.885298676 Secondary Carnivore
## 2582          3.94931879        7.161415474 Secondary Carnivore
## 2583          0.00000000        0.002059853 Secondary Carnivore
## 2584          2.14943391        0.735932630 Secondary Carnivore
## 2585          7.29369772        7.288251436 Secondary Carnivore
## 2586          1.53686722        0.015041422  Tertiary Carnivore
## 2587          0.00000000        0.147199990 Secondary Carnivore
## 2588          2.11142459        0.900183757 Secondary Carnivore
## 2589          1.82454929        0.490146528  Tertiary Carnivore
## 2590          0.83290912        1.831515834 Secondary Carnivore
## 2591          4.75780543        4.094232049 Secondary Carnivore
## 2592          2.74084002        1.886232978 Secondary Carnivore
## 2593          6.03954017        1.886232978 Secondary Carnivore
## 2594          0.17395331        1.532760019  Tertiary Carnivore
## 2595          3.28091122        3.146907198 Secondary Carnivore
## 2596          5.35185813        7.288251436  Tertiary Carnivore
## 2597          0.00000000        2.404044412           Herbivore
## 2598          1.19392247        0.147199990 Secondary Carnivore
## 2599          4.44968528        1.168798094  Tertiary Carnivore
## 2600          4.82807371        1.673740129   Primary Carnivore
## 2601          0.00000000        1.877421323 Secondary Carnivore
## 2602          7.68303529        6.849625561 Secondary Carnivore
## 2603          1.85207032        0.211247175 Secondary Carnivore
## 2604          0.19885086        0.305596011 Secondary Carnivore
## 2605          1.65822808        0.885298676  Tertiary Carnivore
## 2606          1.84292776        1.962719022 Secondary Carnivore
## 2607          2.58021683        2.136925014 Secondary Carnivore
## 2608          5.77299754        1.886232978   Primary Carnivore
## 2609          4.45771372        1.886232978   Primary Carnivore
## 2610          2.77102500        1.962719022  Tertiary Carnivore
## 2611          3.94352167        3.146907198  Tertiary Carnivore
## 2612          2.95491028        2.472143654   Primary Carnivore
## 2613          7.98214318        6.849625561 Secondary Carnivore
## 2614          4.79892612        2.387053327   Primary Carnivore
## 2615          0.92821930        6.942696930           Herbivore
## 2616          7.83494639        6.670778349 Secondary Carnivore
## 2617          7.03341830        6.670778349 Secondary Carnivore
## 2618          1.32175584        2.254856321 Secondary Carnivore
## 2619          6.78649119        6.670778349  Tertiary Carnivore
## 2620          0.00000000        1.670180746   Primary Carnivore
## 2621          0.00000000        2.404044412           Herbivore
## 2622          5.90511659        1.886232978   Primary Carnivore
## 2623          4.61485315        1.432814265 Secondary Carnivore
## 2624          4.22753423        1.506685742   Primary Carnivore
## 2625          7.39184671        7.288251436 Secondary Carnivore
## 2626          1.28923265        0.856029167 Secondary Carnivore
## 2627          1.51292701        0.015041422 Secondary Carnivore
## 2628          0.97455964        0.305596011  Tertiary Carnivore
## 2629          7.97968130        7.288251436 Secondary Carnivore
## 2630          1.18784342        0.561550440 Secondary Carnivore
## 2631          4.06355884        2.138914945 Secondary Carnivore
## 2632          3.19043520        2.610718759 Secondary Carnivore
## 2633          1.76985463        0.015041422  Tertiary Carnivore
## 2634          5.38587026        0.004578480  Tertiary Carnivore
## 2635          1.32441896        4.047182371 Secondary Carnivore
## 2636          0.83290912        5.169038067   Primary Carnivore
## 2637          2.56617937        1.962719022 Secondary Carnivore
## 2638          2.17815501        2.845177164 Secondary Carnivore
## 2639          4.96284463        6.670778349  Tertiary Carnivore
## 2640          2.16217294        0.009889753   Primary Carnivore
## 2641          0.90421815        0.305596011  Tertiary Carnivore
## 2642          0.00000000        1.886232978           Herbivore
## 2643          1.34547237        0.856029167 Secondary Carnivore
## 2644          0.00000000        0.004578480  Tertiary Carnivore
## 2645          3.57660621        1.432814265  Tertiary Carnivore
## 2646          0.43048287        0.856029167  Tertiary Carnivore
## 2647          7.98132323        6.670778349 Secondary Carnivore
## 2648          3.66867675        0.749689812   Primary Carnivore
## 2649          1.19392247        1.532760019  Tertiary Carnivore
## 2650          4.18801704        3.651616415   Primary Carnivore
## 2651          1.44926916        1.251683108 Secondary Carnivore
## 2652          4.50534985        4.094232049  Tertiary Carnivore
## 2653          2.44633906        0.470853119 Secondary Carnivore
## 2654          4.34510328        6.670778349 Secondary Carnivore
## 2655          4.84418709        3.146907198 Secondary Carnivore
## 2656          1.49962305        0.561550440 Secondary Carnivore
## 2657          6.67997600        6.670778349 Secondary Carnivore
## 2658          2.11384297        0.009889753 Secondary Carnivore
## 2659          3.50453585        3.873611973  Tertiary Carnivore
## 2660          8.49631679        6.849625561 Secondary Carnivore
## 2661          5.86646806        2.153233085  Tertiary Carnivore
## 2662          0.37156356        0.130455954 Secondary Carnivore
## 2663          0.00000000        1.981883583   Primary Carnivore
## 2664          4.31348009        4.259772081 Secondary Carnivore
## 2665          2.82137889        1.168798094 Secondary Carnivore
## 2666          2.65324196        0.002344505 Secondary Carnivore
## 2667          3.85014760        6.849625561 Secondary Carnivore
## 2668          3.86157146        0.015041422 Secondary Carnivore
## 2669          3.26575941        2.387053327 Secondary Carnivore
## 2670          4.62497281        4.259772081 Secondary Carnivore
## 2671          2.94443898        0.004578480  Tertiary Carnivore
## 2672          4.39444915        7.288251436 Secondary Carnivore
## 2673          0.99325177        0.130455954  Tertiary Carnivore
## 2674          4.00369019        1.307030142 Secondary Carnivore
## 2675          0.53999600        0.413477448  Tertiary Carnivore
## 2676          0.26236426        1.920179330   Primary Carnivore
## 2677          3.30310667        1.506685742 Secondary Carnivore
## 2678          0.00000000        0.130455954 Secondary Carnivore
## 2679          4.21331208        1.886232978 Secondary Carnivore
## 2680          5.75574221        1.168798094 Secondary Carnivore
## 2681          1.56024767        0.009889753   Primary Carnivore
## 2682          2.02683159        0.885298676  Tertiary Carnivore
## 2683          4.75531284        3.943759073 Secondary Carnivore
## 2684          4.99767163        4.232513096 Secondary Carnivore
## 2685          2.22354189        0.015041422 Secondary Carnivore
## 2686          3.26575941        5.169038067   Primary Carnivore
## 2687          1.71918878        0.856029167   Primary Carnivore
## 2688          1.13462273        2.136925014 Secondary Carnivore
## 2689          0.58778666        0.147199990 Secondary Carnivore
## 2690          1.84150156        1.711701702  Tertiary Carnivore
## 2691          2.97041447        2.387053327 Secondary Carnivore
## 2692          0.00000000        0.002344505 Secondary Carnivore
## 2693          0.00000000        2.404044412           Herbivore
## 2694          2.77258872        0.116104790 Secondary Carnivore
## 2695          1.85629799        0.490146528  Tertiary Carnivore
## 2696          4.59410924        3.168005566 Secondary Carnivore
## 2697          5.56452041        7.288251436  Tertiary Carnivore
## 2698          8.05360097        6.670778349 Secondary Carnivore
## 2699          3.24649099        1.307030142 Secondary Carnivore
## 2700          1.70292826        0.015041422 Secondary Carnivore
## 2701          3.88752537        0.749689812   Primary Carnivore
## 2702          0.00000000        0.015041422  Tertiary Carnivore
## 2703          5.18178355        6.849625561 Secondary Carnivore
## 2704          2.40865536        1.540263127 Secondary Carnivore
## 2705          2.90690106        3.515099295 Secondary Carnivore
## 2706          2.61739583        0.757060688  Tertiary Carnivore
## 2707          2.52572864        0.735932630 Secondary Carnivore
## 2708          3.36037539        2.891851822  Tertiary Carnivore
## 2709          3.35340672        5.169038067   Primary Carnivore
## 2710          0.00000000        1.886232978           Herbivore
## 2711          1.98787435        2.241290896   Primary Carnivore
## 2712          2.68852753        3.226603994 Secondary Carnivore
## 2713          2.58776404        2.136925014 Secondary Carnivore
## 2714          1.35325451        2.404044412 Secondary Carnivore
## 2715          4.70953020        7.288251436 Secondary Carnivore
## 2716          7.35212054        6.849625561 Secondary Carnivore
## 2717          2.56494936        1.315195554 Secondary Carnivore
## 2718          5.81889528        6.849625561 Secondary Carnivore
## 2719          1.79275897        0.116104790 Secondary Carnivore
## 2720          1.62924054        0.147199990 Secondary Carnivore
## 2721          7.75022723        6.670778349 Secondary Carnivore
## 2722          3.79773386        4.094232049 Secondary Carnivore
## 2723          0.95551145        0.490146528  Tertiary Carnivore
## 2724          1.53255687        2.075946520 Secondary Carnivore
## 2725          5.14813381        1.886232978   Primary Carnivore
## 2726          0.00000000        1.886232978           Herbivore
## 2727          0.33647224        2.894695819   Primary Carnivore
## 2728          3.28578653        0.015041422 Secondary Carnivore
## 2729          2.29253476        1.315195554   Primary Carnivore
## 2730          7.29715875        6.849625561 Secondary Carnivore
## 2731          0.26236426        2.024989105   Primary Carnivore
## 2732          0.68813464        1.251683108 Secondary Carnivore
## 2733          1.02961942        0.470853119  Tertiary Carnivore
## 2734          1.26976054        1.180964506 Secondary Carnivore
## 2735          4.04305127        6.670778349  Tertiary Carnivore
## 2736          3.96840334        2.050338578   Primary Carnivore
## 2737          5.72227706        6.849625561 Secondary Carnivore
## 2738          4.79579055        7.288251436 Secondary Carnivore
## 2739          7.40482675        6.670778349 Secondary Carnivore
## 2740          0.78845736        7.161415474   Primary Carnivore
## 2741          5.57215403        4.259772081   Primary Carnivore
## 2742          3.51452607        1.886232978 Secondary Carnivore
## 2743          1.87640694        0.885298676  Tertiary Carnivore
## 2744          2.63905733        0.002059853 Secondary Carnivore
## 2745          0.00000000        2.894695819   Primary Carnivore
## 2746          3.40452517        1.886232978 Secondary Carnivore
## 2747          0.00000000        0.002059853 Secondary Carnivore
## 2748          2.24918432        0.009889753   Primary Carnivore
## 2749          1.66392610        0.211247175 Secondary Carnivore
## 2750          0.06765865        0.305596011 Secondary Carnivore
## 2751          2.27212589        1.670180746 Secondary Carnivore
## 2752          2.77881927        0.885298676  Tertiary Carnivore
## 2753          6.58340922        4.259772081  Tertiary Carnivore
## 2754          0.00000000        1.670180746   Primary Carnivore
## 2755          1.45161383        1.532760019 Secondary Carnivore
## 2756          1.99333884        1.307030142 Secondary Carnivore
## 2757          0.00000000        0.002059853 Secondary Carnivore
## 2758          2.04122033        0.063185562 Secondary Carnivore
## 2759          2.23537634        0.015041422 Secondary Carnivore
## 2760          2.58021683        2.891851822 Secondary Carnivore
## 2761          4.25134831        1.168798094 Secondary Carnivore
## 2762          0.00000000        2.404044412           Herbivore
## 2763          1.47476301        0.900183757 Secondary Carnivore
## 2764          6.77490937        6.849625561 Secondary Carnivore
## 2765          3.42816383        0.015041422   Primary Carnivore
## 2766          1.61541998        0.009889753  Tertiary Carnivore
## 2767          6.90505163        6.849625561 Secondary Carnivore
## 2768          1.66770682        0.002344505 Secondary Carnivore
## 2769          3.03013370        3.146907198 Secondary Carnivore
## 2770          1.81156210        0.211247175 Secondary Carnivore
## 2771          1.01884732        0.223982763 Secondary Carnivore
## 2772          1.51072194        0.015041422  Tertiary Carnivore
## 2773          5.68357977        4.094232049  Tertiary Carnivore
## 2774          4.79579055        7.288251436 Secondary Carnivore
## 2775          1.19996478        0.015041422  Tertiary Carnivore
## 2776          7.45066080        7.288251436 Secondary Carnivore
## 2777          2.47863704        1.711701702   Primary Carnivore
## 2778          1.31640823        0.214753881 Secondary Carnivore
## 2779          6.08677473        4.094232049 Secondary Carnivore
## 2780          3.51443678        2.610718759 Secondary Carnivore
## 2781          2.92316158        3.473231162 Secondary Carnivore
## 2782          1.77495235        0.002344505 Secondary Carnivore
## 2783          0.00000000        1.877421323 Secondary Carnivore
## 2784          2.32727771        0.009889753           Herbivore
## 2785          1.43983513        0.305596011  Tertiary Carnivore
## 2786          5.21553341        0.735932630   Primary Carnivore
## 2787          4.19166787        2.433189939 Secondary Carnivore
## 2788          1.47796155        1.711701702  Tertiary Carnivore
## 2789          2.28238239        1.315195554 Secondary Carnivore
## 2790          2.55722731        1.315195554 Secondary Carnivore
## 2791          3.16665579        0.470853119 Secondary Carnivore
## 2792          0.00000000        0.002344505  Tertiary Carnivore
## 2793          2.79116511        0.009889753           Herbivore
## 2794          1.75958057        4.262479896 Secondary Carnivore
## 2795          1.29746315        0.413477448 Secondary Carnivore
## 2796          2.85647021        1.886232978 Secondary Carnivore
## 2797          2.85070650        0.063185562 Secondary Carnivore
## 2798          5.18505908        1.432814265 Secondary Carnivore
## 2799          1.20297230        1.831515834  Tertiary Carnivore
## 2800          3.26956894        1.886232978 Secondary Carnivore
## 2801          3.80443779        6.670778349   Primary Carnivore
## 2802          5.01727984        7.288251436  Tertiary Carnivore
## 2803          3.85227300        6.670778349 Secondary Carnivore
## 2804          3.27222700        0.735932630   Primary Carnivore
## 2805          1.08180517        0.116104790 Secondary Carnivore
## 2806          1.89611948        0.885298676 Secondary Carnivore
## 2807          1.66770682        0.490146528 Secondary Carnivore
## 2808          4.27495632        4.232513096  Tertiary Carnivore
## 2809          5.77827133        6.670778349  Tertiary Carnivore
## 2810          0.00000000        1.673740129           Herbivore
## 2811          1.48387469        0.885298676 Secondary Carnivore
## 2812          3.55820113        2.153233085           Herbivore
## 2813          0.78845736        2.145288428 Secondary Carnivore
## 2814          2.00417906        0.211247175 Secondary Carnivore
## 2815          8.42299240        6.849625561 Secondary Carnivore
## 2816          6.01859321        7.288251436  Tertiary Carnivore
## 2817          0.00000000        0.002059853 Secondary Carnivore
## 2818          1.95727391        0.004578480   Primary Carnivore
## 2819          1.62924054        0.223982763 Secondary Carnivore
## 2820          1.04027671        1.454402431 Secondary Carnivore
## 2821          5.44241771        2.153233085 Secondary Carnivore
## 2822          3.06339092        3.943759073 Secondary Carnivore
## 2823          2.53369681        1.981883583   Primary Carnivore
## 2824          4.09434456        7.288251436 Secondary Carnivore
## 2825          3.28776736        2.433189939  Tertiary Carnivore
## 2826          5.30330491        7.288251436 Secondary Carnivore
## 2827          0.00000000        0.009889753 Secondary Carnivore
## 2828          5.28826703        2.153233085  Tertiary Carnivore
## 2829          0.95551145        0.211247175 Secondary Carnivore
## 2830          1.67335124        0.735932630 Secondary Carnivore
## 2831          2.70136121        3.515099295 Secondary Carnivore
## 2832          1.18172720        2.387053327 Secondary Carnivore
## 2833          2.41126011        1.014024833 Secondary Carnivore
## 2834          2.32238772        0.223982763 Secondary Carnivore
## 2835          7.51261754        6.942696930 Secondary Carnivore
## 2836          0.00000000        0.009889753 Secondary Carnivore
## 2837          2.63905733        0.002059853 Secondary Carnivore
## 2838          0.91629073        0.063185562 Secondary Carnivore
## 2839          3.02456266        2.254856321 Secondary Carnivore
## 2840          1.41098697        0.147199990 Secondary Carnivore
## 2841          3.78940329        0.214753881  Tertiary Carnivore
## 2842          0.83290912        0.130455954 Secondary Carnivore
## 2843          7.62525355        6.849625561 Secondary Carnivore
## 2844          3.34990409        2.387053327   Primary Carnivore
## 2845          4.61512052        7.288251436  Tertiary Carnivore
## 2846          3.55010577        1.540263127 Secondary Carnivore
## 2847          1.24990174        2.241290896   Primary Carnivore
## 2848          7.22329568        7.288251436 Secondary Carnivore
## 2849          4.71849887        3.146907198 Secondary Carnivore
## 2850          3.92296295        2.138914945 Secondary Carnivore
## 2851          3.28091122        1.168798094   Primary Carnivore
## 2852          2.38139627        2.136925014 Secondary Carnivore
## 2853          1.34547237        0.885298676 Secondary Carnivore
## 2854          2.23697934        0.490146528   Primary Carnivore
## 2855          2.91463067        2.136925014 Secondary Carnivore
## 2856          4.30217141        0.002059853 Secondary Carnivore
## 2857          1.13140211        0.470853119  Tertiary Carnivore
## 2858          3.38113072        1.632888289 Secondary Carnivore
## 2859          1.53901545        2.853935439 Secondary Carnivore
## 2860          2.98061864        0.885298676  Tertiary Carnivore
## 2861          1.95868534        0.211247175 Secondary Carnivore
## 2862          1.68639895        7.161415474 Secondary Carnivore
## 2863          3.09557761        0.009889753   Primary Carnivore
## 2864          2.63991411        2.254856321   Primary Carnivore
## 2865          0.00000000        0.305596011 Secondary Carnivore
## 2866          3.36037539        1.168798094 Secondary Carnivore
## 2867          1.59533899        0.413477448 Secondary Carnivore
## 2868          3.56133013        1.886232978 Secondary Carnivore
## 2869          4.65396035        1.168798094 Secondary Carnivore
## 2870          0.00000000        1.459857720   Primary Carnivore
## 2871          7.34968088        6.849625561 Secondary Carnivore
## 2872          4.68213123        6.670778349  Tertiary Carnivore
## 2873          1.31908561        0.004578480   Primary Carnivore
## 2874          8.85237889        7.288251436 Secondary Carnivore
## 2875          0.93216408        4.094232049           Herbivore
## 2876          4.86753445        2.153233085 Secondary Carnivore
## 2877          0.00000000        0.281204828 Secondary Carnivore
## 2878          2.12823171        0.211247175 Secondary Carnivore
## 2879          5.67194775        1.886232978 Secondary Carnivore
## 2880          0.82417544        1.831515834   Primary Carnivore
## 2881          0.63657683        4.259772081           Herbivore
## 2882          6.61069604        6.942696930 Secondary Carnivore
## 2883          3.42426265        3.651616415  Tertiary Carnivore
## 2884          3.73440238        3.943759073 Secondary Carnivore
## 2885          3.66612247        0.749689812   Primary Carnivore
## 2886          2.08193842        0.004578480  Tertiary Carnivore
## 2887          0.00000000        2.145288428 Secondary Carnivore
## 2888          3.77045944        2.050338578   Primary Carnivore
## 2889          8.52734152        7.288251436 Secondary Carnivore
## 2890          3.71571611        2.433189939 Secondary Carnivore
## 2891          3.06339092        0.735932630 Secondary Carnivore
## 2892          2.61520365        3.226603994  Tertiary Carnivore
## 2893          7.20630310        6.849625561 Secondary Carnivore
## 2894          2.83321334        3.146907198 Secondary Carnivore
## 2895          2.80940270        1.420705940 Secondary Carnivore
## 2896          6.99062476        7.288251436 Secondary Carnivore
## 2897          4.47847253        1.168798094 Secondary Carnivore
## 2898          1.68639895        0.116104790 Secondary Carnivore
## 2899          0.00000000        0.009889753           Herbivore
## 2900          2.50470928        1.432814265 Secondary Carnivore
## 2901          6.66134310        6.670778349 Secondary Carnivore
## 2902          0.87546874        0.063185562 Secondary Carnivore
## 2903          3.20453346        2.610718759  Tertiary Carnivore
## 2904          1.08518927        1.180964506  Tertiary Carnivore
## 2905          3.00071982        0.214753881  Tertiary Carnivore
## 2906          2.00552586        1.307030142 Secondary Carnivore
## 2907          1.46325540        4.094232049           Herbivore
## 2908          4.53689135        1.673740129 Secondary Carnivore
## 2909          5.25227343        7.288251436   Primary Carnivore
## 2910          3.03013370        1.670180746   Primary Carnivore
## 2911          5.25017699        3.473231162   Primary Carnivore
## 2912          3.88567903        2.387053327 Secondary Carnivore
## 2913          3.89731538        0.735932630 Secondary Carnivore
## 2914          5.54126355        3.146907198 Secondary Carnivore
## 2915          4.77912349        4.094232049  Tertiary Carnivore
## 2916          1.70402055        0.211247175 Secondary Carnivore
## 2917          2.81540872        0.757060688 Secondary Carnivore
## 2918          7.84998662        6.670778349 Secondary Carnivore
## 2919          0.00000000        0.002344505  Tertiary Carnivore
## 2920          3.94158181        3.168005566 Secondary Carnivore
## 2921          1.73342389        0.015041422 Secondary Carnivore
## 2922          3.49347266        1.168798094 Secondary Carnivore
## 2923          0.26236426        2.107009466   Primary Carnivore
## 2924          0.00000000        2.107009466   Primary Carnivore
## 2925          2.84490938        0.020024930  Tertiary Carnivore
## 2926          0.74193734        2.241290896   Primary Carnivore
## 2927          1.67335124        0.490146528 Secondary Carnivore
## 2928          4.02177387        2.153233085  Tertiary Carnivore
## 2929          4.50976000        6.670778349 Secondary Carnivore
## 2930          4.07414185        3.159561805   Primary Carnivore
## 2931          2.76744803        6.670778349 Secondary Carnivore
## 2932          2.96460274        3.038160131 Secondary Carnivore
## 2933          5.17868888        2.153233085 Secondary Carnivore
## 2934          1.55180880        0.009889753  Tertiary Carnivore
## 2935          1.38629436        0.063185562 Secondary Carnivore
## 2936          4.54648119        3.146907198 Secondary Carnivore
## 2937          2.37024374        0.490146528 Secondary Carnivore
## 2938          0.30748470        4.259772081           Herbivore
## 2939          2.01089500        0.214753881 Secondary Carnivore
## 2940          3.39450839        1.479154529   Primary Carnivore
## 2941          2.68784749        0.757060688   Primary Carnivore
## 2942          2.35801980        3.515099295 Secondary Carnivore
## 2943          3.76584050        0.009889753  Tertiary Carnivore
## 2944          0.81536481        1.251683108 Secondary Carnivore
## 2945          0.00000000        1.886232978           Herbivore
## 2946          1.28923265        0.004578480 Secondary Carnivore
## 2947          2.00512201        2.853935439   Primary Carnivore
## 2948          4.74449725        3.146907198 Secondary Carnivore
## 2949          4.03777421        6.670778349   Primary Carnivore
## 2950          4.71635371        1.168798094 Secondary Carnivore
## 2951          0.36394843        0.413477448  Tertiary Carnivore
## 2952          0.00000000        0.009889753           Herbivore
## 2953          4.94875989        7.288251436 Secondary Carnivore
## 2954          3.99636415        6.670778349 Secondary Carnivore
## 2955          1.15688120        0.004578480   Primary Carnivore
## 2956          3.51452607        1.168798094 Secondary Carnivore
## 2957          8.20305762        7.288251436 Secondary Carnivore
## 2958          0.81668960        1.705681497 Secondary Carnivore
## 2959          2.55567572        0.015041422   Primary Carnivore
## 2960          1.34547237        1.962719022 Secondary Carnivore
## 2961          2.37954613        0.004578480 Secondary Carnivore
## 2962          4.85203026        6.849625561  Tertiary Carnivore
## 2963          0.95165788        1.877421323 Secondary Carnivore
## 2964          4.74701691        0.002059853 Secondary Carnivore
## 2965          0.98954119        0.116104790 Secondary Carnivore
## 2966          7.58054668        6.670778349 Secondary Carnivore
## 2967          3.03013370        2.153233085 Secondary Carnivore
## 2968          6.27476202        7.288251436   Primary Carnivore
## 2969          4.55807858        6.670778349 Secondary Carnivore
## 2970          1.06594239        2.145288428 Secondary Carnivore
## 2971          2.39059597        1.886232978   Primary Carnivore
## 2972          5.50443683        6.942696930 Secondary Carnivore
## 2973          2.01623547        1.886232978   Primary Carnivore
## 2974          1.40609699        2.136925014 Secondary Carnivore
## 2975          0.00000000        2.404044412           Herbivore
## 2976          4.99043259        6.670778349 Secondary Carnivore
## 2977          3.44998755        1.886232978 Secondary Carnivore
## 2978          1.74221902        1.831515834 Secondary Carnivore
## 2979          0.83290912        1.315195554   Primary Carnivore
## 2980          2.67414865        1.168798094 Secondary Carnivore
## 2981          3.39785848        2.153233085 Secondary Carnivore
## 2982          3.76537743        1.886232978   Primary Carnivore
## 2983          0.53062825        2.472143654   Primary Carnivore
## 2984          3.68145194        1.014024833 Secondary Carnivore
## 2985          7.71020519        7.288251436 Secondary Carnivore
## 2986          2.18941639        1.532760019   Primary Carnivore
## 2987          1.82454929        3.226603994  Tertiary Carnivore
## 2988          1.79342475        4.047182371  Tertiary Carnivore
## 2989          6.29876541        6.849625561 Secondary Carnivore
## 2990          2.60172626        0.470853119  Tertiary Carnivore
## 2991          0.40879290        2.891851822 Secondary Carnivore
## 2992          0.00000000        0.009889753  Tertiary Carnivore
## 2993          2.70951579        1.540263127 Secondary Carnivore
## 2994          1.67147330        0.015041422   Primary Carnivore
## 2995          5.30330491        4.259772081 Secondary Carnivore
## 2996          3.64021428        1.070822001   Primary Carnivore
## 2997          1.89069942        2.075946520 Secondary Carnivore
## 2998          4.24849524        6.849625561 Secondary Carnivore
## 2999          3.97168717        4.232513096 Secondary Carnivore
## 3000          0.99694863        1.540263127   Primary Carnivore
## 3001          4.44851638        6.670778349 Secondary Carnivore
## 3002          0.00000000        0.015041422   Primary Carnivore
## 3003          2.62466859        0.004578480 Secondary Carnivore
## 3004          6.68511160        6.849625561 Secondary Carnivore
## 3005          5.30230939        6.670778349  Tertiary Carnivore
## 3006          4.50733683        2.387053327 Secondary Carnivore
## 3007          3.12236492        2.891851822 Secondary Carnivore
## 3008          6.72623340        6.942696930  Tertiary Carnivore
## 3009          1.04027671        0.116104790 Secondary Carnivore
## 3010          2.71469474        1.886232978 Secondary Carnivore
## 3011          1.30291275        0.490146528 Secondary Carnivore
## 3012          3.81771233        0.735932630 Secondary Carnivore
## 3013          2.84490938        4.259772081 Secondary Carnivore
## 3014          1.67147330        0.004578480   Primary Carnivore
## 3015          1.32441896        2.122440181 Secondary Carnivore
## 3016          1.66770682        0.490146528  Tertiary Carnivore
## 3017          1.69561561        0.009889753 Secondary Carnivore
## 3018          7.38634693        7.288251436 Secondary Carnivore
## 3019          1.45861502        0.223982763 Secondary Carnivore
## 3020          3.55820113        2.404044412 Secondary Carnivore
## 3021          3.95871573        3.473231162 Secondary Carnivore
## 3022          1.22377543        0.878396534   Primary Carnivore
## 3023          3.91800508        3.146907198  Tertiary Carnivore
## 3024          2.80336038        1.168798094 Secondary Carnivore
## 3025          1.79175947        0.878396534   Primary Carnivore
## 3026          1.75785792        0.223982763 Secondary Carnivore
## 3027          3.45568557        0.749689812   Primary Carnivore
## 3028          3.68250921        3.873611973 Secondary Carnivore
## 3029          1.42310833        1.454402431 Secondary Carnivore
## 3030          5.73979291        2.153233085   Primary Carnivore
## 3031          3.08190997        0.002059853 Secondary Carnivore
## 3032          3.23474917        1.886232978 Secondary Carnivore
## 3033          5.08140436        6.670778349   Primary Carnivore
## 3034          1.04027671        0.116104790 Secondary Carnivore
## 3035          3.91202301        0.004578480  Tertiary Carnivore
## 3036          3.92197334        6.670778349   Primary Carnivore
## 3037          2.33505228        1.886232978 Secondary Carnivore
## 3038          7.83391713        6.670778349 Secondary Carnivore
## 3039          4.52601875        2.138914945  Tertiary Carnivore
## 3040          4.56076888        1.432814265 Secondary Carnivore
## 3041          3.57632647        0.470853119 Secondary Carnivore
## 3042          2.94968834        1.307030142 Secondary Carnivore
## 3043          7.17142638        6.670778349 Secondary Carnivore
## 3044          2.37954613        0.490146528  Tertiary Carnivore
## 3045          1.80500470        1.886232978 Secondary Carnivore
## 3046          2.12584791        3.515099295 Secondary Carnivore
## 3047          4.80541352        4.094232049 Secondary Carnivore
## 3048          1.68639895        0.130455954 Secondary Carnivore
## 3049          6.91214563        6.670778349 Secondary Carnivore
## 3050          5.57473625        3.473231162   Primary Carnivore
## 3051          7.21604848        6.849625561 Secondary Carnivore
## 3052          2.43562887        2.853935439 Secondary Carnivore
## 3053          2.07693841        0.735932630 Secondary Carnivore
## 3054          1.28093385        0.130455954  Tertiary Carnivore
## 3055          1.41342303        0.413477448 Secondary Carnivore
## 3056          4.26310232        2.433189939  Tertiary Carnivore
## 3057          7.68959991        6.849625561 Secondary Carnivore
## 3058          4.26267988        7.288251436   Primary Carnivore
## 3059          3.49650756        1.168798094 Secondary Carnivore
## 3060          4.00551335        3.146907198 Secondary Carnivore
## 3061          4.20916024        1.886232978   Primary Carnivore
## 3062          7.83241093        6.942696930 Secondary Carnivore
## 3063          4.53646299        3.146907198 Secondary Carnivore
## 3064          8.53210151        6.849625561 Secondary Carnivore
## 3065          1.33500107        0.015041422 Secondary Carnivore
## 3066          2.82731362        0.002344505 Secondary Carnivore
## 3067          4.70048037        6.670778349 Secondary Carnivore
## 3068          4.35388433        1.168798094 Secondary Carnivore
## 3069          4.61541750        3.473231162  Tertiary Carnivore
## 3070          1.42069579        0.214753881 Secondary Carnivore
## 3071          1.06471074        0.305596011  Tertiary Carnivore
## 3072          5.16478597        7.288251436 Secondary Carnivore
## 3073          0.00000000        0.004578480 Secondary Carnivore
## 3074          1.09192330        1.180964506 Secondary Carnivore
## 3075          0.47000363        0.147199990 Secondary Carnivore
## 3076          0.00000000        0.004578480   Primary Carnivore
## 3077          5.39816270        7.288251436  Tertiary Carnivore
## 3078          1.19392247        1.670180746   Primary Carnivore
## 3079          5.50938834        4.094232049  Tertiary Carnivore
## 3080          1.77495235        0.490146528  Tertiary Carnivore
## 3081          3.23474917        1.670180746   Primary Carnivore
## 3082          3.06339092        0.735932630 Secondary Carnivore
## 3083          3.71843826        2.387053327 Secondary Carnivore
## 3084          1.67147330        0.856029167  Tertiary Carnivore
## 3085          4.98360662        6.849625561   Primary Carnivore
## 3086          0.00000000        0.147199990 Secondary Carnivore
## 3087          1.79175947        0.223982763 Secondary Carnivore
## 3088          1.49290410        0.823328714 Secondary Carnivore
## 3089          2.94443898        0.757060688 Secondary Carnivore
## 3090          2.60268969        0.009889753   Primary Carnivore
## 3091          1.69708242        2.122440181 Secondary Carnivore
## 3092          3.43398720        0.002344505 Secondary Carnivore
## 3093          4.80745776        1.168798094   Primary Carnivore
## 3094          1.60140574        0.281204828 Secondary Carnivore
## 3095          4.56954301        6.849625561 Secondary Carnivore
## 3096          1.85629799        0.002059853 Secondary Carnivore
## 3097          2.52652832        0.015041422   Primary Carnivore
## 3098          2.16332303        0.223982763 Secondary Carnivore
## 3099          1.66770682        2.894695819 Secondary Carnivore
## 3100          4.47960696        6.849625561 Secondary Carnivore
## 3101          0.00000000        0.015041422   Primary Carnivore
## 3102          4.85203026        6.942696930 Secondary Carnivore
## 3103          5.02388052        4.094232049   Primary Carnivore
## 3104          1.85848310        0.900183757   Primary Carnivore
## 3105          6.44730586        7.288251436 Secondary Carnivore
## 3106          0.00000000        1.315195554   Primary Carnivore
## 3107          4.79579055        7.288251436   Primary Carnivore
## 3108          2.86789890        2.387053327 Secondary Carnivore
## 3109          3.15700042        2.387053327 Secondary Carnivore
## 3110          1.09192330        0.211247175 Secondary Carnivore
## 3111          1.82454929        0.063185562 Secondary Carnivore
## 3112          1.02961942        2.894695819   Primary Carnivore
## 3113          4.59208495        2.387053327 Secondary Carnivore
## 3114          3.91657264        4.232513096   Primary Carnivore
## 3115          1.76644166        4.047182371 Secondary Carnivore
## 3116          2.74071098        3.873611973 Secondary Carnivore
## 3117          0.99325177        0.878396534   Primary Carnivore
## 3118          3.26956894        2.894695819   Primary Carnivore
## 3119          3.01944880        2.853935439 Secondary Carnivore
## 3120          7.72832775        6.670778349 Secondary Carnivore
## 3121          1.12167756        0.015041422   Primary Carnivore
## 3122          1.08180517        0.211247175 Secondary Carnivore
## 3123          0.83290912        0.470853119  Tertiary Carnivore
## 3124          4.12713439        0.004578480  Tertiary Carnivore
## 3125          0.00000000        1.126655451   Primary Carnivore
## 3126          3.58629287        6.670778349   Primary Carnivore
## 3127          0.01064316        0.305596011  Tertiary Carnivore
## 3128          1.38629436        0.020024930  Tertiary Carnivore
## 3129          1.24126859        0.561550440 Secondary Carnivore
## 3130          5.48188814        6.670778349 Secondary Carnivore
## 3131          7.34018684        6.942696930  Tertiary Carnivore
## 3132          1.32972401        0.015041422  Tertiary Carnivore
## 3133          6.06092531        2.610718759 Secondary Carnivore
## 3134          7.88615659        6.670778349 Secondary Carnivore
## 3135          4.25844557        0.002059853 Secondary Carnivore
## 3136          8.12346889        7.288251436 Secondary Carnivore
## 3137          1.14740245        0.015041422 Secondary Carnivore
## 3138          6.83936937        6.849625561 Secondary Carnivore
## 3139          6.41345896        4.094232049 Secondary Carnivore
## 3140          3.92395158        2.277308093   Primary Carnivore
## 3141          3.54673969        6.670778349 Secondary Carnivore
## 3142          3.56953270        2.387053327 Secondary Carnivore
## 3143          0.00000000        0.130455954 Secondary Carnivore
## 3144          4.41642806        6.670778349 Secondary Carnivore
## 3145          3.21112587        3.651616415 Secondary Carnivore
## 3146          3.01553490        0.015041422  Tertiary Carnivore
## 3147          4.29959566        2.153233085   Primary Carnivore
## 3148          4.83628191        6.849625561 Secondary Carnivore
## 3149          4.24769492        3.873611973 Secondary Carnivore
## 3150          3.91921707        1.506685742 Secondary Carnivore
## 3151          0.26236426        2.024989105   Primary Carnivore
## 3152          1.40609699        0.305596011  Tertiary Carnivore
## 3153          0.00000000        1.459857720   Primary Carnivore
## 3154          5.14166356        7.288251436  Tertiary Carnivore
## 3155          3.28057281        2.433189939 Secondary Carnivore
## 3156          4.45781801        7.288251436   Primary Carnivore
## 3157          4.27527626        6.670778349   Primary Carnivore
## 3158          7.52736356        7.288251436 Secondary Carnivore
## 3159          4.23555473        4.094232049 Secondary Carnivore
## 3160          0.02078254        1.180964506 Secondary Carnivore
## 3161          0.85441533        2.153233085           Herbivore
## 3162          0.00000000        0.130455954 Secondary Carnivore
## 3163          1.99877364        0.015041422  Tertiary Carnivore
## 3164          0.00000000        3.146907198   Primary Carnivore
## 3165          7.95384545        6.849625561 Secondary Carnivore
## 3166          2.64617480        0.305596011  Tertiary Carnivore
## 3167          3.12236492        3.038160131 Secondary Carnivore
## 3168          0.00000000        0.340191127   Primary Carnivore
## 3169          4.41558229        3.943759073 Secondary Carnivore
## 3170          3.70179568        0.735932630   Primary Carnivore
## 3171          4.56017282        3.146907198 Secondary Carnivore
## 3172          2.13416644        1.742111989 Secondary Carnivore
## 3173          6.77445243        6.670778349 Secondary Carnivore
## 3174          2.54160199        2.050338578   Primary Carnivore
## 3175          2.08815348        0.009889753           Herbivore
## 3176          2.89668512        2.136925014 Secondary Carnivore
## 3177          2.10413415        1.886232978 Secondary Carnivore
## 3178          4.71573613        3.304296954 Secondary Carnivore
## 3179          7.34665516        7.288251436 Secondary Carnivore
## 3180          5.22810947        1.168798094   Primary Carnivore
## 3181          2.21920348        0.223982763 Secondary Carnivore
## 3182          2.79116511        1.886232978   Primary Carnivore
## 3183          2.56240767        2.075946520   Primary Carnivore
## 3184          2.84490938        3.473231162  Tertiary Carnivore
## 3185          1.52388002        1.532760019 Secondary Carnivore
## 3186          3.63663834        3.651616415   Primary Carnivore
## 3187          2.36368019        0.015041422   Primary Carnivore
## 3188          3.92789635        6.849625561   Primary Carnivore
## 3189          2.91695959        2.433189939 Secondary Carnivore
## 3190          6.52590904        6.670778349 Secondary Carnivore
## 3191          2.45958884        0.015041422   Primary Carnivore
## 3192          2.59525471        3.473231162 Secondary Carnivore
## 3193          7.61386804        6.670778349 Secondary Carnivore
## 3194          2.27212589        1.532760019   Primary Carnivore
## 3195          3.68637632        2.153233085 Secondary Carnivore
## 3196          0.00000000        0.211247175 Secondary Carnivore
## 3197          3.33932198        2.404044412 Secondary Carnivore
## 3198          1.90389697        0.211247175 Secondary Carnivore
## 3199          3.25424297        3.515099295 Secondary Carnivore
## 3200          2.98568194        4.121930401   Primary Carnivore
## 3201          2.82137889        2.153233085 Secondary Carnivore
## 3202          3.15700042        1.168798094 Secondary Carnivore
## 3203          5.61312811        6.849625561   Primary Carnivore
## 3204          3.23080440        2.241290896   Primary Carnivore
## 3205          2.05412373        0.856029167 Secondary Carnivore
## 3206          2.47653840        0.885298676  Tertiary Carnivore
## 3207          3.24259235        0.749689812   Primary Carnivore
## 3208          3.23867845        3.146907198 Secondary Carnivore
## 3209          2.27829240        2.387053327  Tertiary Carnivore
## 3210          5.44570235        1.168798094   Primary Carnivore
## 3211          5.77455155        6.942696930  Tertiary Carnivore
## 3212          4.57367952        4.094232049 Secondary Carnivore
## 3213          6.28897318        6.670778349 Secondary Carnivore
## 3214          4.86375810        1.673740129   Primary Carnivore
## 3215          2.81367068        2.891851822  Tertiary Carnivore
## 3216          0.00000000        0.002344505 Secondary Carnivore
## 3217          1.20297230        0.015041422   Primary Carnivore
## 3218          2.83749827        2.853935439 Secondary Carnivore
## 3219          7.05142263        6.670778349 Secondary Carnivore
## 3220          3.25037449        0.020024930   Primary Carnivore
## 3221          1.00063188        1.711701702 Secondary Carnivore
## 3222          7.78130551        6.670778349 Secondary Carnivore
## 3223          7.82043952        7.288251436 Secondary Carnivore
## 3224          8.06495089        4.094232049 Secondary Carnivore
## 3225          0.79750720        0.413477448 Secondary Carnivore
## 3226          0.00000000        1.673740129           Herbivore
## 3227          4.51085951        7.288251436 Secondary Carnivore
## 3228          2.25023861        0.214753881 Secondary Carnivore
## 3229          2.82137889        0.009889753   Primary Carnivore
## 3230          8.50329709        7.288251436 Secondary Carnivore
## 3231          4.58598737        4.094232049 Secondary Carnivore
## 3232          3.79098468        1.168798094 Secondary Carnivore
## 3233          0.00000000        0.015041422   Primary Carnivore
## 3234          2.54944517        0.015041422  Tertiary Carnivore
## 3235          5.52146092        6.942696930 Secondary Carnivore
## 3236          2.94443898        2.894695819   Primary Carnivore
## 3237          1.62136648        1.180964506  Tertiary Carnivore
## 3238          3.72810017        1.673740129 Secondary Carnivore
## 3239          3.66612247        6.849625561 Secondary Carnivore
## 3240          0.83290912        0.147199990  Tertiary Carnivore
## 3241          1.66203036        0.009889753  Tertiary Carnivore
## 3242          4.30000280        6.849625561 Secondary Carnivore
## 3243          1.69009582        0.015041422 Secondary Carnivore
## 3244          3.88362353        6.849625561   Primary Carnivore
## 3245          2.54944517        0.044241443   Primary Carnivore
## 3246          0.63180355        4.047182371   Primary Carnivore
## 3247          3.87120101        1.673740129 Secondary Carnivore
## 3248          3.59731226        2.153233085 Secondary Carnivore
## 3249          4.66343909        6.849625561 Secondary Carnivore
## 3250          5.57215403        4.259772081   Primary Carnivore
## 3251          1.27256560        0.823328714 Secondary Carnivore
## 3252          0.82855182        1.877421323 Secondary Carnivore
## 3253          6.11146734        7.288251436   Primary Carnivore
## 3254          0.00000000        0.116104790 Secondary Carnivore
## 3255          4.98360662        4.094232049   Primary Carnivore
## 3256          4.46579317        3.473231162   Primary Carnivore
## 3257          5.35185813        7.288251436  Tertiary Carnivore
## 3258          1.99741771        0.490146528  Tertiary Carnivore
## 3259          3.81683282        2.153233085 Secondary Carnivore
## 3260          0.30748470        0.211247175  Tertiary Carnivore
## 3261          6.27795841        6.670778349 Secondary Carnivore
## 3262          1.22671229        0.305596011  Tertiary Carnivore
## 3263          0.69314718        0.470853119  Tertiary Carnivore
## 3264          2.91158951        1.962719022 Secondary Carnivore
## 3265          3.93573953        1.168798094 Secondary Carnivore
## 3266          2.77819796        0.015041422   Primary Carnivore
## 3267          4.29728541        4.094232049 Secondary Carnivore
## 3268          0.00000000        0.009889753  Tertiary Carnivore
## 3269          7.22875123        6.670778349 Secondary Carnivore
## 3270          5.55902642        1.168798094   Primary Carnivore
## 3271          7.02028007        6.670778349 Secondary Carnivore
## 3272          2.37861978        2.387053327 Secondary Carnivore
## 3273          4.48863637        6.670778349 Secondary Carnivore
## 3274          0.78845736        0.130455954 Secondary Carnivore
## 3275          0.40546511        2.894695819   Primary Carnivore
## 3276          7.34665516        7.288251436 Secondary Carnivore
## 3277          0.00000000        1.459857720   Primary Carnivore
## 3278          0.00000000        0.002344505 Secondary Carnivore
## 3279          4.92308559        7.288251436 Secondary Carnivore
## 3280          3.36729583        1.168798094 Secondary Carnivore
## 3281          1.78170913        0.856029167   Primary Carnivore
## 3282          6.08904488        7.288251436 Secondary Carnivore
## 3283          2.16676537        0.015041422  Tertiary Carnivore
## 3284          3.75560309        6.942696930 Secondary Carnivore
## 3285          0.83290912        4.262479896 Secondary Carnivore
## 3286          1.05779029        2.122440181 Secondary Carnivore
## 3287          4.51085951        7.288251436 Secondary Carnivore
## 3288          1.93152141        0.490146528 Secondary Carnivore
## 3289          2.03339760        1.742111989 Secondary Carnivore
## 3290          3.68135119        2.387053327 Secondary Carnivore
## 3291          2.56510319        2.254856321   Primary Carnivore
## 3292          5.64897424        4.259772081 Secondary Carnivore
## 3293          3.51868408        1.886232978 Secondary Carnivore
## 3294          2.54944517        0.281204828 Secondary Carnivore
## 3295          5.89715387        6.942696930  Tertiary Carnivore
## 3296          2.61739583        1.742111989 Secondary Carnivore
## 3297          2.24191003        6.670778349 Secondary Carnivore
## 3298          7.47363711        7.288251436 Secondary Carnivore
## 3299          1.96571278        0.856029167 Secondary Carnivore
## 3300          0.40546511        0.063185562 Secondary Carnivore
## 3301          6.19031541        6.942696930  Tertiary Carnivore
## 3302          2.28033948        1.532760019   Primary Carnivore
## 3303          2.13947776        4.047182371 Secondary Carnivore
## 3304          3.49650756        3.146907198 Secondary Carnivore
## 3305          0.53062825        0.130455954  Tertiary Carnivore
## 3306          3.95316495        6.670778349 Secondary Carnivore
## 3307          3.73050113        6.670778349 Secondary Carnivore
## 3308          3.05870707        3.038160131 Secondary Carnivore
## 3309          8.44080878        6.849625561 Secondary Carnivore
## 3310          2.32630162        2.845177164 Secondary Carnivore
## 3311          1.48160454        0.130455954 Secondary Carnivore
## 3312          3.57234564        3.168005566 Secondary Carnivore
## 3313          6.59441346        7.288251436  Tertiary Carnivore
## 3314          4.60616969        4.259772081  Tertiary Carnivore
## 3315          1.54756251        0.015041422 Secondary Carnivore
## 3316          4.22537282        1.168798094 Secondary Carnivore
## 3317          0.00000000        0.470853119  Tertiary Carnivore
## 3318          2.98061864        2.387053327 Secondary Carnivore
## 3319          3.76352300        1.168798094 Secondary Carnivore
## 3320          3.19179236        1.540263127 Secondary Carnivore
## 3321          4.01096295        6.670778349 Secondary Carnivore
## 3322          5.11198779        4.094232049  Tertiary Carnivore
## 3323          1.16315081        1.126655451   Primary Carnivore
## 3324          1.19392247        0.211247175 Secondary Carnivore
## 3325          7.39079852        7.288251436 Secondary Carnivore
## 3326          4.66861436        2.153233085 Secondary Carnivore
## 3327          1.54756251        0.009889753  Tertiary Carnivore
## 3328          6.06610809        7.288251436  Tertiary Carnivore
## 3329          4.04480412        6.942696930  Tertiary Carnivore
## 3330          4.98561830        3.304296954   Primary Carnivore
## 3331          6.77502357        6.849625561 Secondary Carnivore
## 3332          4.62497281        3.168005566 Secondary Carnivore
## 3333          2.58021683        1.532760019   Primary Carnivore
## 3334          4.98360662        4.094232049   Primary Carnivore
## 3335          2.63905733        2.153233085 Secondary Carnivore
## 3336          5.22035583        3.146907198 Secondary Carnivore
## 3337          7.13297667        6.670778349 Secondary Carnivore
## 3338          2.58776404        0.757060688 Secondary Carnivore
## 3339          2.11709853        3.515099295 Secondary Carnivore
## 3340          2.36837283        0.735932630 Secondary Carnivore
## 3341          4.18813844        6.849625561  Tertiary Carnivore
## 3342          0.00000000        0.004578480 Secondary Carnivore
## 3343          3.41444261        1.742111989 Secondary Carnivore
## 3344          5.13603370        1.673740129 Secondary Carnivore
## 3345          1.80664808        0.116104790 Secondary Carnivore
## 3346          3.39114705        1.670180746 Secondary Carnivore
## 3347          1.30019166        2.845177164 Secondary Carnivore
## 3348          3.13113691        4.259772081 Secondary Carnivore
## 3349          2.64326276        0.490146528 Secondary Carnivore
## 3350          0.00000000        0.015041422 Secondary Carnivore
## 3351          4.08260931        6.670778349 Secondary Carnivore
## 3352          5.02388052        6.942696930 Secondary Carnivore
## 3353          1.04027671        0.885298676 Secondary Carnivore
## 3354          3.94931879        7.161415474 Secondary Carnivore
## 3355          0.00000000        0.002059853 Secondary Carnivore
## 3356          2.14943391        0.735932630 Secondary Carnivore
## 3357          7.29369772        7.288251436 Secondary Carnivore
## 3358          1.53686722        0.015041422  Tertiary Carnivore
## 3359          0.00000000        0.147199990 Secondary Carnivore
## 3360          2.11142459        0.900183757 Secondary Carnivore
## 3361          1.82454929        0.490146528  Tertiary Carnivore
## 3362          0.83290912        1.831515834 Secondary Carnivore
## 3363          4.75780543        4.094232049 Secondary Carnivore
## 3364          2.74084002        1.886232978 Secondary Carnivore
## 3365          6.03954017        1.886232978 Secondary Carnivore
## 3366          0.17395331        1.532760019  Tertiary Carnivore
## 3367          3.28091122        3.146907198 Secondary Carnivore
## 3368          5.35185813        7.288251436  Tertiary Carnivore
## 3369          0.00000000        2.404044412           Herbivore
## 3370          1.19392247        0.147199990 Secondary Carnivore
## 3371          4.44968528        1.168798094  Tertiary Carnivore
## 3372          4.82807371        1.673740129   Primary Carnivore
## 3373          0.00000000        1.877421323 Secondary Carnivore
## 3374          7.68303529        6.849625561 Secondary Carnivore
## 3375          1.85207032        0.211247175 Secondary Carnivore
## 3376          0.19885086        0.305596011 Secondary Carnivore
## 3377          1.65822808        0.885298676  Tertiary Carnivore
## 3378          1.84292776        1.962719022 Secondary Carnivore
## 3379          2.58021683        2.136925014 Secondary Carnivore
## 3380          5.77299754        1.886232978   Primary Carnivore
## 3381          4.45771372        1.886232978   Primary Carnivore
## 3382          2.77102500        1.962719022  Tertiary Carnivore
## 3383          3.94352167        3.146907198  Tertiary Carnivore
## 3384          2.95491028        2.472143654   Primary Carnivore
## 3385          7.98214318        6.849625561 Secondary Carnivore
## 3386          4.79892612        2.387053327   Primary Carnivore
## 3387          0.92821930        6.942696930           Herbivore
## 3388          7.83494639        6.670778349 Secondary Carnivore
## 3389          7.03341830        6.670778349 Secondary Carnivore
## 3390          1.32175584        2.254856321 Secondary Carnivore
## 3391          6.78649119        6.670778349  Tertiary Carnivore
## 3392          0.00000000        1.670180746   Primary Carnivore
## 3393          0.00000000        2.404044412           Herbivore
## 3394          5.90511659        1.886232978   Primary Carnivore
## 3395          4.61485315        1.432814265 Secondary Carnivore
## 3396          4.22753423        1.506685742   Primary Carnivore
## 3397          7.39184671        7.288251436 Secondary Carnivore
## 3398          1.28923265        0.856029167 Secondary Carnivore
## 3399          1.51292701        0.015041422 Secondary Carnivore
## 3400          0.97455964        0.305596011  Tertiary Carnivore
## 3401          7.97968130        7.288251436 Secondary Carnivore
## 3402          1.18784342        0.561550440 Secondary Carnivore
## 3403          4.06355884        2.138914945 Secondary Carnivore
## 3404          3.19043520        2.610718759 Secondary Carnivore
## 3405          1.76985463        0.015041422  Tertiary Carnivore
## 3406          5.38587026        0.004578480  Tertiary Carnivore
## 3407          1.32441896        4.047182371 Secondary Carnivore
## 3408          0.83290912        5.169038067   Primary Carnivore
## 3409          2.56617937        1.962719022 Secondary Carnivore
## 3410          2.17815501        2.845177164 Secondary Carnivore
## 3411          4.96284463        6.670778349  Tertiary Carnivore
## 3412          2.16217294        0.009889753   Primary Carnivore
## 3413          0.90421815        0.305596011  Tertiary Carnivore
## 3414          0.00000000        1.886232978           Herbivore
## 3415          1.34547237        0.856029167 Secondary Carnivore
## 3416          0.00000000        0.004578480  Tertiary Carnivore
## 3417          3.57660621        1.432814265  Tertiary Carnivore
## 3418          0.43048287        0.856029167  Tertiary Carnivore
## 3419          7.98132323        6.670778349 Secondary Carnivore
## 3420          3.66867675        0.749689812   Primary Carnivore
## 3421          1.19392247        1.532760019  Tertiary Carnivore
## 3422          4.18801704        3.651616415   Primary Carnivore
## 3423          1.44926916        1.251683108 Secondary Carnivore
## 3424          4.50534985        4.094232049  Tertiary Carnivore
## 3425          2.44633906        0.470853119 Secondary Carnivore
## 3426          4.34510328        6.670778349 Secondary Carnivore
## 3427          4.84418709        3.146907198 Secondary Carnivore
## 3428          1.49962305        0.561550440 Secondary Carnivore
## 3429          6.67997600        6.670778349 Secondary Carnivore
## 3430          2.11384297        0.009889753 Secondary Carnivore
## 3431          3.50453585        3.873611973  Tertiary Carnivore
## 3432          8.49631679        6.849625561 Secondary Carnivore
## 3433          5.86646806        2.153233085  Tertiary Carnivore
## 3434          0.37156356        0.130455954 Secondary Carnivore
## 3435          0.00000000        1.981883583   Primary Carnivore
## 3436          4.31348009        4.259772081 Secondary Carnivore
## 3437          2.82137889        1.168798094 Secondary Carnivore
## 3438          2.65324196        0.002344505 Secondary Carnivore
## 3439          3.85014760        6.849625561 Secondary Carnivore
## 3440          3.86157146        0.015041422 Secondary Carnivore
## 3441          3.26575941        2.387053327 Secondary Carnivore
## 3442          4.62497281        4.259772081 Secondary Carnivore
## 3443          2.94443898        0.004578480  Tertiary Carnivore
## 3444          4.39444915        7.288251436 Secondary Carnivore
## 3445          0.99325177        0.130455954  Tertiary Carnivore
## 3446          4.00369019        1.307030142 Secondary Carnivore
## 3447          0.53999600        0.413477448  Tertiary Carnivore
## 3448          0.26236426        1.920179330   Primary Carnivore
## 3449          3.30310667        1.506685742 Secondary Carnivore
## 3450          0.00000000        0.130455954 Secondary Carnivore
## 3451          4.21331208        1.886232978 Secondary Carnivore
## 3452          5.75574221        1.168798094 Secondary Carnivore
## 3453          1.56024767        0.009889753   Primary Carnivore
## 3454          2.02683159        0.885298676  Tertiary Carnivore
## 3455          4.75531284        3.943759073 Secondary Carnivore
## 3456          4.99767163        4.232513096 Secondary Carnivore
## 3457          2.22354189        0.015041422 Secondary Carnivore
## 3458          3.26575941        5.169038067   Primary Carnivore
## 3459          1.71918878        0.856029167   Primary Carnivore
## 3460          1.13462273        2.136925014 Secondary Carnivore
## 3461          0.58778666        0.147199990 Secondary Carnivore
## 3462          1.84150156        1.711701702  Tertiary Carnivore
## 3463          2.97041447        2.387053327 Secondary Carnivore
## 3464          0.00000000        0.002344505 Secondary Carnivore
## 3465          0.00000000        2.404044412           Herbivore
## 3466          2.77258872        0.116104790 Secondary Carnivore
## 3467          1.85629799        0.490146528  Tertiary Carnivore
## 3468          4.59410924        3.168005566 Secondary Carnivore
## 3469          5.56452041        7.288251436  Tertiary Carnivore
## 3470          8.05360097        6.670778349 Secondary Carnivore
## 3471          3.24649099        1.307030142 Secondary Carnivore
## 3472          1.70292826        0.015041422 Secondary Carnivore
## 3473          3.88752537        0.749689812   Primary Carnivore
## 3474          0.00000000        0.015041422  Tertiary Carnivore
## 3475          5.18178355        6.849625561 Secondary Carnivore
## 3476          2.40865536        1.540263127 Secondary Carnivore
## 3477          2.90690106        3.515099295 Secondary Carnivore
## 3478          2.61739583        0.757060688  Tertiary Carnivore
## 3479          2.52572864        0.735932630 Secondary Carnivore
## 3480          3.36037539        2.891851822  Tertiary Carnivore
## 3481          3.35340672        5.169038067   Primary Carnivore
## 3482          0.00000000        1.886232978           Herbivore
## 3483          1.98787435        2.241290896   Primary Carnivore
## 3484          2.68852753        3.226603994 Secondary Carnivore
## 3485          2.58776404        2.136925014 Secondary Carnivore
## 3486          1.35325451        2.404044412 Secondary Carnivore
## 3487          4.70953020        7.288251436 Secondary Carnivore
## 3488          7.35212054        6.849625561 Secondary Carnivore
## 3489          2.56494936        1.315195554 Secondary Carnivore
## 3490          5.81889528        6.849625561 Secondary Carnivore
## 3491          1.79275897        0.116104790 Secondary Carnivore
## 3492          1.62924054        0.147199990 Secondary Carnivore
## 3493          7.75022723        6.670778349 Secondary Carnivore
## 3494          3.79773386        4.094232049 Secondary Carnivore
## 3495          0.95551145        0.490146528  Tertiary Carnivore
## 3496          1.53255687        2.075946520 Secondary Carnivore
## 3497          5.14813381        1.886232978   Primary Carnivore
## 3498          0.00000000        1.886232978           Herbivore
## 3499          0.33647224        2.894695819   Primary Carnivore
## 3500          3.28578653        0.015041422 Secondary Carnivore
## 3501          2.29253476        1.315195554   Primary Carnivore
## 3502          7.29715875        6.849625561 Secondary Carnivore
## 3503          0.26236426        2.024989105   Primary Carnivore
## 3504          0.68813464        1.251683108 Secondary Carnivore
## 3505          1.02961942        0.470853119  Tertiary Carnivore
## 3506          1.26976054        1.180964506 Secondary Carnivore
## 3507          4.04305127        6.670778349  Tertiary Carnivore
## 3508          3.96840334        2.050338578   Primary Carnivore
## 3509          5.72227706        6.849625561 Secondary Carnivore
## 3510          4.79579055        7.288251436 Secondary Carnivore
## 3511          7.40482675        6.670778349 Secondary Carnivore
## 3512          0.78845736        7.161415474   Primary Carnivore
## 3513          5.57215403        4.259772081   Primary Carnivore
## 3514          3.51452607        1.886232978 Secondary Carnivore
## 3515          1.87640694        0.885298676  Tertiary Carnivore
## 3516          2.63905733        0.002059853 Secondary Carnivore
## 3517          0.00000000        2.894695819   Primary Carnivore
## 3518          3.40452517        1.886232978 Secondary Carnivore
## 3519          0.00000000        0.002059853 Secondary Carnivore
## 3520          2.24918432        0.009889753   Primary Carnivore
## 3521          1.66392610        0.211247175 Secondary Carnivore
## 3522          0.06765865        0.305596011 Secondary Carnivore
## 3523          2.27212589        1.670180746 Secondary Carnivore
## 3524          2.77881927        0.885298676  Tertiary Carnivore
## 3525          6.58340922        4.259772081  Tertiary Carnivore
## 3526          0.00000000        1.670180746   Primary Carnivore
## 3527          1.45161383        1.532760019 Secondary Carnivore
## 3528          1.99333884        1.307030142 Secondary Carnivore
## 3529          0.00000000        0.002059853 Secondary Carnivore
## 3530          2.04122033        0.063185562 Secondary Carnivore
## 3531          2.23537634        0.015041422 Secondary Carnivore
## 3532          2.58021683        2.891851822 Secondary Carnivore
## 3533          4.25134831        1.168798094 Secondary Carnivore
## 3534          0.00000000        2.404044412           Herbivore
## 3535          1.47476301        0.900183757 Secondary Carnivore
## 3536          6.77490937        6.849625561 Secondary Carnivore
## 3537          3.42816383        0.015041422   Primary Carnivore
## 3538          1.61541998        0.009889753  Tertiary Carnivore
## 3539          6.90505163        6.849625561 Secondary Carnivore
## 3540          1.66770682        0.002344505 Secondary Carnivore
## 3541          3.03013370        3.146907198 Secondary Carnivore
## 3542          1.81156210        0.211247175 Secondary Carnivore
## 3543          1.01884732        0.223982763 Secondary Carnivore
## 3544          1.51072194        0.015041422  Tertiary Carnivore
## 3545          5.68357977        4.094232049  Tertiary Carnivore
## 3546          4.79579055        7.288251436 Secondary Carnivore
## 3547          1.19996478        0.015041422  Tertiary Carnivore
## 3548          7.45066080        7.288251436 Secondary Carnivore
## 3549          2.47863704        1.711701702   Primary Carnivore
## 3550          1.31640823        0.214753881 Secondary Carnivore
## 3551          6.08677473        4.094232049 Secondary Carnivore
## 3552          3.51443678        2.610718759 Secondary Carnivore
## 3553          2.92316158        3.473231162 Secondary Carnivore
## 3554          1.77495235        0.002344505 Secondary Carnivore
## 3555          0.00000000        1.877421323 Secondary Carnivore
## 3556          2.32727771        0.009889753           Herbivore
## 3557          1.43983513        0.305596011  Tertiary Carnivore
## 3558          5.21553341        0.735932630   Primary Carnivore
## 3559          4.19166787        2.433189939 Secondary Carnivore
## 3560          1.47796155        1.711701702  Tertiary Carnivore
## 3561          2.28238239        1.315195554 Secondary Carnivore
## 3562          2.55722731        1.315195554 Secondary Carnivore
## 3563          3.16665579        0.470853119 Secondary Carnivore
## 3564          0.00000000        0.002344505  Tertiary Carnivore
## 3565          2.79116511        0.009889753           Herbivore
## 3566          1.75958057        4.262479896 Secondary Carnivore
## 3567          1.29746315        0.413477448 Secondary Carnivore
## 3568          2.85647021        1.886232978 Secondary Carnivore
## 3569          2.85070650        0.063185562 Secondary Carnivore
## 3570          5.18505908        1.432814265 Secondary Carnivore
## 3571          1.20297230        1.831515834  Tertiary Carnivore
## 3572          3.26956894        1.886232978 Secondary Carnivore
## 3573          3.80443779        6.670778349   Primary Carnivore
## 3574          5.01727984        7.288251436  Tertiary Carnivore
## 3575          3.85227300        6.670778349 Secondary Carnivore
## 3576          3.27222700        0.735932630   Primary Carnivore
## 3577          1.08180517        0.116104790 Secondary Carnivore
## 3578          1.89611948        0.885298676 Secondary Carnivore
## 3579          1.66770682        0.490146528 Secondary Carnivore
## 3580          4.27495632        4.232513096  Tertiary Carnivore
## 3581          5.77827133        6.670778349  Tertiary Carnivore
## 3582          0.00000000        1.673740129           Herbivore
## 3583          1.48387469        0.885298676 Secondary Carnivore
## 3584          3.55820113        2.153233085           Herbivore
## 3585          0.78845736        2.145288428 Secondary Carnivore
## 3586          2.00417906        0.211247175 Secondary Carnivore
## 3587          8.42299240        6.849625561 Secondary Carnivore
## 3588          6.01859321        7.288251436  Tertiary Carnivore
## 3589          0.00000000        0.002059853 Secondary Carnivore
## 3590          1.95727391        0.004578480   Primary Carnivore
## 3591          1.62924054        0.223982763 Secondary Carnivore
## 3592          1.04027671        1.454402431 Secondary Carnivore
## 3593          5.44241771        2.153233085 Secondary Carnivore
## 3594          3.06339092        3.943759073 Secondary Carnivore
## 3595          2.53369681        1.981883583   Primary Carnivore
## 3596          4.09434456        7.288251436 Secondary Carnivore
## 3597          3.28776736        2.433189939  Tertiary Carnivore
## 3598          5.30330491        7.288251436 Secondary Carnivore
## 3599          0.00000000        0.009889753 Secondary Carnivore
## 3600          5.28826703        2.153233085  Tertiary Carnivore
## 3601          0.95551145        0.211247175 Secondary Carnivore
## 3602          1.67335124        0.735932630 Secondary Carnivore
## 3603          2.70136121        3.515099295 Secondary Carnivore
## 3604          1.18172720        2.387053327 Secondary Carnivore
## 3605          2.41126011        1.014024833 Secondary Carnivore
## 3606          2.32238772        0.223982763 Secondary Carnivore
## 3607          7.51261754        6.942696930 Secondary Carnivore
## 3608          0.00000000        0.009889753 Secondary Carnivore
## 3609          2.63905733        0.002059853 Secondary Carnivore
## 3610          0.91629073        0.063185562 Secondary Carnivore
## 3611          3.02456266        2.254856321 Secondary Carnivore
## 3612          1.41098697        0.147199990 Secondary Carnivore
## 3613          3.78940329        0.214753881  Tertiary Carnivore
## 3614          0.83290912        0.130455954 Secondary Carnivore
## 3615          7.62525355        6.849625561 Secondary Carnivore
## 3616          3.34990409        2.387053327   Primary Carnivore
## 3617          4.61512052        7.288251436  Tertiary Carnivore
## 3618          3.55010577        1.540263127 Secondary Carnivore
## 3619          1.24990174        2.241290896   Primary Carnivore
## 3620          7.22329568        7.288251436 Secondary Carnivore
## 3621          4.71849887        3.146907198 Secondary Carnivore
## 3622          3.92296295        2.138914945 Secondary Carnivore
## 3623          3.28091122        1.168798094   Primary Carnivore
## 3624          2.38139627        2.136925014 Secondary Carnivore
## 3625          1.34547237        0.885298676 Secondary Carnivore
## 3626          2.23697934        0.490146528   Primary Carnivore
## 3627          2.91463067        2.136925014 Secondary Carnivore
## 3628          4.30217141        0.002059853 Secondary Carnivore
## 3629          1.13140211        0.470853119  Tertiary Carnivore
## 3630          3.38113072        1.632888289 Secondary Carnivore
## 3631          1.53901545        2.853935439 Secondary Carnivore
## 3632          2.98061864        0.885298676  Tertiary Carnivore
## 3633          1.95868534        0.211247175 Secondary Carnivore
## 3634          1.68639895        7.161415474 Secondary Carnivore
## 3635          3.09557761        0.009889753   Primary Carnivore
## 3636          2.63991411        2.254856321   Primary Carnivore
## 3637          0.00000000        0.305596011 Secondary Carnivore
## 3638          3.36037539        1.168798094 Secondary Carnivore
## 3639          1.59533899        0.413477448 Secondary Carnivore
## 3640          3.56133013        1.886232978 Secondary Carnivore
## 3641          4.65396035        1.168798094 Secondary Carnivore
## 3642          0.00000000        1.459857720   Primary Carnivore
## 3643          7.34968088        6.849625561 Secondary Carnivore
## 3644          4.68213123        6.670778349  Tertiary Carnivore
## 3645          1.31908561        0.004578480   Primary Carnivore
## 3646          8.85237889        7.288251436 Secondary Carnivore
## 3647          0.93216408        4.094232049           Herbivore
## 3648          4.86753445        2.153233085 Secondary Carnivore
## 3649          0.00000000        0.281204828 Secondary Carnivore
## 3650          2.12823171        0.211247175 Secondary Carnivore
## 3651          5.67194775        1.886232978 Secondary Carnivore
## 3652          0.82417544        1.831515834   Primary Carnivore
## 3653          0.63657683        4.259772081           Herbivore
## 3654          6.61069604        6.942696930 Secondary Carnivore
## 3655          3.42426265        3.651616415  Tertiary Carnivore
## 3656          3.73440238        3.943759073 Secondary Carnivore
## 3657          3.66612247        0.749689812   Primary Carnivore
## 3658          2.08193842        0.004578480  Tertiary Carnivore
## 3659          0.00000000        2.145288428 Secondary Carnivore
## 3660          3.77045944        2.050338578   Primary Carnivore
## 3661          8.52734152        7.288251436 Secondary Carnivore
## 3662          3.71571611        2.433189939 Secondary Carnivore
## 3663          3.06339092        0.735932630 Secondary Carnivore
## 3664          2.61520365        3.226603994  Tertiary Carnivore
## 3665          7.20630310        6.849625561 Secondary Carnivore
## 3666          2.83321334        3.146907198 Secondary Carnivore
## 3667          2.80940270        1.420705940 Secondary Carnivore
## 3668          6.99062476        7.288251436 Secondary Carnivore
## 3669          4.47847253        1.168798094 Secondary Carnivore
## 3670          1.68639895        0.116104790 Secondary Carnivore
## 3671          0.00000000        0.009889753           Herbivore
## 3672          2.50470928        1.432814265 Secondary Carnivore
## 3673          6.66134310        6.670778349 Secondary Carnivore
## 3674          0.87546874        0.063185562 Secondary Carnivore
## 3675          3.20453346        2.610718759  Tertiary Carnivore
## 3676          1.08518927        1.180964506  Tertiary Carnivore
## 3677          3.00071982        0.214753881  Tertiary Carnivore
## 3678          2.00552586        1.307030142 Secondary Carnivore
## 3679          1.46325540        4.094232049           Herbivore
## 3680          4.53689135        1.673740129 Secondary Carnivore
## 3681          5.25227343        7.288251436   Primary Carnivore
## 3682          3.03013370        1.670180746   Primary Carnivore
## 3683          5.25017699        3.473231162   Primary Carnivore
## 3684          3.88567903        2.387053327 Secondary Carnivore
## 3685          3.89731538        0.735932630 Secondary Carnivore
## 3686          5.54126355        3.146907198 Secondary Carnivore
## 3687          4.77912349        4.094232049  Tertiary Carnivore
## 3688          1.70402055        0.211247175 Secondary Carnivore
## 3689          2.81540872        0.757060688 Secondary Carnivore
## 3690          7.84998662        6.670778349 Secondary Carnivore
## 3691          0.00000000        0.002344505  Tertiary Carnivore
## 3692          3.94158181        3.168005566 Secondary Carnivore
## 3693          1.73342389        0.015041422 Secondary Carnivore
## 3694          3.49347266        1.168798094 Secondary Carnivore
## 3695          0.26236426        2.107009466   Primary Carnivore
## 3696          0.00000000        2.107009466   Primary Carnivore
## 3697          2.84490938        0.020024930  Tertiary Carnivore
## 3698          0.74193734        2.241290896   Primary Carnivore
## 3699          1.67335124        0.490146528 Secondary Carnivore
## 3700          4.02177387        2.153233085  Tertiary Carnivore
## 3701          4.50976000        6.670778349 Secondary Carnivore
## 3702          4.07414185        3.159561805   Primary Carnivore
## 3703          2.76744803        6.670778349 Secondary Carnivore
## 3704          2.96460274        3.038160131 Secondary Carnivore
## 3705          5.17868888        2.153233085 Secondary Carnivore
## 3706          1.55180880        0.009889753  Tertiary Carnivore
## 3707          1.38629436        0.063185562 Secondary Carnivore
## 3708          4.54648119        3.146907198 Secondary Carnivore
## 3709          2.37024374        0.490146528 Secondary Carnivore
## 3710          0.30748470        4.259772081           Herbivore
## 3711          2.01089500        0.214753881 Secondary Carnivore
## 3712          3.39450839        1.479154529   Primary Carnivore
## 3713          2.68784749        0.757060688   Primary Carnivore
## 3714          2.35801980        3.515099295 Secondary Carnivore
## 3715          3.76584050        0.009889753  Tertiary Carnivore
## 3716          0.81536481        1.251683108 Secondary Carnivore
## 3717          0.00000000        1.886232978           Herbivore
## 3718          1.28923265        0.004578480 Secondary Carnivore
## 3719          2.00512201        2.853935439   Primary Carnivore
## 3720          4.74449725        3.146907198 Secondary Carnivore
## 3721          4.03777421        6.670778349   Primary Carnivore
## 3722          4.71635371        1.168798094 Secondary Carnivore
## 3723          0.36394843        0.413477448  Tertiary Carnivore
## 3724          0.00000000        0.009889753           Herbivore
## 3725          4.94875989        7.288251436 Secondary Carnivore
## 3726          3.99636415        6.670778349 Secondary Carnivore
## 3727          1.15688120        0.004578480   Primary Carnivore
## 3728          3.51452607        1.168798094 Secondary Carnivore
## 3729          8.20305762        7.288251436 Secondary Carnivore
## 3730          0.81668960        1.705681497 Secondary Carnivore
## 3731          2.55567572        0.015041422   Primary Carnivore
## 3732          1.34547237        1.962719022 Secondary Carnivore
## 3733          2.37954613        0.004578480 Secondary Carnivore
## 3734          4.85203026        6.849625561  Tertiary Carnivore
## 3735          0.95165788        1.877421323 Secondary Carnivore
## 3736          4.74701691        0.002059853 Secondary Carnivore
## 3737          0.98954119        0.116104790 Secondary Carnivore
## 3738          7.58054668        6.670778349 Secondary Carnivore
## 3739          3.03013370        2.153233085 Secondary Carnivore
## 3740          6.27476202        7.288251436   Primary Carnivore
## 3741          4.55807858        6.670778349 Secondary Carnivore
## 3742          1.06594239        2.145288428 Secondary Carnivore
## 3743          2.39059597        1.886232978   Primary Carnivore
## 3744          5.50443683        6.942696930 Secondary Carnivore
## 3745          2.01623547        1.886232978   Primary Carnivore
## 3746          1.40609699        2.136925014 Secondary Carnivore
## 3747          0.00000000        2.404044412           Herbivore
## 3748          4.99043259        6.670778349 Secondary Carnivore
## 3749          3.44998755        1.886232978 Secondary Carnivore
## 3750          1.74221902        1.831515834 Secondary Carnivore
## 3751          0.83290912        1.315195554   Primary Carnivore
## 3752          2.67414865        1.168798094 Secondary Carnivore
## 3753          3.39785848        2.153233085 Secondary Carnivore
## 3754          3.76537743        1.886232978   Primary Carnivore
## 3755          0.53062825        2.472143654   Primary Carnivore
## 3756          3.68145194        1.014024833 Secondary Carnivore
## 3757          7.71020519        7.288251436 Secondary Carnivore
## 3758          2.18941639        1.532760019   Primary Carnivore
## 3759          1.82454929        3.226603994  Tertiary Carnivore
## 3760          1.79342475        4.047182371  Tertiary Carnivore
## 3761          6.29876541        6.849625561 Secondary Carnivore
## 3762          2.60172626        0.470853119  Tertiary Carnivore
## 3763          0.40879290        2.891851822 Secondary Carnivore
## 3764          0.00000000        0.009889753  Tertiary Carnivore
## 3765          2.70951579        1.540263127 Secondary Carnivore
## 3766          1.67147330        0.015041422   Primary Carnivore
## 3767          5.30330491        4.259772081 Secondary Carnivore
## 3768          3.64021428        1.070822001   Primary Carnivore
## 3769          1.89069942        2.075946520 Secondary Carnivore
## 3770          4.24849524        6.849625561 Secondary Carnivore
## 3771          3.97168717        4.232513096 Secondary Carnivore
## 3772          0.99694863        1.540263127   Primary Carnivore
## 3773          4.44851638        6.670778349 Secondary Carnivore
## 3774          0.00000000        0.015041422   Primary Carnivore
## 3775          2.62466859        0.004578480 Secondary Carnivore
## 3776          6.68511160        6.849625561 Secondary Carnivore
## 3777          5.30230939        6.670778349  Tertiary Carnivore
## 3778          4.50733683        2.387053327 Secondary Carnivore
## 3779          3.12236492        2.891851822 Secondary Carnivore
## 3780          6.72623340        6.942696930  Tertiary Carnivore
## 3781          1.04027671        0.116104790 Secondary Carnivore
## 3782          2.71469474        1.886232978 Secondary Carnivore
## 3783          1.30291275        0.490146528 Secondary Carnivore
## 3784          3.81771233        0.735932630 Secondary Carnivore
## 3785          2.84490938        4.259772081 Secondary Carnivore
## 3786          1.67147330        0.004578480   Primary Carnivore
## 3787          1.32441896        2.122440181 Secondary Carnivore
## 3788          1.66770682        0.490146528  Tertiary Carnivore
## 3789          1.69561561        0.009889753 Secondary Carnivore
## 3790          7.38634693        7.288251436 Secondary Carnivore
## 3791          1.45861502        0.223982763 Secondary Carnivore
## 3792          3.55820113        2.404044412 Secondary Carnivore
## 3793          3.95871573        3.473231162 Secondary Carnivore
## 3794          1.22377543        0.878396534   Primary Carnivore
## 3795          3.91800508        3.146907198  Tertiary Carnivore
## 3796          2.80336038        1.168798094 Secondary Carnivore
## 3797          1.79175947        0.878396534   Primary Carnivore
## 3798          1.75785792        0.223982763 Secondary Carnivore
## 3799          3.45568557        0.749689812   Primary Carnivore
## 3800          3.68250921        3.873611973 Secondary Carnivore
## 3801          1.42310833        1.454402431 Secondary Carnivore
## 3802          5.73979291        2.153233085   Primary Carnivore
## 3803          3.08190997        0.002059853 Secondary Carnivore
## 3804          3.23474917        1.886232978 Secondary Carnivore
## 3805          5.08140436        6.670778349   Primary Carnivore
## 3806          1.04027671        0.116104790 Secondary Carnivore
## 3807          3.91202301        0.004578480  Tertiary Carnivore
## 3808          3.92197334        6.670778349   Primary Carnivore
## 3809          2.33505228        1.886232978 Secondary Carnivore
## 3810          7.83391713        6.670778349 Secondary Carnivore
## 3811          4.52601875        2.138914945  Tertiary Carnivore
## 3812          4.56076888        1.432814265 Secondary Carnivore
## 3813          3.57632647        0.470853119 Secondary Carnivore
## 3814          2.94968834        1.307030142 Secondary Carnivore
## 3815          7.17142638        6.670778349 Secondary Carnivore
## 3816          2.37954613        0.490146528  Tertiary Carnivore
## 3817          1.80500470        1.886232978 Secondary Carnivore
## 3818          2.12584791        3.515099295 Secondary Carnivore
## 3819          4.80541352        4.094232049 Secondary Carnivore
## 3820          1.68639895        0.130455954 Secondary Carnivore
## 3821          6.91214563        6.670778349 Secondary Carnivore
## 3822          5.57473625        3.473231162   Primary Carnivore
## 3823          7.21604848        6.849625561 Secondary Carnivore
## 3824          2.43562887        2.853935439 Secondary Carnivore
## 3825          2.07693841        0.735932630 Secondary Carnivore
## 3826          1.28093385        0.130455954  Tertiary Carnivore
## 3827          1.41342303        0.413477448 Secondary Carnivore
## 3828          4.26310232        2.433189939  Tertiary Carnivore
## 3829          7.68959991        6.849625561 Secondary Carnivore
## 3830          4.26267988        7.288251436   Primary Carnivore
## 3831          3.49650756        1.168798094 Secondary Carnivore
## 3832          4.00551335        3.146907198 Secondary Carnivore
## 3833          4.20916024        1.886232978   Primary Carnivore
## 3834          7.83241093        6.942696930 Secondary Carnivore
## 3835          4.53646299        3.146907198 Secondary Carnivore
## 3836          8.53210151        6.849625561 Secondary Carnivore
## 3837          1.33500107        0.015041422 Secondary Carnivore
## 3838          2.82731362        0.002344505 Secondary Carnivore
## 3839          4.70048037        6.670778349 Secondary Carnivore
## 3840          4.35388433        1.168798094 Secondary Carnivore
## 3841          4.61541750        3.473231162  Tertiary Carnivore
## 3842          1.42069579        0.214753881 Secondary Carnivore
## 3843          1.06471074        0.305596011  Tertiary Carnivore
## 3844          5.16478597        7.288251436 Secondary Carnivore
## 3845          0.00000000        0.004578480 Secondary Carnivore
## 3846          1.09192330        1.180964506 Secondary Carnivore
## 3847          0.47000363        0.147199990 Secondary Carnivore
## 3848          0.00000000        0.004578480   Primary Carnivore
## 3849          5.39816270        7.288251436  Tertiary Carnivore
## 3850          1.19392247        1.670180746   Primary Carnivore
## 3851          5.50938834        4.094232049  Tertiary Carnivore
## 3852          1.77495235        0.490146528  Tertiary Carnivore
## 3853          3.23474917        1.670180746   Primary Carnivore
## 3854          3.06339092        0.735932630 Secondary Carnivore
## 3855          3.71843826        2.387053327 Secondary Carnivore
## 3856          1.67147330        0.856029167  Tertiary Carnivore
## 3857          4.98360662        6.849625561   Primary Carnivore
## 3858          0.00000000        0.147199990 Secondary Carnivore
## 3859          1.79175947        0.223982763 Secondary Carnivore
## 3860          1.49290410        0.823328714 Secondary Carnivore
## 3861          2.94443898        0.757060688 Secondary Carnivore
## 3862          2.60268969        0.009889753   Primary Carnivore
## 3863          1.69708242        2.122440181 Secondary Carnivore
## 3864          3.43398720        0.002344505 Secondary Carnivore
## 3865          4.80745776        1.168798094   Primary Carnivore
## 3866          1.60140574        0.281204828 Secondary Carnivore
## 3867          4.56954301        6.849625561 Secondary Carnivore
## 3868          1.85629799        0.002059853 Secondary Carnivore
## 3869          2.52652832        0.015041422   Primary Carnivore
## 3870          2.16332303        0.223982763 Secondary Carnivore
## 3871          1.66770682        2.894695819 Secondary Carnivore
## 3872          4.47960696        6.849625561 Secondary Carnivore
## 3873          0.00000000        0.015041422   Primary Carnivore
## 3874          4.85203026        6.942696930 Secondary Carnivore
## 3875          5.02388052        4.094232049   Primary Carnivore
## 3876          1.85848310        0.900183757   Primary Carnivore
## 3877          6.44730586        7.288251436 Secondary Carnivore
## 3878          0.00000000        1.315195554   Primary Carnivore
## 3879          4.79579055        7.288251436   Primary Carnivore
## 3880          2.86789890        2.387053327 Secondary Carnivore
## 3881          3.15700042        2.387053327 Secondary Carnivore
## 3882          1.09192330        0.211247175 Secondary Carnivore
## 3883          1.82454929        0.063185562 Secondary Carnivore
## 3884          1.02961942        2.894695819   Primary Carnivore
## 3885          4.59208495        2.387053327 Secondary Carnivore
## 3886          3.91657264        4.232513096   Primary Carnivore
## 3887          1.76644166        4.047182371 Secondary Carnivore
## 3888          2.74071098        3.873611973 Secondary Carnivore
## 3889          0.99325177        0.878396534   Primary Carnivore
## 3890          3.26956894        2.894695819   Primary Carnivore
## 3891          3.01944880        2.853935439 Secondary Carnivore
## 3892          7.72832775        6.670778349 Secondary Carnivore
## 3893          1.12167756        0.015041422   Primary Carnivore
## 3894          1.08180517        0.211247175 Secondary Carnivore
## 3895          0.83290912        0.470853119  Tertiary Carnivore
## 3896          4.12713439        0.004578480  Tertiary Carnivore
## 3897          0.00000000        1.126655451   Primary Carnivore
## 3898          3.58629287        6.670778349   Primary Carnivore
## 3899          0.01064316        0.305596011  Tertiary Carnivore
## 3900          1.38629436        0.020024930  Tertiary Carnivore
## 3901          1.24126859        0.561550440 Secondary Carnivore
## 3902          5.48188814        6.670778349 Secondary Carnivore
## 3903          7.34018684        6.942696930  Tertiary Carnivore
## 3904          1.32972401        0.015041422  Tertiary Carnivore
## 3905          6.06092531        2.610718759 Secondary Carnivore
## 3906          7.88615659        6.670778349 Secondary Carnivore
## 3907          4.25844557        0.002059853 Secondary Carnivore
## 3908          8.12346889        7.288251436 Secondary Carnivore
## 3909          1.14740245        0.015041422 Secondary Carnivore
## 3910          6.83936937        6.849625561 Secondary Carnivore
## 3911          6.41345896        4.094232049 Secondary Carnivore
## 3912          3.92395158        2.277308093   Primary Carnivore
## 3913          3.54673969        6.670778349 Secondary Carnivore
## 3914          3.56953270        2.387053327 Secondary Carnivore
## 3915          0.00000000        0.130455954 Secondary Carnivore
## 3916          4.41642806        6.670778349 Secondary Carnivore
## 3917          3.21112587        3.651616415 Secondary Carnivore
## 3918          3.01553490        0.015041422  Tertiary Carnivore
## 3919          4.29959566        2.153233085   Primary Carnivore
## 3920          4.83628191        6.849625561 Secondary Carnivore
## 3921          4.24769492        3.873611973 Secondary Carnivore
## 3922          3.91921707        1.506685742 Secondary Carnivore
## 3923          0.26236426        2.024989105   Primary Carnivore
## 3924          1.40609699        0.305596011  Tertiary Carnivore
## 3925          0.00000000        1.459857720   Primary Carnivore
## 3926          5.14166356        7.288251436  Tertiary Carnivore
## 3927          3.28057281        2.433189939 Secondary Carnivore
## 3928          4.45781801        7.288251436   Primary Carnivore
## 3929          4.27527626        6.670778349   Primary Carnivore
## 3930          7.52736356        7.288251436 Secondary Carnivore
## 3931          4.23555473        4.094232049 Secondary Carnivore
## 3932          0.02078254        1.180964506 Secondary Carnivore
## 3933          0.85441533        2.153233085           Herbivore
## 3934          0.00000000        0.130455954 Secondary Carnivore
## 3935          1.99877364        0.015041422  Tertiary Carnivore
## 3936          0.00000000        3.146907198   Primary Carnivore
## 3937          7.95384545        6.849625561 Secondary Carnivore
## 3938          2.64617480        0.305596011  Tertiary Carnivore
## 3939          3.12236492        3.038160131 Secondary Carnivore
## 3940          0.00000000        0.340191127   Primary Carnivore
## 3941          4.41558229        3.943759073 Secondary Carnivore
## 3942          3.70179568        0.735932630   Primary Carnivore
## 3943          4.56017282        3.146907198 Secondary Carnivore
## 3944          2.13416644        1.742111989 Secondary Carnivore
## 3945          6.77445243        6.670778349 Secondary Carnivore
## 3946          2.54160199        2.050338578   Primary Carnivore
## 3947          2.08815348        0.009889753           Herbivore
## 3948          2.89668512        2.136925014 Secondary Carnivore
## 3949          2.10413415        1.886232978 Secondary Carnivore
## 3950          4.71573613        3.304296954 Secondary Carnivore
## 3951          7.34665516        7.288251436 Secondary Carnivore
## 3952          5.22810947        1.168798094   Primary Carnivore
## 3953          2.21920348        0.223982763 Secondary Carnivore
## 3954          2.79116511        1.886232978   Primary Carnivore
## 3955          2.56240767        2.075946520   Primary Carnivore
## 3956          2.84490938        3.473231162  Tertiary Carnivore
## 3957          1.52388002        1.532760019 Secondary Carnivore
## 3958          3.63663834        3.651616415   Primary Carnivore
## 3959          2.36368019        0.015041422   Primary Carnivore
## 3960          3.92789635        6.849625561   Primary Carnivore
## 3961          2.91695959        2.433189939 Secondary Carnivore
## 3962          6.52590904        6.670778349 Secondary Carnivore
## 3963          2.45958884        0.015041422   Primary Carnivore
## 3964          2.59525471        3.473231162 Secondary Carnivore
## 3965          7.61386804        6.670778349 Secondary Carnivore
## 3966          2.27212589        1.532760019   Primary Carnivore
## 3967          3.68637632        2.153233085 Secondary Carnivore
## 3968          0.00000000        0.211247175 Secondary Carnivore
## 3969          3.33932198        2.404044412 Secondary Carnivore
## 3970          1.90389697        0.211247175 Secondary Carnivore
## 3971          3.25424297        3.515099295 Secondary Carnivore
## 3972          2.98568194        4.121930401   Primary Carnivore
## 3973          2.82137889        2.153233085 Secondary Carnivore
## 3974          3.15700042        1.168798094 Secondary Carnivore
## 3975          5.61312811        6.849625561   Primary Carnivore
## 3976          3.23080440        2.241290896   Primary Carnivore
## 3977          2.05412373        0.856029167 Secondary Carnivore
## 3978          2.47653840        0.885298676  Tertiary Carnivore
## 3979          3.24259235        0.749689812   Primary Carnivore
## 3980          3.23867845        3.146907198 Secondary Carnivore
## 3981          2.27829240        2.387053327  Tertiary Carnivore
## 3982          5.44570235        1.168798094   Primary Carnivore
## 3983          5.77455155        6.942696930  Tertiary Carnivore
## 3984          4.57367952        4.094232049 Secondary Carnivore
## 3985          6.28897318        6.670778349 Secondary Carnivore
## 3986          4.86375810        1.673740129   Primary Carnivore
## 3987          2.81367068        2.891851822  Tertiary Carnivore
## 3988          0.00000000        0.002344505 Secondary Carnivore
## 3989          1.20297230        0.015041422   Primary Carnivore
## 3990          2.83749827        2.853935439 Secondary Carnivore
## 3991          7.05142263        6.670778349 Secondary Carnivore
## 3992          3.25037449        0.020024930   Primary Carnivore
## 3993          1.00063188        1.711701702 Secondary Carnivore
## 3994          7.78130551        6.670778349 Secondary Carnivore
## 3995          7.82043952        7.288251436 Secondary Carnivore
## 3996          8.06495089        4.094232049 Secondary Carnivore
## 3997          0.79750720        0.413477448 Secondary Carnivore
## 3998          0.00000000        1.673740129           Herbivore
## 3999          4.51085951        7.288251436 Secondary Carnivore
## 4000          2.25023861        0.214753881 Secondary Carnivore
## 4001          2.82137889        0.009889753   Primary Carnivore
## 4002          8.50329709        7.288251436 Secondary Carnivore
## 4003          4.58598737        4.094232049 Secondary Carnivore
## 4004          3.79098468        1.168798094 Secondary Carnivore
## 4005          0.00000000        0.015041422   Primary Carnivore
## 4006          2.54944517        0.015041422  Tertiary Carnivore
## 4007          5.52146092        6.942696930 Secondary Carnivore
## 4008          2.94443898        2.894695819   Primary Carnivore
## 4009          1.62136648        1.180964506  Tertiary Carnivore
## 4010          3.72810017        1.673740129 Secondary Carnivore
## 4011          3.66612247        6.849625561 Secondary Carnivore
## 4012          0.83290912        0.147199990  Tertiary Carnivore
## 4013          1.66203036        0.009889753  Tertiary Carnivore
## 4014          4.30000280        6.849625561 Secondary Carnivore
## 4015          1.69009582        0.015041422 Secondary Carnivore
## 4016          3.88362353        6.849625561   Primary Carnivore
## 4017          2.54944517        0.044241443   Primary Carnivore
## 4018          0.63180355        4.047182371   Primary Carnivore
## 4019          3.87120101        1.673740129 Secondary Carnivore
## 4020          3.59731226        2.153233085 Secondary Carnivore
## 4021          4.66343909        6.849625561 Secondary Carnivore
## 4022          5.57215403        4.259772081   Primary Carnivore
## 4023          1.27256560        0.823328714 Secondary Carnivore
## 4024          0.82855182        1.877421323 Secondary Carnivore
## 4025          6.11146734        7.288251436   Primary Carnivore
## 4026          0.00000000        0.116104790 Secondary Carnivore
## 4027          4.98360662        4.094232049   Primary Carnivore
## 4028          4.46579317        3.473231162   Primary Carnivore
## 4029          5.35185813        7.288251436  Tertiary Carnivore
## 4030          1.99741771        0.490146528  Tertiary Carnivore
## 4031          3.81683282        2.153233085 Secondary Carnivore
## 4032          0.30748470        0.211247175  Tertiary Carnivore
## 4033          6.27795841        6.670778349 Secondary Carnivore
## 4034          1.22671229        0.305596011  Tertiary Carnivore
## 4035          0.69314718        0.470853119  Tertiary Carnivore
## 4036          2.91158951        1.962719022 Secondary Carnivore
## 4037          3.93573953        1.168798094 Secondary Carnivore
## 4038          2.77819796        0.015041422   Primary Carnivore
## 4039          4.29728541        4.094232049 Secondary Carnivore
## 4040          0.00000000        0.009889753  Tertiary Carnivore
## 4041          7.22875123        6.670778349 Secondary Carnivore
## 4042          5.55902642        1.168798094   Primary Carnivore
## 4043          7.02028007        6.670778349 Secondary Carnivore
## 4044          2.37861978        2.387053327 Secondary Carnivore
## 4045          4.48863637        6.670778349 Secondary Carnivore
## 4046          0.78845736        0.130455954 Secondary Carnivore
## 4047          0.40546511        2.894695819   Primary Carnivore
## 4048          7.34665516        7.288251436 Secondary Carnivore
## 4049          0.00000000        1.459857720   Primary Carnivore
## 4050          0.00000000        0.002344505 Secondary Carnivore
## 4051          4.92308559        7.288251436 Secondary Carnivore
## 4052          3.36729583        1.168798094 Secondary Carnivore
## 4053          1.78170913        0.856029167   Primary Carnivore
## 4054          6.08904488        7.288251436 Secondary Carnivore
## 4055          2.16676537        0.015041422  Tertiary Carnivore
## 4056          3.75560309        6.942696930 Secondary Carnivore
## 4057          0.83290912        4.262479896 Secondary Carnivore
## 4058          1.05779029        2.122440181 Secondary Carnivore
## 4059          4.51085951        7.288251436 Secondary Carnivore
## 4060          1.93152141        0.490146528 Secondary Carnivore
## 4061          2.03339760        1.742111989 Secondary Carnivore
## 4062          3.68135119        2.387053327 Secondary Carnivore
## 4063          2.56510319        2.254856321   Primary Carnivore
## 4064          5.64897424        4.259772081 Secondary Carnivore
## 4065          3.51868408        1.886232978 Secondary Carnivore
## 4066          2.54944517        0.281204828 Secondary Carnivore
## 4067          5.89715387        6.942696930  Tertiary Carnivore
## 4068          2.61739583        1.742111989 Secondary Carnivore
## 4069          2.24191003        6.670778349 Secondary Carnivore
## 4070          7.47363711        7.288251436 Secondary Carnivore
## 4071          1.96571278        0.856029167 Secondary Carnivore
## 4072          0.40546511        0.063185562 Secondary Carnivore
## 4073          6.19031541        6.942696930  Tertiary Carnivore
## 4074          2.28033948        1.532760019   Primary Carnivore
## 4075          2.13947776        4.047182371 Secondary Carnivore
## 4076          3.49650756        3.146907198 Secondary Carnivore
## 4077          0.53062825        0.130455954  Tertiary Carnivore
## 4078          3.95316495        6.670778349 Secondary Carnivore
## 4079          3.73050113        6.670778349 Secondary Carnivore
## 4080          3.05870707        3.038160131 Secondary Carnivore
## 4081          8.44080878        6.849625561 Secondary Carnivore
## 4082          2.32630162        2.845177164 Secondary Carnivore
## 4083          1.48160454        0.130455954 Secondary Carnivore
## 4084          3.57234564        3.168005566 Secondary Carnivore
## 4085          6.59441346        7.288251436  Tertiary Carnivore
## 4086          4.60616969        4.259772081  Tertiary Carnivore
## 4087          1.54756251        0.015041422 Secondary Carnivore
## 4088          4.22537282        1.168798094 Secondary Carnivore
## 4089          0.00000000        0.470853119  Tertiary Carnivore
## 4090          2.98061864        2.387053327 Secondary Carnivore
## 4091          3.76352300        1.168798094 Secondary Carnivore
## 4092          3.19179236        1.540263127 Secondary Carnivore
## 4093          4.01096295        6.670778349 Secondary Carnivore
## 4094          5.11198779        4.094232049  Tertiary Carnivore
## 4095          1.16315081        1.126655451   Primary Carnivore
## 4096          1.19392247        0.211247175 Secondary Carnivore
## 4097          7.39079852        7.288251436 Secondary Carnivore
## 4098          4.66861436        2.153233085 Secondary Carnivore
## 4099          1.54756251        0.009889753  Tertiary Carnivore
## 4100          6.06610809        7.288251436  Tertiary Carnivore
## 4101          4.04480412        6.942696930  Tertiary Carnivore
## 4102          4.98561830        3.304296954   Primary Carnivore
## 4103          6.77502357        6.849625561 Secondary Carnivore
## 4104          4.62497281        3.168005566 Secondary Carnivore
## 4105          2.58021683        1.532760019   Primary Carnivore
## 4106          4.98360662        4.094232049   Primary Carnivore
## 4107          2.63905733        2.153233085 Secondary Carnivore
## 4108          5.22035583        3.146907198 Secondary Carnivore
## 4109          7.13297667        6.670778349 Secondary Carnivore
## 4110          2.58776404        0.757060688 Secondary Carnivore
## 4111          2.11709853        3.515099295 Secondary Carnivore
## 4112          2.36837283        0.735932630 Secondary Carnivore
## 4113          4.18813844        6.849625561  Tertiary Carnivore
## 4114          0.00000000        0.004578480 Secondary Carnivore
## 4115          3.41444261        1.742111989 Secondary Carnivore
## 4116          5.13603370        1.673740129 Secondary Carnivore
## 4117          1.80664808        0.116104790 Secondary Carnivore
## 4118          3.39114705        1.670180746 Secondary Carnivore
## 4119          1.30019166        2.845177164 Secondary Carnivore
## 4120          3.13113691        4.259772081 Secondary Carnivore
## 4121          2.64326276        0.490146528 Secondary Carnivore
## 4122          0.00000000        0.015041422 Secondary Carnivore
## 4123          4.08260931        6.670778349 Secondary Carnivore
## 4124          5.02388052        6.942696930 Secondary Carnivore
## 4125          1.04027671        0.885298676 Secondary Carnivore
## 4126          3.94931879        7.161415474 Secondary Carnivore
## 4127          0.00000000        0.002059853 Secondary Carnivore
## 4128          2.14943391        0.735932630 Secondary Carnivore
## 4129          7.29369772        7.288251436 Secondary Carnivore
## 4130          1.53686722        0.015041422  Tertiary Carnivore
## 4131          0.00000000        0.147199990 Secondary Carnivore
## 4132          2.11142459        0.900183757 Secondary Carnivore
## 4133          1.82454929        0.490146528  Tertiary Carnivore
## 4134          0.83290912        1.831515834 Secondary Carnivore
## 4135          4.75780543        4.094232049 Secondary Carnivore
## 4136          2.74084002        1.886232978 Secondary Carnivore
## 4137          6.03954017        1.886232978 Secondary Carnivore
## 4138          0.17395331        1.532760019  Tertiary Carnivore
## 4139          3.28091122        3.146907198 Secondary Carnivore
## 4140          5.35185813        7.288251436  Tertiary Carnivore
## 4141          0.00000000        2.404044412           Herbivore
## 4142          1.19392247        0.147199990 Secondary Carnivore
## 4143          4.44968528        1.168798094  Tertiary Carnivore
## 4144          4.82807371        1.673740129   Primary Carnivore
## 4145          0.00000000        1.877421323 Secondary Carnivore
## 4146          7.68303529        6.849625561 Secondary Carnivore
## 4147          1.85207032        0.211247175 Secondary Carnivore
## 4148          0.19885086        0.305596011 Secondary Carnivore
## 4149          1.65822808        0.885298676  Tertiary Carnivore
## 4150          1.84292776        1.962719022 Secondary Carnivore
## 4151          2.58021683        2.136925014 Secondary Carnivore
## 4152          5.77299754        1.886232978   Primary Carnivore
## 4153          4.45771372        1.886232978   Primary Carnivore
## 4154          2.77102500        1.962719022  Tertiary Carnivore
## 4155          3.94352167        3.146907198  Tertiary Carnivore
## 4156          2.95491028        2.472143654   Primary Carnivore
## 4157          7.98214318        6.849625561 Secondary Carnivore
## 4158          4.79892612        2.387053327   Primary Carnivore
## 4159          0.92821930        6.942696930           Herbivore
## 4160          7.83494639        6.670778349 Secondary Carnivore
## 4161          7.03341830        6.670778349 Secondary Carnivore
## 4162          1.32175584        2.254856321 Secondary Carnivore
## 4163          6.78649119        6.670778349  Tertiary Carnivore
## 4164          0.00000000        1.670180746   Primary Carnivore
## 4165          0.00000000        2.404044412           Herbivore
## 4166          5.90511659        1.886232978   Primary Carnivore
## 4167          4.61485315        1.432814265 Secondary Carnivore
## 4168          4.22753423        1.506685742   Primary Carnivore
## 4169          7.39184671        7.288251436 Secondary Carnivore
## 4170          1.28923265        0.856029167 Secondary Carnivore
## 4171          1.51292701        0.015041422 Secondary Carnivore
## 4172          0.97455964        0.305596011  Tertiary Carnivore
## 4173          7.97968130        7.288251436 Secondary Carnivore
## 4174          1.18784342        0.561550440 Secondary Carnivore
## 4175          4.06355884        2.138914945 Secondary Carnivore
## 4176          3.19043520        2.610718759 Secondary Carnivore
## 4177          1.76985463        0.015041422  Tertiary Carnivore
## 4178          5.38587026        0.004578480  Tertiary Carnivore
## 4179          1.32441896        4.047182371 Secondary Carnivore
## 4180          0.83290912        5.169038067   Primary Carnivore
## 4181          2.56617937        1.962719022 Secondary Carnivore
## 4182          2.17815501        2.845177164 Secondary Carnivore
## 4183          4.96284463        6.670778349  Tertiary Carnivore
## 4184          2.16217294        0.009889753   Primary Carnivore
## 4185          0.90421815        0.305596011  Tertiary Carnivore
## 4186          0.00000000        1.886232978           Herbivore
## 4187          1.34547237        0.856029167 Secondary Carnivore
## 4188          0.00000000        0.004578480  Tertiary Carnivore
## 4189          3.57660621        1.432814265  Tertiary Carnivore
## 4190          0.43048287        0.856029167  Tertiary Carnivore
## 4191          7.98132323        6.670778349 Secondary Carnivore
## 4192          3.66867675        0.749689812   Primary Carnivore
## 4193          1.19392247        1.532760019  Tertiary Carnivore
## 4194          4.18801704        3.651616415   Primary Carnivore
## 4195          1.44926916        1.251683108 Secondary Carnivore
## 4196          4.50534985        4.094232049  Tertiary Carnivore
## 4197          2.44633906        0.470853119 Secondary Carnivore
## 4198          4.34510328        6.670778349 Secondary Carnivore
## 4199          4.84418709        3.146907198 Secondary Carnivore
## 4200          1.49962305        0.561550440 Secondary Carnivore
## 4201          6.67997600        6.670778349 Secondary Carnivore
## 4202          2.11384297        0.009889753 Secondary Carnivore
## 4203          3.50453585        3.873611973  Tertiary Carnivore
## 4204          8.49631679        6.849625561 Secondary Carnivore
## 4205          5.86646806        2.153233085  Tertiary Carnivore
## 4206          0.37156356        0.130455954 Secondary Carnivore
## 4207          0.00000000        1.981883583   Primary Carnivore
## 4208          4.31348009        4.259772081 Secondary Carnivore
## 4209          2.82137889        1.168798094 Secondary Carnivore
## 4210          2.65324196        0.002344505 Secondary Carnivore
## 4211          3.85014760        6.849625561 Secondary Carnivore
## 4212          3.86157146        0.015041422 Secondary Carnivore
## 4213          3.26575941        2.387053327 Secondary Carnivore
## 4214          4.62497281        4.259772081 Secondary Carnivore
## 4215          2.94443898        0.004578480  Tertiary Carnivore
## 4216          4.39444915        7.288251436 Secondary Carnivore
## 4217          0.99325177        0.130455954  Tertiary Carnivore
## 4218          4.00369019        1.307030142 Secondary Carnivore
## 4219          0.53999600        0.413477448  Tertiary Carnivore
## 4220          0.26236426        1.920179330   Primary Carnivore
## 4221          3.30310667        1.506685742 Secondary Carnivore
## 4222          0.00000000        0.130455954 Secondary Carnivore
## 4223          4.21331208        1.886232978 Secondary Carnivore
## 4224          5.75574221        1.168798094 Secondary Carnivore
## 4225          1.56024767        0.009889753   Primary Carnivore
## 4226          2.02683159        0.885298676  Tertiary Carnivore
## 4227          4.75531284        3.943759073 Secondary Carnivore
## 4228          4.99767163        4.232513096 Secondary Carnivore
## 4229          2.22354189        0.015041422 Secondary Carnivore
## 4230          3.26575941        5.169038067   Primary Carnivore
## 4231          1.71918878        0.856029167   Primary Carnivore
## 4232          1.13462273        2.136925014 Secondary Carnivore
## 4233          0.58778666        0.147199990 Secondary Carnivore
## 4234          1.84150156        1.711701702  Tertiary Carnivore
## 4235          2.97041447        2.387053327 Secondary Carnivore
## 4236          0.00000000        0.002344505 Secondary Carnivore
## 4237          0.00000000        2.404044412           Herbivore
## 4238          2.77258872        0.116104790 Secondary Carnivore
## 4239          1.85629799        0.490146528  Tertiary Carnivore
## 4240          4.59410924        3.168005566 Secondary Carnivore
## 4241          5.56452041        7.288251436  Tertiary Carnivore
## 4242          8.05360097        6.670778349 Secondary Carnivore
## 4243          3.24649099        1.307030142 Secondary Carnivore
## 4244          1.70292826        0.015041422 Secondary Carnivore
## 4245          3.88752537        0.749689812   Primary Carnivore
## 4246          0.00000000        0.015041422  Tertiary Carnivore
## 4247          5.18178355        6.849625561 Secondary Carnivore
## 4248          2.40865536        1.540263127 Secondary Carnivore
## 4249          2.90690106        3.515099295 Secondary Carnivore
## 4250          2.61739583        0.757060688  Tertiary Carnivore
## 4251          2.52572864        0.735932630 Secondary Carnivore
## 4252          3.36037539        2.891851822  Tertiary Carnivore
## 4253          3.35340672        5.169038067   Primary Carnivore
## 4254          0.00000000        1.886232978           Herbivore
## 4255          1.98787435        2.241290896   Primary Carnivore
## 4256          2.68852753        3.226603994 Secondary Carnivore
## 4257          2.58776404        2.136925014 Secondary Carnivore
## 4258          1.35325451        2.404044412 Secondary Carnivore
## 4259          4.70953020        7.288251436 Secondary Carnivore
## 4260          7.35212054        6.849625561 Secondary Carnivore
## 4261          2.56494936        1.315195554 Secondary Carnivore
## 4262          5.81889528        6.849625561 Secondary Carnivore
## 4263          1.79275897        0.116104790 Secondary Carnivore
## 4264          1.62924054        0.147199990 Secondary Carnivore
## 4265          7.75022723        6.670778349 Secondary Carnivore
## 4266          3.79773386        4.094232049 Secondary Carnivore
## 4267          0.95551145        0.490146528  Tertiary Carnivore
## 4268          1.53255687        2.075946520 Secondary Carnivore
## 4269          5.14813381        1.886232978   Primary Carnivore
## 4270          0.00000000        1.886232978           Herbivore
## 4271          0.33647224        2.894695819   Primary Carnivore
## 4272          3.28578653        0.015041422 Secondary Carnivore
## 4273          2.29253476        1.315195554   Primary Carnivore
## 4274          7.29715875        6.849625561 Secondary Carnivore
## 4275          0.26236426        2.024989105   Primary Carnivore
## 4276          0.68813464        1.251683108 Secondary Carnivore
## 4277          1.02961942        0.470853119  Tertiary Carnivore
## 4278          1.26976054        1.180964506 Secondary Carnivore
## 4279          4.04305127        6.670778349  Tertiary Carnivore
## 4280          3.96840334        2.050338578   Primary Carnivore
## 4281          5.72227706        6.849625561 Secondary Carnivore
## 4282          4.79579055        7.288251436 Secondary Carnivore
## 4283          7.40482675        6.670778349 Secondary Carnivore
## 4284          0.78845736        7.161415474   Primary Carnivore
## 4285          5.57215403        4.259772081   Primary Carnivore
## 4286          3.51452607        1.886232978 Secondary Carnivore
## 4287          1.87640694        0.885298676  Tertiary Carnivore
## 4288          2.63905733        0.002059853 Secondary Carnivore
## 4289          0.00000000        2.894695819   Primary Carnivore
## 4290          3.40452517        1.886232978 Secondary Carnivore
## 4291          0.00000000        0.002059853 Secondary Carnivore
## 4292          2.24918432        0.009889753   Primary Carnivore
## 4293          1.66392610        0.211247175 Secondary Carnivore
## 4294          0.06765865        0.305596011 Secondary Carnivore
## 4295          2.27212589        1.670180746 Secondary Carnivore
## 4296          2.77881927        0.885298676  Tertiary Carnivore
## 4297          6.58340922        4.259772081  Tertiary Carnivore
## 4298          0.00000000        1.670180746   Primary Carnivore
## 4299          1.45161383        1.532760019 Secondary Carnivore
## 4300          1.99333884        1.307030142 Secondary Carnivore
## 4301          0.00000000        0.002059853 Secondary Carnivore
## 4302          2.04122033        0.063185562 Secondary Carnivore
## 4303          2.23537634        0.015041422 Secondary Carnivore
## 4304          2.58021683        2.891851822 Secondary Carnivore
## 4305          4.25134831        1.168798094 Secondary Carnivore
## 4306          0.00000000        2.404044412           Herbivore
## 4307          1.47476301        0.900183757 Secondary Carnivore
## 4308          6.77490937        6.849625561 Secondary Carnivore
## 4309          3.42816383        0.015041422   Primary Carnivore
## 4310          1.61541998        0.009889753  Tertiary Carnivore
## 4311          6.90505163        6.849625561 Secondary Carnivore
## 4312          1.66770682        0.002344505 Secondary Carnivore
## 4313          3.03013370        3.146907198 Secondary Carnivore
## 4314          1.81156210        0.211247175 Secondary Carnivore
## 4315          1.01884732        0.223982763 Secondary Carnivore
## 4316          1.51072194        0.015041422  Tertiary Carnivore
## 4317          5.68357977        4.094232049  Tertiary Carnivore
## 4318          4.79579055        7.288251436 Secondary Carnivore
## 4319          1.19996478        0.015041422  Tertiary Carnivore
## 4320          7.45066080        7.288251436 Secondary Carnivore
## 4321          2.47863704        1.711701702   Primary Carnivore
## 4322          1.31640823        0.214753881 Secondary Carnivore
## 4323          6.08677473        4.094232049 Secondary Carnivore
## 4324          3.51443678        2.610718759 Secondary Carnivore
## 4325          2.92316158        3.473231162 Secondary Carnivore
## 4326          1.77495235        0.002344505 Secondary Carnivore
## 4327          0.00000000        1.877421323 Secondary Carnivore
## 4328          2.32727771        0.009889753           Herbivore
## 4329          1.43983513        0.305596011  Tertiary Carnivore
## 4330          5.21553341        0.735932630   Primary Carnivore
## 4331          4.19166787        2.433189939 Secondary Carnivore
## 4332          1.47796155        1.711701702  Tertiary Carnivore
## 4333          2.28238239        1.315195554 Secondary Carnivore
## 4334          2.55722731        1.315195554 Secondary Carnivore
## 4335          3.16665579        0.470853119 Secondary Carnivore
## 4336          0.00000000        0.002344505  Tertiary Carnivore
## 4337          2.79116511        0.009889753           Herbivore
## 4338          1.75958057        4.262479896 Secondary Carnivore
## 4339          1.29746315        0.413477448 Secondary Carnivore
## 4340          2.85647021        1.886232978 Secondary Carnivore
## 4341          2.85070650        0.063185562 Secondary Carnivore
## 4342          5.18505908        1.432814265 Secondary Carnivore
## 4343          1.20297230        1.831515834  Tertiary Carnivore
## 4344          3.26956894        1.886232978 Secondary Carnivore
## 4345          3.80443779        6.670778349   Primary Carnivore
## 4346          5.01727984        7.288251436  Tertiary Carnivore
## 4347          3.85227300        6.670778349 Secondary Carnivore
## 4348          3.27222700        0.735932630   Primary Carnivore
## 4349          1.08180517        0.116104790 Secondary Carnivore
## 4350          1.89611948        0.885298676 Secondary Carnivore
## 4351          1.66770682        0.490146528 Secondary Carnivore
## 4352          4.27495632        4.232513096  Tertiary Carnivore
## 4353          5.77827133        6.670778349  Tertiary Carnivore
## 4354          0.00000000        1.673740129           Herbivore
## 4355          1.48387469        0.885298676 Secondary Carnivore
## 4356          3.55820113        2.153233085           Herbivore
## 4357          0.78845736        2.145288428 Secondary Carnivore
## 4358          2.00417906        0.211247175 Secondary Carnivore
## 4359          8.42299240        6.849625561 Secondary Carnivore
## 4360          6.01859321        7.288251436  Tertiary Carnivore
## 4361          0.00000000        0.002059853 Secondary Carnivore
## 4362          1.95727391        0.004578480   Primary Carnivore
## 4363          1.62924054        0.223982763 Secondary Carnivore
## 4364          1.04027671        1.454402431 Secondary Carnivore
## 4365          5.44241771        2.153233085 Secondary Carnivore
## 4366          3.06339092        3.943759073 Secondary Carnivore
## 4367          2.53369681        1.981883583   Primary Carnivore
## 4368          4.09434456        7.288251436 Secondary Carnivore
## 4369          3.28776736        2.433189939  Tertiary Carnivore
## 4370          5.30330491        7.288251436 Secondary Carnivore
## 4371          0.00000000        0.009889753 Secondary Carnivore
## 4372          5.28826703        2.153233085  Tertiary Carnivore
## 4373          0.95551145        0.211247175 Secondary Carnivore
## 4374          1.67335124        0.735932630 Secondary Carnivore
## 4375          2.70136121        3.515099295 Secondary Carnivore
## 4376          1.18172720        2.387053327 Secondary Carnivore
## 4377          2.41126011        1.014024833 Secondary Carnivore
## 4378          2.32238772        0.223982763 Secondary Carnivore
## 4379          7.51261754        6.942696930 Secondary Carnivore
## 4380          0.00000000        0.009889753 Secondary Carnivore
## 4381          2.63905733        0.002059853 Secondary Carnivore
## 4382          0.91629073        0.063185562 Secondary Carnivore
## 4383          3.02456266        2.254856321 Secondary Carnivore
## 4384          1.41098697        0.147199990 Secondary Carnivore
## 4385          3.78940329        0.214753881  Tertiary Carnivore
## 4386          0.83290912        0.130455954 Secondary Carnivore
## 4387          7.62525355        6.849625561 Secondary Carnivore
## 4388          3.34990409        2.387053327   Primary Carnivore
## 4389          4.61512052        7.288251436  Tertiary Carnivore
## 4390          3.55010577        1.540263127 Secondary Carnivore
## 4391          1.24990174        2.241290896   Primary Carnivore
## 4392          7.22329568        7.288251436 Secondary Carnivore
## 4393          4.71849887        3.146907198 Secondary Carnivore
## 4394          3.92296295        2.138914945 Secondary Carnivore
## 4395          3.28091122        1.168798094   Primary Carnivore
## 4396          2.38139627        2.136925014 Secondary Carnivore
## 4397          1.34547237        0.885298676 Secondary Carnivore
## 4398          2.23697934        0.490146528   Primary Carnivore
## 4399          2.91463067        2.136925014 Secondary Carnivore
## 4400          4.30217141        0.002059853 Secondary Carnivore
## 4401          1.13140211        0.470853119  Tertiary Carnivore
## 4402          3.38113072        1.632888289 Secondary Carnivore
## 4403          1.53901545        2.853935439 Secondary Carnivore
## 4404          2.98061864        0.885298676  Tertiary Carnivore
## 4405          1.95868534        0.211247175 Secondary Carnivore
## 4406          1.68639895        7.161415474 Secondary Carnivore
## 4407          3.09557761        0.009889753   Primary Carnivore
## 4408          2.63991411        2.254856321   Primary Carnivore
## 4409          0.00000000        0.305596011 Secondary Carnivore
## 4410          3.36037539        1.168798094 Secondary Carnivore
## 4411          1.59533899        0.413477448 Secondary Carnivore
## 4412          3.56133013        1.886232978 Secondary Carnivore
## 4413          4.65396035        1.168798094 Secondary Carnivore
## 4414          0.00000000        1.459857720   Primary Carnivore
## 4415          7.34968088        6.849625561 Secondary Carnivore
## 4416          4.68213123        6.670778349  Tertiary Carnivore
## 4417          1.31908561        0.004578480   Primary Carnivore
## 4418          8.85237889        7.288251436 Secondary Carnivore
## 4419          0.93216408        4.094232049           Herbivore
## 4420          4.86753445        2.153233085 Secondary Carnivore
## 4421          0.00000000        0.281204828 Secondary Carnivore
## 4422          2.12823171        0.211247175 Secondary Carnivore
## 4423          5.67194775        1.886232978 Secondary Carnivore
## 4424          0.82417544        1.831515834   Primary Carnivore
## 4425          0.63657683        4.259772081           Herbivore
## 4426          6.61069604        6.942696930 Secondary Carnivore
## 4427          3.42426265        3.651616415  Tertiary Carnivore
## 4428          3.73440238        3.943759073 Secondary Carnivore
## 4429          3.66612247        0.749689812   Primary Carnivore
## 4430          2.08193842        0.004578480  Tertiary Carnivore
## 4431          0.00000000        2.145288428 Secondary Carnivore
## 4432          3.77045944        2.050338578   Primary Carnivore
## 4433          8.52734152        7.288251436 Secondary Carnivore
## 4434          3.71571611        2.433189939 Secondary Carnivore
## 4435          3.06339092        0.735932630 Secondary Carnivore
## 4436          2.61520365        3.226603994  Tertiary Carnivore
## 4437          7.20630310        6.849625561 Secondary Carnivore
## 4438          2.83321334        3.146907198 Secondary Carnivore
## 4439          2.80940270        1.420705940 Secondary Carnivore
## 4440          6.99062476        7.288251436 Secondary Carnivore
## 4441          4.47847253        1.168798094 Secondary Carnivore
## 4442          1.68639895        0.116104790 Secondary Carnivore
## 4443          0.00000000        0.009889753           Herbivore
## 4444          2.50470928        1.432814265 Secondary Carnivore
## 4445          6.66134310        6.670778349 Secondary Carnivore
## 4446          0.87546874        0.063185562 Secondary Carnivore
## 4447          3.20453346        2.610718759  Tertiary Carnivore
## 4448          1.08518927        1.180964506  Tertiary Carnivore
## 4449          3.00071982        0.214753881  Tertiary Carnivore
## 4450          2.00552586        1.307030142 Secondary Carnivore
## 4451          1.46325540        4.094232049           Herbivore
## 4452          4.53689135        1.673740129 Secondary Carnivore
## 4453          5.25227343        7.288251436   Primary Carnivore
## 4454          3.03013370        1.670180746   Primary Carnivore
## 4455          5.25017699        3.473231162   Primary Carnivore
## 4456          3.88567903        2.387053327 Secondary Carnivore
## 4457          3.89731538        0.735932630 Secondary Carnivore
## 4458          5.54126355        3.146907198 Secondary Carnivore
## 4459          4.77912349        4.094232049  Tertiary Carnivore
## 4460          1.70402055        0.211247175 Secondary Carnivore
## 4461          2.81540872        0.757060688 Secondary Carnivore
## 4462          7.84998662        6.670778349 Secondary Carnivore
## 4463          0.00000000        0.002344505  Tertiary Carnivore
## 4464          3.94158181        3.168005566 Secondary Carnivore
## 4465          1.73342389        0.015041422 Secondary Carnivore
## 4466          3.49347266        1.168798094 Secondary Carnivore
## 4467          0.26236426        2.107009466   Primary Carnivore
## 4468          0.00000000        2.107009466   Primary Carnivore
## 4469          2.84490938        0.020024930  Tertiary Carnivore
## 4470          0.74193734        2.241290896   Primary Carnivore
## 4471          1.67335124        0.490146528 Secondary Carnivore
## 4472          4.02177387        2.153233085  Tertiary Carnivore
## 4473          4.50976000        6.670778349 Secondary Carnivore
## 4474          4.07414185        3.159561805   Primary Carnivore
## 4475          2.76744803        6.670778349 Secondary Carnivore
## 4476          2.96460274        3.038160131 Secondary Carnivore
## 4477          5.17868888        2.153233085 Secondary Carnivore
## 4478          1.55180880        0.009889753  Tertiary Carnivore
## 4479          1.38629436        0.063185562 Secondary Carnivore
## 4480          4.54648119        3.146907198 Secondary Carnivore
## 4481          2.37024374        0.490146528 Secondary Carnivore
## 4482          0.30748470        4.259772081           Herbivore
## 4483          2.01089500        0.214753881 Secondary Carnivore
## 4484          3.39450839        1.479154529   Primary Carnivore
## 4485          2.68784749        0.757060688   Primary Carnivore
## 4486          2.35801980        3.515099295 Secondary Carnivore
## 4487          3.76584050        0.009889753  Tertiary Carnivore
## 4488          0.81536481        1.251683108 Secondary Carnivore
## 4489          0.00000000        1.886232978           Herbivore
## 4490          1.28923265        0.004578480 Secondary Carnivore
## 4491          2.00512201        2.853935439   Primary Carnivore
## 4492          4.74449725        3.146907198 Secondary Carnivore
## 4493          4.03777421        6.670778349   Primary Carnivore
## 4494          4.71635371        1.168798094 Secondary Carnivore
## 4495          0.36394843        0.413477448  Tertiary Carnivore
## 4496          0.00000000        0.009889753           Herbivore
## 4497          4.94875989        7.288251436 Secondary Carnivore
## 4498          3.99636415        6.670778349 Secondary Carnivore
## 4499          1.15688120        0.004578480   Primary Carnivore
## 4500          3.51452607        1.168798094 Secondary Carnivore
## 4501          8.20305762        7.288251436 Secondary Carnivore
## 4502          0.81668960        1.705681497 Secondary Carnivore
## 4503          2.55567572        0.015041422   Primary Carnivore
## 4504          1.34547237        1.962719022 Secondary Carnivore
## 4505          2.37954613        0.004578480 Secondary Carnivore
## 4506          4.85203026        6.849625561  Tertiary Carnivore
## 4507          0.95165788        1.877421323 Secondary Carnivore
## 4508          4.74701691        0.002059853 Secondary Carnivore
## 4509          0.98954119        0.116104790 Secondary Carnivore
## 4510          7.58054668        6.670778349 Secondary Carnivore
## 4511          3.03013370        2.153233085 Secondary Carnivore
## 4512          6.27476202        7.288251436   Primary Carnivore
## 4513          4.55807858        6.670778349 Secondary Carnivore
## 4514          1.06594239        2.145288428 Secondary Carnivore
## 4515          2.39059597        1.886232978   Primary Carnivore
## 4516          5.50443683        6.942696930 Secondary Carnivore
## 4517          2.01623547        1.886232978   Primary Carnivore
## 4518          1.40609699        2.136925014 Secondary Carnivore
## 4519          0.00000000        2.404044412           Herbivore
## 4520          4.99043259        6.670778349 Secondary Carnivore
## 4521          3.44998755        1.886232978 Secondary Carnivore
## 4522          1.74221902        1.831515834 Secondary Carnivore
## 4523          0.83290912        1.315195554   Primary Carnivore
## 4524          2.67414865        1.168798094 Secondary Carnivore
## 4525          3.39785848        2.153233085 Secondary Carnivore
## 4526          3.76537743        1.886232978   Primary Carnivore
## 4527          0.53062825        2.472143654   Primary Carnivore
## 4528          3.68145194        1.014024833 Secondary Carnivore
## 4529          7.71020519        7.288251436 Secondary Carnivore
## 4530          2.18941639        1.532760019   Primary Carnivore
## 4531          1.82454929        3.226603994  Tertiary Carnivore
## 4532          1.79342475        4.047182371  Tertiary Carnivore
## 4533          6.29876541        6.849625561 Secondary Carnivore
## 4534          2.60172626        0.470853119  Tertiary Carnivore
## 4535          0.40879290        2.891851822 Secondary Carnivore
## 4536          0.00000000        0.009889753  Tertiary Carnivore
## 4537          2.70951579        1.540263127 Secondary Carnivore
## 4538          1.67147330        0.015041422   Primary Carnivore
## 4539          5.30330491        4.259772081 Secondary Carnivore
## 4540          3.64021428        1.070822001   Primary Carnivore
## 4541          1.89069942        2.075946520 Secondary Carnivore
## 4542          4.24849524        6.849625561 Secondary Carnivore
## 4543          3.97168717        4.232513096 Secondary Carnivore
## 4544          0.99694863        1.540263127   Primary Carnivore
## 4545          4.44851638        6.670778349 Secondary Carnivore
## 4546          0.00000000        0.015041422   Primary Carnivore
## 4547          2.62466859        0.004578480 Secondary Carnivore
## 4548          6.68511160        6.849625561 Secondary Carnivore
## 4549          5.30230939        6.670778349  Tertiary Carnivore
## 4550          4.50733683        2.387053327 Secondary Carnivore
## 4551          3.12236492        2.891851822 Secondary Carnivore
## 4552          6.72623340        6.942696930  Tertiary Carnivore
## 4553          1.04027671        0.116104790 Secondary Carnivore
## 4554          2.71469474        1.886232978 Secondary Carnivore
## 4555          1.30291275        0.490146528 Secondary Carnivore
## 4556          3.81771233        0.735932630 Secondary Carnivore
## 4557          2.84490938        4.259772081 Secondary Carnivore
## 4558          1.67147330        0.004578480   Primary Carnivore
## 4559          1.32441896        2.122440181 Secondary Carnivore
## 4560          1.66770682        0.490146528  Tertiary Carnivore
## 4561          1.69561561        0.009889753 Secondary Carnivore
## 4562          7.38634693        7.288251436 Secondary Carnivore
## 4563          1.45861502        0.223982763 Secondary Carnivore
## 4564          3.55820113        2.404044412 Secondary Carnivore
## 4565          3.95871573        3.473231162 Secondary Carnivore
## 4566          1.22377543        0.878396534   Primary Carnivore
## 4567          3.91800508        3.146907198  Tertiary Carnivore
## 4568          2.80336038        1.168798094 Secondary Carnivore
## 4569          1.79175947        0.878396534   Primary Carnivore
## 4570          1.75785792        0.223982763 Secondary Carnivore
## 4571          3.45568557        0.749689812   Primary Carnivore
## 4572          3.68250921        3.873611973 Secondary Carnivore
## 4573          1.42310833        1.454402431 Secondary Carnivore
## 4574          5.73979291        2.153233085   Primary Carnivore
## 4575          3.08190997        0.002059853 Secondary Carnivore
## 4576          3.23474917        1.886232978 Secondary Carnivore
## 4577          5.08140436        6.670778349   Primary Carnivore
## 4578          1.04027671        0.116104790 Secondary Carnivore
## 4579          3.91202301        0.004578480  Tertiary Carnivore
## 4580          3.92197334        6.670778349   Primary Carnivore
## 4581          2.33505228        1.886232978 Secondary Carnivore
## 4582          7.83391713        6.670778349 Secondary Carnivore
## 4583          4.52601875        2.138914945  Tertiary Carnivore
## 4584          4.56076888        1.432814265 Secondary Carnivore
## 4585          3.57632647        0.470853119 Secondary Carnivore
## 4586          2.94968834        1.307030142 Secondary Carnivore
## 4587          7.17142638        6.670778349 Secondary Carnivore
## 4588          2.37954613        0.490146528  Tertiary Carnivore
## 4589          1.80500470        1.886232978 Secondary Carnivore
## 4590          2.12584791        3.515099295 Secondary Carnivore
## 4591          4.80541352        4.094232049 Secondary Carnivore
## 4592          1.68639895        0.130455954 Secondary Carnivore
## 4593          6.91214563        6.670778349 Secondary Carnivore
## 4594          5.57473625        3.473231162   Primary Carnivore
## 4595          7.21604848        6.849625561 Secondary Carnivore
## 4596          2.43562887        2.853935439 Secondary Carnivore
## 4597          2.07693841        0.735932630 Secondary Carnivore
## 4598          1.28093385        0.130455954  Tertiary Carnivore
## 4599          1.41342303        0.413477448 Secondary Carnivore
## 4600          4.26310232        2.433189939  Tertiary Carnivore
## 4601          7.68959991        6.849625561 Secondary Carnivore
## 4602          4.26267988        7.288251436   Primary Carnivore
## 4603          3.49650756        1.168798094 Secondary Carnivore
## 4604          4.00551335        3.146907198 Secondary Carnivore
## 4605          4.20916024        1.886232978   Primary Carnivore
## 4606          7.83241093        6.942696930 Secondary Carnivore
## 4607          4.53646299        3.146907198 Secondary Carnivore
## 4608          8.53210151        6.849625561 Secondary Carnivore
## 4609          1.33500107        0.015041422 Secondary Carnivore
## 4610          2.82731362        0.002344505 Secondary Carnivore
## 4611          4.70048037        6.670778349 Secondary Carnivore
## 4612          4.35388433        1.168798094 Secondary Carnivore
## 4613          4.61541750        3.473231162  Tertiary Carnivore
## 4614          1.42069579        0.214753881 Secondary Carnivore
## 4615          1.06471074        0.305596011  Tertiary Carnivore
## 4616          5.16478597        7.288251436 Secondary Carnivore
## 4617          0.00000000        0.004578480 Secondary Carnivore
## 4618          1.09192330        1.180964506 Secondary Carnivore
## 4619          0.47000363        0.147199990 Secondary Carnivore
## 4620          0.00000000        0.004578480   Primary Carnivore
## 4621          5.39816270        7.288251436  Tertiary Carnivore
## 4622          1.19392247        1.670180746   Primary Carnivore
## 4623          5.50938834        4.094232049  Tertiary Carnivore
## 4624          1.77495235        0.490146528  Tertiary Carnivore
## 4625          3.23474917        1.670180746   Primary Carnivore
## 4626          3.06339092        0.735932630 Secondary Carnivore
## 4627          3.71843826        2.387053327 Secondary Carnivore
## 4628          1.67147330        0.856029167  Tertiary Carnivore
## 4629          4.98360662        6.849625561   Primary Carnivore
## 4630          0.00000000        0.147199990 Secondary Carnivore
## 4631          1.79175947        0.223982763 Secondary Carnivore
## 4632          1.49290410        0.823328714 Secondary Carnivore
## 4633          2.94443898        0.757060688 Secondary Carnivore
## 4634          2.60268969        0.009889753   Primary Carnivore
## 4635          1.69708242        2.122440181 Secondary Carnivore
## 4636          3.43398720        0.002344505 Secondary Carnivore
## 4637          4.80745776        1.168798094   Primary Carnivore
## 4638          1.60140574        0.281204828 Secondary Carnivore
## 4639          4.56954301        6.849625561 Secondary Carnivore
## 4640          1.85629799        0.002059853 Secondary Carnivore
## 4641          2.52652832        0.015041422   Primary Carnivore
## 4642          2.16332303        0.223982763 Secondary Carnivore
## 4643          1.66770682        2.894695819 Secondary Carnivore
## 4644          4.47960696        6.849625561 Secondary Carnivore
## 4645          0.00000000        0.015041422   Primary Carnivore
## 4646          4.85203026        6.942696930 Secondary Carnivore
## 4647          5.02388052        4.094232049   Primary Carnivore
## 4648          1.85848310        0.900183757   Primary Carnivore
## 4649          6.44730586        7.288251436 Secondary Carnivore
## 4650          0.00000000        1.315195554   Primary Carnivore
## 4651          4.79579055        7.288251436   Primary Carnivore
## 4652          2.86789890        2.387053327 Secondary Carnivore
## 4653          3.15700042        2.387053327 Secondary Carnivore
## 4654          1.09192330        0.211247175 Secondary Carnivore
## 4655          1.82454929        0.063185562 Secondary Carnivore
## 4656          1.02961942        2.894695819   Primary Carnivore
## 4657          4.59208495        2.387053327 Secondary Carnivore
## 4658          3.91657264        4.232513096   Primary Carnivore
## 4659          1.76644166        4.047182371 Secondary Carnivore
## 4660          2.74071098        3.873611973 Secondary Carnivore
## 4661          0.99325177        0.878396534   Primary Carnivore
## 4662          3.26956894        2.894695819   Primary Carnivore
## 4663          3.01944880        2.853935439 Secondary Carnivore
## 4664          7.72832775        6.670778349 Secondary Carnivore
## 4665          1.12167756        0.015041422   Primary Carnivore
## 4666          1.08180517        0.211247175 Secondary Carnivore
## 4667          0.83290912        0.470853119  Tertiary Carnivore
## 4668          4.12713439        0.004578480  Tertiary Carnivore
## 4669          0.00000000        1.126655451   Primary Carnivore
## 4670          3.58629287        6.670778349   Primary Carnivore
## 4671          0.01064316        0.305596011  Tertiary Carnivore
## 4672          1.38629436        0.020024930  Tertiary Carnivore
## 4673          1.24126859        0.561550440 Secondary Carnivore
## 4674          5.48188814        6.670778349 Secondary Carnivore
## 4675          7.34018684        6.942696930  Tertiary Carnivore
## 4676          1.32972401        0.015041422  Tertiary Carnivore
## 4677          6.06092531        2.610718759 Secondary Carnivore
## 4678          7.88615659        6.670778349 Secondary Carnivore
## 4679          4.25844557        0.002059853 Secondary Carnivore
## 4680          8.12346889        7.288251436 Secondary Carnivore
## 4681          1.14740245        0.015041422 Secondary Carnivore
## 4682          6.83936937        6.849625561 Secondary Carnivore
## 4683          6.41345896        4.094232049 Secondary Carnivore
## 4684          3.92395158        2.277308093   Primary Carnivore
## 4685          3.54673969        6.670778349 Secondary Carnivore
## 4686          3.56953270        2.387053327 Secondary Carnivore
## 4687          0.00000000        0.130455954 Secondary Carnivore
## 4688          4.41642806        6.670778349 Secondary Carnivore
## 4689          3.21112587        3.651616415 Secondary Carnivore
## 4690          3.01553490        0.015041422  Tertiary Carnivore
## 4691          4.29959566        2.153233085   Primary Carnivore
## 4692          4.83628191        6.849625561 Secondary Carnivore
## 4693          4.24769492        3.873611973 Secondary Carnivore
## 4694          3.91921707        1.506685742 Secondary Carnivore
## 4695          0.26236426        2.024989105   Primary Carnivore
## 4696          1.40609699        0.305596011  Tertiary Carnivore
## 4697          0.00000000        1.459857720   Primary Carnivore
## 4698          5.14166356        7.288251436  Tertiary Carnivore
## 4699          3.28057281        2.433189939 Secondary Carnivore
## 4700          4.45781801        7.288251436   Primary Carnivore
## 4701          4.27527626        6.670778349   Primary Carnivore
## 4702          7.52736356        7.288251436 Secondary Carnivore
## 4703          4.23555473        4.094232049 Secondary Carnivore
## 4704          0.02078254        1.180964506 Secondary Carnivore
## 4705          0.85441533        2.153233085           Herbivore
## 4706          0.00000000        0.130455954 Secondary Carnivore
## 4707          1.99877364        0.015041422  Tertiary Carnivore
## 4708          0.00000000        3.146907198   Primary Carnivore
## 4709          7.95384545        6.849625561 Secondary Carnivore
## 4710          2.64617480        0.305596011  Tertiary Carnivore
## 4711          3.12236492        3.038160131 Secondary Carnivore
## 4712          0.00000000        0.340191127   Primary Carnivore
## 4713          4.41558229        3.943759073 Secondary Carnivore
## 4714          3.70179568        0.735932630   Primary Carnivore
## 4715          4.56017282        3.146907198 Secondary Carnivore
## 4716          2.13416644        1.742111989 Secondary Carnivore
## 4717          6.77445243        6.670778349 Secondary Carnivore
## 4718          2.54160199        2.050338578   Primary Carnivore
## 4719          2.08815348        0.009889753           Herbivore
## 4720          2.89668512        2.136925014 Secondary Carnivore
## 4721          2.10413415        1.886232978 Secondary Carnivore
## 4722          4.71573613        3.304296954 Secondary Carnivore
## 4723          7.34665516        7.288251436 Secondary Carnivore
## 4724          5.22810947        1.168798094   Primary Carnivore
## 4725          2.21920348        0.223982763 Secondary Carnivore
## 4726          2.79116511        1.886232978   Primary Carnivore
## 4727          2.56240767        2.075946520   Primary Carnivore
## 4728          2.84490938        3.473231162  Tertiary Carnivore
## 4729          1.52388002        1.532760019 Secondary Carnivore
## 4730          3.63663834        3.651616415   Primary Carnivore
## 4731          2.36368019        0.015041422   Primary Carnivore
## 4732          3.92789635        6.849625561   Primary Carnivore
## 4733          2.91695959        2.433189939 Secondary Carnivore
## 4734          6.52590904        6.670778349 Secondary Carnivore
## 4735          2.45958884        0.015041422   Primary Carnivore
## 4736          2.59525471        3.473231162 Secondary Carnivore
## 4737          7.61386804        6.670778349 Secondary Carnivore
## 4738          2.27212589        1.532760019   Primary Carnivore
## 4739          3.68637632        2.153233085 Secondary Carnivore
## 4740          0.00000000        0.211247175 Secondary Carnivore
## 4741          3.33932198        2.404044412 Secondary Carnivore
## 4742          1.90389697        0.211247175 Secondary Carnivore
## 4743          3.25424297        3.515099295 Secondary Carnivore
## 4744          2.98568194        4.121930401   Primary Carnivore
## 4745          2.82137889        2.153233085 Secondary Carnivore
## 4746          3.15700042        1.168798094 Secondary Carnivore
## 4747          5.61312811        6.849625561   Primary Carnivore
## 4748          3.23080440        2.241290896   Primary Carnivore
## 4749          2.05412373        0.856029167 Secondary Carnivore
## 4750          2.47653840        0.885298676  Tertiary Carnivore
## 4751          3.24259235        0.749689812   Primary Carnivore
## 4752          3.23867845        3.146907198 Secondary Carnivore
## 4753          2.27829240        2.387053327  Tertiary Carnivore
## 4754          5.44570235        1.168798094   Primary Carnivore
## 4755          5.77455155        6.942696930  Tertiary Carnivore
## 4756          4.57367952        4.094232049 Secondary Carnivore
## 4757          6.28897318        6.670778349 Secondary Carnivore
## 4758          4.86375810        1.673740129   Primary Carnivore
## 4759          2.81367068        2.891851822  Tertiary Carnivore
## 4760          0.00000000        0.002344505 Secondary Carnivore
## 4761          1.20297230        0.015041422   Primary Carnivore
## 4762          2.83749827        2.853935439 Secondary Carnivore
## 4763          7.05142263        6.670778349 Secondary Carnivore
## 4764          3.25037449        0.020024930   Primary Carnivore
## 4765          1.00063188        1.711701702 Secondary Carnivore
## 4766          7.78130551        6.670778349 Secondary Carnivore
## 4767          7.82043952        7.288251436 Secondary Carnivore
## 4768          8.06495089        4.094232049 Secondary Carnivore
## 4769          0.79750720        0.413477448 Secondary Carnivore
## 4770          0.00000000        1.673740129           Herbivore
## 4771          4.51085951        7.288251436 Secondary Carnivore
## 4772          2.25023861        0.214753881 Secondary Carnivore
## 4773          2.82137889        0.009889753   Primary Carnivore
## 4774          8.50329709        7.288251436 Secondary Carnivore
## 4775          4.58598737        4.094232049 Secondary Carnivore
## 4776          3.79098468        1.168798094 Secondary Carnivore
## 4777          0.00000000        0.015041422   Primary Carnivore
## 4778          2.54944517        0.015041422  Tertiary Carnivore
## 4779          5.52146092        6.942696930 Secondary Carnivore
## 4780          2.94443898        2.894695819   Primary Carnivore
## 4781          1.62136648        1.180964506  Tertiary Carnivore
## 4782          3.72810017        1.673740129 Secondary Carnivore
## 4783          3.66612247        6.849625561 Secondary Carnivore
## 4784          0.83290912        0.147199990  Tertiary Carnivore
## 4785          1.66203036        0.009889753  Tertiary Carnivore
## 4786          4.30000280        6.849625561 Secondary Carnivore
## 4787          1.69009582        0.015041422 Secondary Carnivore
## 4788          3.88362353        6.849625561   Primary Carnivore
## 4789          2.54944517        0.044241443   Primary Carnivore
## 4790          0.63180355        4.047182371   Primary Carnivore
## 4791          3.87120101        1.673740129 Secondary Carnivore
## 4792          3.59731226        2.153233085 Secondary Carnivore
## 4793          4.66343909        6.849625561 Secondary Carnivore
## 4794          5.57215403        4.259772081   Primary Carnivore
## 4795          1.27256560        0.823328714 Secondary Carnivore
## 4796          0.82855182        1.877421323 Secondary Carnivore
## 4797          6.11146734        7.288251436   Primary Carnivore
## 4798          0.00000000        0.116104790 Secondary Carnivore
## 4799          4.98360662        4.094232049   Primary Carnivore
## 4800          4.46579317        3.473231162   Primary Carnivore
## 4801          5.35185813        7.288251436  Tertiary Carnivore
## 4802          1.99741771        0.490146528  Tertiary Carnivore
## 4803          3.81683282        2.153233085 Secondary Carnivore
## 4804          0.30748470        0.211247175  Tertiary Carnivore
## 4805          6.27795841        6.670778349 Secondary Carnivore
## 4806          1.22671229        0.305596011  Tertiary Carnivore
## 4807          0.69314718        0.470853119  Tertiary Carnivore
## 4808          2.91158951        1.962719022 Secondary Carnivore
## 4809          3.93573953        1.168798094 Secondary Carnivore
## 4810          2.77819796        0.015041422   Primary Carnivore
## 4811          4.29728541        4.094232049 Secondary Carnivore
## 4812          0.00000000        0.009889753  Tertiary Carnivore
## 4813          7.22875123        6.670778349 Secondary Carnivore
## 4814          5.55902642        1.168798094   Primary Carnivore
## 4815          7.02028007        6.670778349 Secondary Carnivore
## 4816          2.37861978        2.387053327 Secondary Carnivore
## 4817          4.48863637        6.670778349 Secondary Carnivore
## 4818          0.78845736        0.130455954 Secondary Carnivore
## 4819          0.40546511        2.894695819   Primary Carnivore
## 4820          7.34665516        7.288251436 Secondary Carnivore
## 4821          0.00000000        1.459857720   Primary Carnivore
## 4822          0.00000000        0.002344505 Secondary Carnivore
## 4823          4.92308559        7.288251436 Secondary Carnivore
## 4824          3.36729583        1.168798094 Secondary Carnivore
## 4825          1.78170913        0.856029167   Primary Carnivore
## 4826          6.08904488        7.288251436 Secondary Carnivore
## 4827          2.16676537        0.015041422  Tertiary Carnivore
## 4828          3.75560309        6.942696930 Secondary Carnivore
## 4829          0.83290912        4.262479896 Secondary Carnivore
## 4830          1.05779029        2.122440181 Secondary Carnivore
## 4831          4.51085951        7.288251436 Secondary Carnivore
## 4832          1.93152141        0.490146528 Secondary Carnivore
## 4833          2.03339760        1.742111989 Secondary Carnivore
## 4834          3.68135119        2.387053327 Secondary Carnivore
## 4835          2.56510319        2.254856321   Primary Carnivore
## 4836          5.64897424        4.259772081 Secondary Carnivore
## 4837          3.51868408        1.886232978 Secondary Carnivore
## 4838          2.54944517        0.281204828 Secondary Carnivore
## 4839          5.89715387        6.942696930  Tertiary Carnivore
## 4840          2.61739583        1.742111989 Secondary Carnivore
## 4841          2.24191003        6.670778349 Secondary Carnivore
## 4842          7.47363711        7.288251436 Secondary Carnivore
## 4843          1.96571278        0.856029167 Secondary Carnivore
## 4844          0.40546511        0.063185562 Secondary Carnivore
## 4845          6.19031541        6.942696930  Tertiary Carnivore
## 4846          2.28033948        1.532760019   Primary Carnivore
## 4847          2.13947776        4.047182371 Secondary Carnivore
## 4848          3.49650756        3.146907198 Secondary Carnivore
## 4849          0.53062825        0.130455954  Tertiary Carnivore
## 4850          3.95316495        6.670778349 Secondary Carnivore
## 4851          3.73050113        6.670778349 Secondary Carnivore
## 4852          3.05870707        3.038160131 Secondary Carnivore
## 4853          8.44080878        6.849625561 Secondary Carnivore
## 4854          2.32630162        2.845177164 Secondary Carnivore
## 4855          1.48160454        0.130455954 Secondary Carnivore
## 4856          3.57234564        3.168005566 Secondary Carnivore
## 4857          6.59441346        7.288251436  Tertiary Carnivore
## 4858          4.60616969        4.259772081  Tertiary Carnivore
## 4859          1.54756251        0.015041422 Secondary Carnivore
## 4860          4.22537282        1.168798094 Secondary Carnivore
## 4861          0.00000000        0.470853119  Tertiary Carnivore
## 4862          2.98061864        2.387053327 Secondary Carnivore
## 4863          3.76352300        1.168798094 Secondary Carnivore
## 4864          3.19179236        1.540263127 Secondary Carnivore
## 4865          4.01096295        6.670778349 Secondary Carnivore
## 4866          5.11198779        4.094232049  Tertiary Carnivore
## 4867          1.16315081        1.126655451   Primary Carnivore
## 4868          1.19392247        0.211247175 Secondary Carnivore
## 4869          7.39079852        7.288251436 Secondary Carnivore
## 4870          4.66861436        2.153233085 Secondary Carnivore
## 4871          1.54756251        0.009889753  Tertiary Carnivore
## 4872          6.06610809        7.288251436  Tertiary Carnivore
## 4873          4.04480412        6.942696930  Tertiary Carnivore
## 4874          4.98561830        3.304296954   Primary Carnivore
## 4875          6.77502357        6.849625561 Secondary Carnivore
## 4876          4.62497281        3.168005566 Secondary Carnivore
## 4877          2.58021683        1.532760019   Primary Carnivore
## 4878          4.98360662        4.094232049   Primary Carnivore
## 4879          2.63905733        2.153233085 Secondary Carnivore
## 4880          5.22035583        3.146907198 Secondary Carnivore
## 4881          7.13297667        6.670778349 Secondary Carnivore
## 4882          2.58776404        0.757060688 Secondary Carnivore
## 4883          2.11709853        3.515099295 Secondary Carnivore
## 4884          2.36837283        0.735932630 Secondary Carnivore
## 4885          4.18813844        6.849625561  Tertiary Carnivore
## 4886          0.00000000        0.004578480 Secondary Carnivore
## 4887          3.41444261        1.742111989 Secondary Carnivore
## 4888          5.13603370        1.673740129 Secondary Carnivore
## 4889          1.80664808        0.116104790 Secondary Carnivore
## 4890          3.39114705        1.670180746 Secondary Carnivore
## 4891          1.30019166        2.845177164 Secondary Carnivore
## 4892          3.13113691        4.259772081 Secondary Carnivore
## 4893          2.64326276        0.490146528 Secondary Carnivore
## 4894          0.00000000        0.015041422 Secondary Carnivore
## 4895          4.08260931        6.670778349 Secondary Carnivore
## 4896          5.02388052        6.942696930 Secondary Carnivore
## 4897          1.04027671        0.885298676 Secondary Carnivore
## 4898          3.94931879        7.161415474 Secondary Carnivore
## 4899          0.00000000        0.002059853 Secondary Carnivore
## 4900          2.14943391        0.735932630 Secondary Carnivore
## 4901          7.29369772        7.288251436 Secondary Carnivore
## 4902          1.53686722        0.015041422  Tertiary Carnivore
## 4903          0.00000000        0.147199990 Secondary Carnivore
## 4904          2.11142459        0.900183757 Secondary Carnivore
## 4905          1.82454929        0.490146528  Tertiary Carnivore
## 4906          0.83290912        1.831515834 Secondary Carnivore
## 4907          4.75780543        4.094232049 Secondary Carnivore
## 4908          2.74084002        1.886232978 Secondary Carnivore
## 4909          6.03954017        1.886232978 Secondary Carnivore
## 4910          0.17395331        1.532760019  Tertiary Carnivore
## 4911          3.28091122        3.146907198 Secondary Carnivore
## 4912          5.35185813        7.288251436  Tertiary Carnivore
## 4913          0.00000000        2.404044412           Herbivore
## 4914          1.19392247        0.147199990 Secondary Carnivore
## 4915          4.44968528        1.168798094  Tertiary Carnivore
## 4916          4.82807371        1.673740129   Primary Carnivore
## 4917          0.00000000        1.877421323 Secondary Carnivore
## 4918          7.68303529        6.849625561 Secondary Carnivore
## 4919          1.85207032        0.211247175 Secondary Carnivore
## 4920          0.19885086        0.305596011 Secondary Carnivore
## 4921          1.65822808        0.885298676  Tertiary Carnivore
## 4922          1.84292776        1.962719022 Secondary Carnivore
## 4923          2.58021683        2.136925014 Secondary Carnivore
## 4924          5.77299754        1.886232978   Primary Carnivore
## 4925          4.45771372        1.886232978   Primary Carnivore
## 4926          2.77102500        1.962719022  Tertiary Carnivore
## 4927          3.94352167        3.146907198  Tertiary Carnivore
## 4928          2.95491028        2.472143654   Primary Carnivore
## 4929          7.98214318        6.849625561 Secondary Carnivore
## 4930          4.79892612        2.387053327   Primary Carnivore
## 4931          0.92821930        6.942696930           Herbivore
## 4932          7.83494639        6.670778349 Secondary Carnivore
## 4933          7.03341830        6.670778349 Secondary Carnivore
## 4934          1.32175584        2.254856321 Secondary Carnivore
## 4935          6.78649119        6.670778349  Tertiary Carnivore
## 4936          0.00000000        1.670180746   Primary Carnivore
## 4937          0.00000000        2.404044412           Herbivore
## 4938          5.90511659        1.886232978   Primary Carnivore
## 4939          4.61485315        1.432814265 Secondary Carnivore
## 4940          4.22753423        1.506685742   Primary Carnivore
## 4941          7.39184671        7.288251436 Secondary Carnivore
## 4942          1.28923265        0.856029167 Secondary Carnivore
## 4943          1.51292701        0.015041422 Secondary Carnivore
## 4944          0.97455964        0.305596011  Tertiary Carnivore
## 4945          7.97968130        7.288251436 Secondary Carnivore
## 4946          1.18784342        0.561550440 Secondary Carnivore
## 4947          4.06355884        2.138914945 Secondary Carnivore
## 4948          3.19043520        2.610718759 Secondary Carnivore
## 4949          1.76985463        0.015041422  Tertiary Carnivore
## 4950          5.38587026        0.004578480  Tertiary Carnivore
## 4951          1.32441896        4.047182371 Secondary Carnivore
## 4952          0.83290912        5.169038067   Primary Carnivore
## 4953          2.56617937        1.962719022 Secondary Carnivore
## 4954          2.17815501        2.845177164 Secondary Carnivore
## 4955          4.96284463        6.670778349  Tertiary Carnivore
## 4956          2.16217294        0.009889753   Primary Carnivore
## 4957          0.90421815        0.305596011  Tertiary Carnivore
## 4958          0.00000000        1.886232978           Herbivore
## 4959          1.34547237        0.856029167 Secondary Carnivore
## 4960          0.00000000        0.004578480  Tertiary Carnivore
## 4961          3.57660621        1.432814265  Tertiary Carnivore
## 4962          0.43048287        0.856029167  Tertiary Carnivore
## 4963          7.98132323        6.670778349 Secondary Carnivore
## 4964          3.66867675        0.749689812   Primary Carnivore
## 4965          1.19392247        1.532760019  Tertiary Carnivore
## 4966          4.18801704        3.651616415   Primary Carnivore
## 4967          1.44926916        1.251683108 Secondary Carnivore
## 4968          4.50534985        4.094232049  Tertiary Carnivore
## 4969          2.44633906        0.470853119 Secondary Carnivore
## 4970          4.34510328        6.670778349 Secondary Carnivore
## 4971          4.84418709        3.146907198 Secondary Carnivore
## 4972          1.49962305        0.561550440 Secondary Carnivore
## 4973          6.67997600        6.670778349 Secondary Carnivore
## 4974          2.11384297        0.009889753 Secondary Carnivore
## 4975          3.50453585        3.873611973  Tertiary Carnivore
## 4976          8.49631679        6.849625561 Secondary Carnivore
## 4977          5.86646806        2.153233085  Tertiary Carnivore
## 4978          0.37156356        0.130455954 Secondary Carnivore
## 4979          0.00000000        1.981883583   Primary Carnivore
## 4980          4.31348009        4.259772081 Secondary Carnivore
## 4981          2.82137889        1.168798094 Secondary Carnivore
## 4982          2.65324196        0.002344505 Secondary Carnivore
## 4983          3.85014760        6.849625561 Secondary Carnivore
## 4984          3.86157146        0.015041422 Secondary Carnivore
## 4985          3.26575941        2.387053327 Secondary Carnivore
## 4986          4.62497281        4.259772081 Secondary Carnivore
## 4987          2.94443898        0.004578480  Tertiary Carnivore
## 4988          4.39444915        7.288251436 Secondary Carnivore
## 4989          0.99325177        0.130455954  Tertiary Carnivore
## 4990          4.00369019        1.307030142 Secondary Carnivore
## 4991          0.53999600        0.413477448  Tertiary Carnivore
## 4992          0.26236426        1.920179330   Primary Carnivore
## 4993          3.30310667        1.506685742 Secondary Carnivore
## 4994          0.00000000        0.130455954 Secondary Carnivore
## 4995          4.21331208        1.886232978 Secondary Carnivore
## 4996          5.75574221        1.168798094 Secondary Carnivore
## 4997          1.56024767        0.009889753   Primary Carnivore
## 4998          2.02683159        0.885298676  Tertiary Carnivore
## 4999          4.75531284        3.943759073 Secondary Carnivore
## 5000          4.99767163        4.232513096 Secondary Carnivore
## 5001          2.22354189        0.015041422 Secondary Carnivore
## 5002          3.26575941        5.169038067   Primary Carnivore
## 5003          1.71918878        0.856029167   Primary Carnivore
## 5004          1.13462273        2.136925014 Secondary Carnivore
## 5005          0.58778666        0.147199990 Secondary Carnivore
## 5006          1.84150156        1.711701702  Tertiary Carnivore
## 5007          2.97041447        2.387053327 Secondary Carnivore
## 5008          0.00000000        0.002344505 Secondary Carnivore
## 5009          0.00000000        2.404044412           Herbivore
## 5010          2.77258872        0.116104790 Secondary Carnivore
## 5011          1.85629799        0.490146528  Tertiary Carnivore
## 5012          4.59410924        3.168005566 Secondary Carnivore
## 5013          5.56452041        7.288251436  Tertiary Carnivore
## 5014          8.05360097        6.670778349 Secondary Carnivore
## 5015          3.24649099        1.307030142 Secondary Carnivore
## 5016          1.70292826        0.015041422 Secondary Carnivore
## 5017          3.88752537        0.749689812   Primary Carnivore
## 5018          0.00000000        0.015041422  Tertiary Carnivore
## 5019          5.18178355        6.849625561 Secondary Carnivore
## 5020          2.40865536        1.540263127 Secondary Carnivore
## 5021          2.90690106        3.515099295 Secondary Carnivore
## 5022          2.61739583        0.757060688  Tertiary Carnivore
## 5023          2.52572864        0.735932630 Secondary Carnivore
## 5024          3.36037539        2.891851822  Tertiary Carnivore
## 5025          3.35340672        5.169038067   Primary Carnivore
## 5026          0.00000000        1.886232978           Herbivore
## 5027          1.98787435        2.241290896   Primary Carnivore
## 5028          2.68852753        3.226603994 Secondary Carnivore
## 5029          2.58776404        2.136925014 Secondary Carnivore
## 5030          1.35325451        2.404044412 Secondary Carnivore
## 5031          4.70953020        7.288251436 Secondary Carnivore
## 5032          7.35212054        6.849625561 Secondary Carnivore
## 5033          2.56494936        1.315195554 Secondary Carnivore
## 5034          5.81889528        6.849625561 Secondary Carnivore
## 5035          1.79275897        0.116104790 Secondary Carnivore
## 5036          1.62924054        0.147199990 Secondary Carnivore
## 5037          7.75022723        6.670778349 Secondary Carnivore
## 5038          3.79773386        4.094232049 Secondary Carnivore
## 5039          0.95551145        0.490146528  Tertiary Carnivore
## 5040          1.53255687        2.075946520 Secondary Carnivore
## 5041          5.14813381        1.886232978   Primary Carnivore
## 5042          0.00000000        1.886232978           Herbivore
## 5043          0.33647224        2.894695819   Primary Carnivore
## 5044          3.28578653        0.015041422 Secondary Carnivore
## 5045          2.29253476        1.315195554   Primary Carnivore
## 5046          7.29715875        6.849625561 Secondary Carnivore
## 5047          0.26236426        2.024989105   Primary Carnivore
## 5048          0.68813464        1.251683108 Secondary Carnivore
## 5049          1.02961942        0.470853119  Tertiary Carnivore
## 5050          1.26976054        1.180964506 Secondary Carnivore
## 5051          4.04305127        6.670778349  Tertiary Carnivore
## 5052          3.96840334        2.050338578   Primary Carnivore
## 5053          5.72227706        6.849625561 Secondary Carnivore
## 5054          4.79579055        7.288251436 Secondary Carnivore
## 5055          7.40482675        6.670778349 Secondary Carnivore
## 5056          0.78845736        7.161415474   Primary Carnivore
## 5057          5.57215403        4.259772081   Primary Carnivore
## 5058          3.51452607        1.886232978 Secondary Carnivore
## 5059          1.87640694        0.885298676  Tertiary Carnivore
## 5060          2.63905733        0.002059853 Secondary Carnivore
## 5061          0.00000000        2.894695819   Primary Carnivore
## 5062          3.40452517        1.886232978 Secondary Carnivore
## 5063          0.00000000        0.002059853 Secondary Carnivore
## 5064          2.24918432        0.009889753   Primary Carnivore
## 5065          1.66392610        0.211247175 Secondary Carnivore
## 5066          0.06765865        0.305596011 Secondary Carnivore
## 5067          2.27212589        1.670180746 Secondary Carnivore
## 5068          2.77881927        0.885298676  Tertiary Carnivore
## 5069          6.58340922        4.259772081  Tertiary Carnivore
## 5070          0.00000000        1.670180746   Primary Carnivore
## 5071          1.45161383        1.532760019 Secondary Carnivore
## 5072          1.99333884        1.307030142 Secondary Carnivore
## 5073          0.00000000        0.002059853 Secondary Carnivore
## 5074          2.04122033        0.063185562 Secondary Carnivore
## 5075          2.23537634        0.015041422 Secondary Carnivore
## 5076          2.58021683        2.891851822 Secondary Carnivore
## 5077          4.25134831        1.168798094 Secondary Carnivore
## 5078          0.00000000        2.404044412           Herbivore
## 5079          1.47476301        0.900183757 Secondary Carnivore
## 5080          6.77490937        6.849625561 Secondary Carnivore
## 5081          3.42816383        0.015041422   Primary Carnivore
## 5082          1.61541998        0.009889753  Tertiary Carnivore
## 5083          6.90505163        6.849625561 Secondary Carnivore
## 5084          1.66770682        0.002344505 Secondary Carnivore
## 5085          3.03013370        3.146907198 Secondary Carnivore
## 5086          1.81156210        0.211247175 Secondary Carnivore
## 5087          1.01884732        0.223982763 Secondary Carnivore
## 5088          1.51072194        0.015041422  Tertiary Carnivore
## 5089          5.68357977        4.094232049  Tertiary Carnivore
## 5090          4.79579055        7.288251436 Secondary Carnivore
## 5091          1.19996478        0.015041422  Tertiary Carnivore
## 5092          7.45066080        7.288251436 Secondary Carnivore
## 5093          2.47863704        1.711701702   Primary Carnivore
## 5094          1.31640823        0.214753881 Secondary Carnivore
## 5095          6.08677473        4.094232049 Secondary Carnivore
## 5096          3.51443678        2.610718759 Secondary Carnivore
## 5097          2.92316158        3.473231162 Secondary Carnivore
## 5098          1.77495235        0.002344505 Secondary Carnivore
## 5099          0.00000000        1.877421323 Secondary Carnivore
## 5100          2.32727771        0.009889753           Herbivore
## 5101          1.43983513        0.305596011  Tertiary Carnivore
## 5102          5.21553341        0.735932630   Primary Carnivore
## 5103          4.19166787        2.433189939 Secondary Carnivore
## 5104          1.47796155        1.711701702  Tertiary Carnivore
## 5105          2.28238239        1.315195554 Secondary Carnivore
## 5106          2.55722731        1.315195554 Secondary Carnivore
## 5107          3.16665579        0.470853119 Secondary Carnivore
## 5108          0.00000000        0.002344505  Tertiary Carnivore
## 5109          2.79116511        0.009889753           Herbivore
## 5110          1.75958057        4.262479896 Secondary Carnivore
## 5111          1.29746315        0.413477448 Secondary Carnivore
## 5112          2.85647021        1.886232978 Secondary Carnivore
## 5113          2.85070650        0.063185562 Secondary Carnivore
## 5114          5.18505908        1.432814265 Secondary Carnivore
## 5115          1.20297230        1.831515834  Tertiary Carnivore
## 5116          3.26956894        1.886232978 Secondary Carnivore
## 5117          3.80443779        6.670778349   Primary Carnivore
## 5118          5.01727984        7.288251436  Tertiary Carnivore
## 5119          3.85227300        6.670778349 Secondary Carnivore
## 5120          3.27222700        0.735932630   Primary Carnivore
## 5121          1.08180517        0.116104790 Secondary Carnivore
## 5122          1.89611948        0.885298676 Secondary Carnivore
## 5123          1.66770682        0.490146528 Secondary Carnivore
## 5124          4.27495632        4.232513096  Tertiary Carnivore
## 5125          5.77827133        6.670778349  Tertiary Carnivore
## 5126          0.00000000        1.673740129           Herbivore
## 5127          1.48387469        0.885298676 Secondary Carnivore
## 5128          3.55820113        2.153233085           Herbivore
## 5129          0.78845736        2.145288428 Secondary Carnivore
## 5130          2.00417906        0.211247175 Secondary Carnivore
## 5131          8.42299240        6.849625561 Secondary Carnivore
## 5132          6.01859321        7.288251436  Tertiary Carnivore
## 5133          0.00000000        0.002059853 Secondary Carnivore
## 5134          1.95727391        0.004578480   Primary Carnivore
## 5135          1.62924054        0.223982763 Secondary Carnivore
## 5136          1.04027671        1.454402431 Secondary Carnivore
## 5137          5.44241771        2.153233085 Secondary Carnivore
## 5138          3.06339092        3.943759073 Secondary Carnivore
## 5139          2.53369681        1.981883583   Primary Carnivore
## 5140          4.09434456        7.288251436 Secondary Carnivore
## 5141          3.28776736        2.433189939  Tertiary Carnivore
## 5142          5.30330491        7.288251436 Secondary Carnivore
## 5143          0.00000000        0.009889753 Secondary Carnivore
## 5144          5.28826703        2.153233085  Tertiary Carnivore
## 5145          0.95551145        0.211247175 Secondary Carnivore
## 5146          1.67335124        0.735932630 Secondary Carnivore
## 5147          2.70136121        3.515099295 Secondary Carnivore
## 5148          1.18172720        2.387053327 Secondary Carnivore
## 5149          2.41126011        1.014024833 Secondary Carnivore
## 5150          2.32238772        0.223982763 Secondary Carnivore
## 5151          7.51261754        6.942696930 Secondary Carnivore
## 5152          0.00000000        0.009889753 Secondary Carnivore
## 5153          2.63905733        0.002059853 Secondary Carnivore
## 5154          0.91629073        0.063185562 Secondary Carnivore
## 5155          3.02456266        2.254856321 Secondary Carnivore
## 5156          1.41098697        0.147199990 Secondary Carnivore
## 5157          3.78940329        0.214753881  Tertiary Carnivore
## 5158          0.83290912        0.130455954 Secondary Carnivore
## 5159          7.62525355        6.849625561 Secondary Carnivore
## 5160          3.34990409        2.387053327   Primary Carnivore
## 5161          4.61512052        7.288251436  Tertiary Carnivore
## 5162          3.55010577        1.540263127 Secondary Carnivore
## 5163          1.24990174        2.241290896   Primary Carnivore
## 5164          7.22329568        7.288251436 Secondary Carnivore
## 5165          4.71849887        3.146907198 Secondary Carnivore
## 5166          3.92296295        2.138914945 Secondary Carnivore
## 5167          3.28091122        1.168798094   Primary Carnivore
## 5168          2.38139627        2.136925014 Secondary Carnivore
## 5169          1.34547237        0.885298676 Secondary Carnivore
## 5170          2.23697934        0.490146528   Primary Carnivore
## 5171          2.91463067        2.136925014 Secondary Carnivore
## 5172          4.30217141        0.002059853 Secondary Carnivore
## 5173          1.13140211        0.470853119  Tertiary Carnivore
## 5174          3.38113072        1.632888289 Secondary Carnivore
## 5175          1.53901545        2.853935439 Secondary Carnivore
## 5176          2.98061864        0.885298676  Tertiary Carnivore
## 5177          1.95868534        0.211247175 Secondary Carnivore
## 5178          1.68639895        7.161415474 Secondary Carnivore
## 5179          3.09557761        0.009889753   Primary Carnivore
## 5180          2.63991411        2.254856321   Primary Carnivore
## 5181          0.00000000        0.305596011 Secondary Carnivore
## 5182          3.36037539        1.168798094 Secondary Carnivore
## 5183          1.59533899        0.413477448 Secondary Carnivore
## 5184          3.56133013        1.886232978 Secondary Carnivore
## 5185          4.65396035        1.168798094 Secondary Carnivore
## 5186          0.00000000        1.459857720   Primary Carnivore
## 5187          7.34968088        6.849625561 Secondary Carnivore
## 5188          4.68213123        6.670778349  Tertiary Carnivore
## 5189          1.31908561        0.004578480   Primary Carnivore
## 5190          8.85237889        7.288251436 Secondary Carnivore
## 5191          0.93216408        4.094232049           Herbivore
## 5192          4.86753445        2.153233085 Secondary Carnivore
## 5193          0.00000000        0.281204828 Secondary Carnivore
## 5194          2.12823171        0.211247175 Secondary Carnivore
## 5195          5.67194775        1.886232978 Secondary Carnivore
## 5196          0.82417544        1.831515834   Primary Carnivore
## 5197          0.63657683        4.259772081           Herbivore
## 5198          6.61069604        6.942696930 Secondary Carnivore
## 5199          3.42426265        3.651616415  Tertiary Carnivore
## 5200          3.73440238        3.943759073 Secondary Carnivore
## 5201          3.66612247        0.749689812   Primary Carnivore
## 5202          2.08193842        0.004578480  Tertiary Carnivore
## 5203          0.00000000        2.145288428 Secondary Carnivore
## 5204          3.77045944        2.050338578   Primary Carnivore
## 5205          8.52734152        7.288251436 Secondary Carnivore
## 5206          3.71571611        2.433189939 Secondary Carnivore
## 5207          3.06339092        0.735932630 Secondary Carnivore
## 5208          2.61520365        3.226603994  Tertiary Carnivore
## 5209          7.20630310        6.849625561 Secondary Carnivore
## 5210          2.83321334        3.146907198 Secondary Carnivore
## 5211          2.80940270        1.420705940 Secondary Carnivore
## 5212          6.99062476        7.288251436 Secondary Carnivore
## 5213          4.47847253        1.168798094 Secondary Carnivore
## 5214          1.68639895        0.116104790 Secondary Carnivore
## 5215          0.00000000        0.009889753           Herbivore
## 5216          2.50470928        1.432814265 Secondary Carnivore
## 5217          6.66134310        6.670778349 Secondary Carnivore
## 5218          0.87546874        0.063185562 Secondary Carnivore
## 5219          3.20453346        2.610718759  Tertiary Carnivore
## 5220          1.08518927        1.180964506  Tertiary Carnivore
## 5221          3.00071982        0.214753881  Tertiary Carnivore
## 5222          2.00552586        1.307030142 Secondary Carnivore
## 5223          1.46325540        4.094232049           Herbivore
## 5224          4.53689135        1.673740129 Secondary Carnivore
## 5225          5.25227343        7.288251436   Primary Carnivore
## 5226          3.03013370        1.670180746   Primary Carnivore
## 5227          5.25017699        3.473231162   Primary Carnivore
## 5228          3.88567903        2.387053327 Secondary Carnivore
## 5229          3.89731538        0.735932630 Secondary Carnivore
## 5230          5.54126355        3.146907198 Secondary Carnivore
## 5231          4.77912349        4.094232049  Tertiary Carnivore
## 5232          1.70402055        0.211247175 Secondary Carnivore
## 5233          2.81540872        0.757060688 Secondary Carnivore
## 5234          7.84998662        6.670778349 Secondary Carnivore
## 5235          0.00000000        0.002344505  Tertiary Carnivore
## 5236          3.94158181        3.168005566 Secondary Carnivore
## 5237          1.73342389        0.015041422 Secondary Carnivore
## 5238          3.49347266        1.168798094 Secondary Carnivore
## 5239          0.26236426        2.107009466   Primary Carnivore
## 5240          0.00000000        2.107009466   Primary Carnivore
## 5241          2.84490938        0.020024930  Tertiary Carnivore
## 5242          0.74193734        2.241290896   Primary Carnivore
## 5243          1.67335124        0.490146528 Secondary Carnivore
## 5244          4.02177387        2.153233085  Tertiary Carnivore
## 5245          4.50976000        6.670778349 Secondary Carnivore
## 5246          4.07414185        3.159561805   Primary Carnivore
## 5247          2.76744803        6.670778349 Secondary Carnivore
## 5248          2.96460274        3.038160131 Secondary Carnivore
## 5249          5.17868888        2.153233085 Secondary Carnivore
## 5250          1.55180880        0.009889753  Tertiary Carnivore
## 5251          1.38629436        0.063185562 Secondary Carnivore
## 5252          4.54648119        3.146907198 Secondary Carnivore
## 5253          2.37024374        0.490146528 Secondary Carnivore
## 5254          0.30748470        4.259772081           Herbivore
## 5255          2.01089500        0.214753881 Secondary Carnivore
## 5256          3.39450839        1.479154529   Primary Carnivore
## 5257          2.68784749        0.757060688   Primary Carnivore
## 5258          2.35801980        3.515099295 Secondary Carnivore
## 5259          3.76584050        0.009889753  Tertiary Carnivore
## 5260          0.81536481        1.251683108 Secondary Carnivore
## 5261          0.00000000        1.886232978           Herbivore
## 5262          1.28923265        0.004578480 Secondary Carnivore
## 5263          2.00512201        2.853935439   Primary Carnivore
## 5264          4.74449725        3.146907198 Secondary Carnivore
## 5265          4.03777421        6.670778349   Primary Carnivore
## 5266          4.71635371        1.168798094 Secondary Carnivore
## 5267          0.36394843        0.413477448  Tertiary Carnivore
## 5268          0.00000000        0.009889753           Herbivore
## 5269          4.94875989        7.288251436 Secondary Carnivore
## 5270          3.99636415        6.670778349 Secondary Carnivore
## 5271          1.15688120        0.004578480   Primary Carnivore
## 5272          3.51452607        1.168798094 Secondary Carnivore
## 5273          8.20305762        7.288251436 Secondary Carnivore
## 5274          0.81668960        1.705681497 Secondary Carnivore
## 5275          2.55567572        0.015041422   Primary Carnivore
## 5276          1.34547237        1.962719022 Secondary Carnivore
## 5277          2.37954613        0.004578480 Secondary Carnivore
## 5278          4.85203026        6.849625561  Tertiary Carnivore
## 5279          0.95165788        1.877421323 Secondary Carnivore
## 5280          4.74701691        0.002059853 Secondary Carnivore
## 5281          0.98954119        0.116104790 Secondary Carnivore
## 5282          7.58054668        6.670778349 Secondary Carnivore
## 5283          3.03013370        2.153233085 Secondary Carnivore
## 5284          6.27476202        7.288251436   Primary Carnivore
## 5285          4.55807858        6.670778349 Secondary Carnivore
## 5286          1.06594239        2.145288428 Secondary Carnivore
## 5287          2.39059597        1.886232978   Primary Carnivore
## 5288          5.50443683        6.942696930 Secondary Carnivore
## 5289          2.01623547        1.886232978   Primary Carnivore
## 5290          1.40609699        2.136925014 Secondary Carnivore
## 5291          0.00000000        2.404044412           Herbivore
## 5292          4.99043259        6.670778349 Secondary Carnivore
## 5293          3.44998755        1.886232978 Secondary Carnivore
## 5294          1.74221902        1.831515834 Secondary Carnivore
## 5295          0.83290912        1.315195554   Primary Carnivore
## 5296          2.67414865        1.168798094 Secondary Carnivore
## 5297          3.39785848        2.153233085 Secondary Carnivore
## 5298          3.76537743        1.886232978   Primary Carnivore
## 5299          0.53062825        2.472143654   Primary Carnivore
## 5300          3.68145194        1.014024833 Secondary Carnivore
## 5301          7.71020519        7.288251436 Secondary Carnivore
## 5302          2.18941639        1.532760019   Primary Carnivore
## 5303          1.82454929        3.226603994  Tertiary Carnivore
## 5304          1.79342475        4.047182371  Tertiary Carnivore
## 5305          6.29876541        6.849625561 Secondary Carnivore
## 5306          2.60172626        0.470853119  Tertiary Carnivore
## 5307          0.40879290        2.891851822 Secondary Carnivore
## 5308          0.00000000        0.009889753  Tertiary Carnivore
## 5309          2.70951579        1.540263127 Secondary Carnivore
## 5310          1.67147330        0.015041422   Primary Carnivore
## 5311          5.30330491        4.259772081 Secondary Carnivore
## 5312          3.64021428        1.070822001   Primary Carnivore
## 5313          1.89069942        2.075946520 Secondary Carnivore
## 5314          4.24849524        6.849625561 Secondary Carnivore
## 5315          3.97168717        4.232513096 Secondary Carnivore
## 5316          0.99694863        1.540263127   Primary Carnivore
## 5317          4.44851638        6.670778349 Secondary Carnivore
## 5318          0.00000000        0.015041422   Primary Carnivore
## 5319          2.62466859        0.004578480 Secondary Carnivore
## 5320          6.68511160        6.849625561 Secondary Carnivore
## 5321          5.30230939        6.670778349  Tertiary Carnivore
## 5322          4.50733683        2.387053327 Secondary Carnivore
## 5323          3.12236492        2.891851822 Secondary Carnivore
## 5324          6.72623340        6.942696930  Tertiary Carnivore
## 5325          1.04027671        0.116104790 Secondary Carnivore
## 5326          2.71469474        1.886232978 Secondary Carnivore
## 5327          1.30291275        0.490146528 Secondary Carnivore
## 5328          3.81771233        0.735932630 Secondary Carnivore
## 5329          2.84490938        4.259772081 Secondary Carnivore
## 5330          1.67147330        0.004578480   Primary Carnivore
## 5331          1.32441896        2.122440181 Secondary Carnivore
## 5332          1.66770682        0.490146528  Tertiary Carnivore
## 5333          1.69561561        0.009889753 Secondary Carnivore
## 5334          7.38634693        7.288251436 Secondary Carnivore
## 5335          1.45861502        0.223982763 Secondary Carnivore
## 5336          3.55820113        2.404044412 Secondary Carnivore
## 5337          3.95871573        3.473231162 Secondary Carnivore
## 5338          1.22377543        0.878396534   Primary Carnivore
## 5339          3.91800508        3.146907198  Tertiary Carnivore
## 5340          2.80336038        1.168798094 Secondary Carnivore
## 5341          1.79175947        0.878396534   Primary Carnivore
## 5342          1.75785792        0.223982763 Secondary Carnivore
## 5343          3.45568557        0.749689812   Primary Carnivore
## 5344          3.68250921        3.873611973 Secondary Carnivore
## 5345          1.42310833        1.454402431 Secondary Carnivore
## 5346          5.73979291        2.153233085   Primary Carnivore
## 5347          3.08190997        0.002059853 Secondary Carnivore
## 5348          3.23474917        1.886232978 Secondary Carnivore
## 5349          5.08140436        6.670778349   Primary Carnivore
## 5350          1.04027671        0.116104790 Secondary Carnivore
## 5351          3.91202301        0.004578480  Tertiary Carnivore
## 5352          3.92197334        6.670778349   Primary Carnivore
## 5353          2.33505228        1.886232978 Secondary Carnivore
## 5354          7.83391713        6.670778349 Secondary Carnivore
## 5355          4.52601875        2.138914945  Tertiary Carnivore
## 5356          4.56076888        1.432814265 Secondary Carnivore
## 5357          3.57632647        0.470853119 Secondary Carnivore
## 5358          2.94968834        1.307030142 Secondary Carnivore
## 5359          7.17142638        6.670778349 Secondary Carnivore
## 5360          2.37954613        0.490146528  Tertiary Carnivore
## 5361          1.80500470        1.886232978 Secondary Carnivore
## 5362          2.12584791        3.515099295 Secondary Carnivore
## 5363          4.80541352        4.094232049 Secondary Carnivore
## 5364          1.68639895        0.130455954 Secondary Carnivore
## 5365          6.91214563        6.670778349 Secondary Carnivore
## 5366          5.57473625        3.473231162   Primary Carnivore
## 5367          7.21604848        6.849625561 Secondary Carnivore
## 5368          2.43562887        2.853935439 Secondary Carnivore
## 5369          2.07693841        0.735932630 Secondary Carnivore
## 5370          1.28093385        0.130455954  Tertiary Carnivore
## 5371          1.41342303        0.413477448 Secondary Carnivore
## 5372          4.26310232        2.433189939  Tertiary Carnivore
## 5373          7.68959991        6.849625561 Secondary Carnivore
## 5374          4.26267988        7.288251436   Primary Carnivore
## 5375          3.49650756        1.168798094 Secondary Carnivore
## 5376          4.00551335        3.146907198 Secondary Carnivore
## 5377          4.20916024        1.886232978   Primary Carnivore
## 5378          7.83241093        6.942696930 Secondary Carnivore
## 5379          4.53646299        3.146907198 Secondary Carnivore
## 5380          8.53210151        6.849625561 Secondary Carnivore
## 5381          1.33500107        0.015041422 Secondary Carnivore
## 5382          2.82731362        0.002344505 Secondary Carnivore
## 5383          4.70048037        6.670778349 Secondary Carnivore
## 5384          4.35388433        1.168798094 Secondary Carnivore
## 5385          4.61541750        3.473231162  Tertiary Carnivore
## 5386          1.42069579        0.214753881 Secondary Carnivore
## 5387          1.06471074        0.305596011  Tertiary Carnivore
## 5388          5.16478597        7.288251436 Secondary Carnivore
## 5389          0.00000000        0.004578480 Secondary Carnivore
## 5390          1.09192330        1.180964506 Secondary Carnivore
## 5391          0.47000363        0.147199990 Secondary Carnivore
## 5392          0.00000000        0.004578480   Primary Carnivore
## 5393          5.39816270        7.288251436  Tertiary Carnivore
## 5394          1.19392247        1.670180746   Primary Carnivore
## 5395          5.50938834        4.094232049  Tertiary Carnivore
## 5396          1.77495235        0.490146528  Tertiary Carnivore
## 5397          3.23474917        1.670180746   Primary Carnivore
## 5398          3.06339092        0.735932630 Secondary Carnivore
## 5399          3.71843826        2.387053327 Secondary Carnivore
## 5400          1.67147330        0.856029167  Tertiary Carnivore
## 5401          4.98360662        6.849625561   Primary Carnivore
## 5402          0.00000000        0.147199990 Secondary Carnivore
## 5403          1.79175947        0.223982763 Secondary Carnivore
## 5404          1.49290410        0.823328714 Secondary Carnivore
## 5405          2.94443898        0.757060688 Secondary Carnivore
## 5406          2.60268969        0.009889753   Primary Carnivore
## 5407          1.69708242        2.122440181 Secondary Carnivore
## 5408          3.43398720        0.002344505 Secondary Carnivore
## 5409          4.80745776        1.168798094   Primary Carnivore
## 5410          1.60140574        0.281204828 Secondary Carnivore
## 5411          4.56954301        6.849625561 Secondary Carnivore
## 5412          1.85629799        0.002059853 Secondary Carnivore
## 5413          2.52652832        0.015041422   Primary Carnivore
## 5414          2.16332303        0.223982763 Secondary Carnivore
## 5415          1.66770682        2.894695819 Secondary Carnivore
## 5416          4.47960696        6.849625561 Secondary Carnivore
## 5417          0.00000000        0.015041422   Primary Carnivore
## 5418          4.85203026        6.942696930 Secondary Carnivore
## 5419          5.02388052        4.094232049   Primary Carnivore
## 5420          1.85848310        0.900183757   Primary Carnivore
## 5421          6.44730586        7.288251436 Secondary Carnivore
## 5422          0.00000000        1.315195554   Primary Carnivore
## 5423          4.79579055        7.288251436   Primary Carnivore
## 5424          2.86789890        2.387053327 Secondary Carnivore
## 5425          3.15700042        2.387053327 Secondary Carnivore
## 5426          1.09192330        0.211247175 Secondary Carnivore
## 5427          1.82454929        0.063185562 Secondary Carnivore
## 5428          1.02961942        2.894695819   Primary Carnivore
## 5429          4.59208495        2.387053327 Secondary Carnivore
## 5430          3.91657264        4.232513096   Primary Carnivore
## 5431          1.76644166        4.047182371 Secondary Carnivore
## 5432          2.74071098        3.873611973 Secondary Carnivore
## 5433          0.99325177        0.878396534   Primary Carnivore
## 5434          3.26956894        2.894695819   Primary Carnivore
## 5435          3.01944880        2.853935439 Secondary Carnivore
## 5436          7.72832775        6.670778349 Secondary Carnivore
## 5437          1.12167756        0.015041422   Primary Carnivore
## 5438          1.08180517        0.211247175 Secondary Carnivore
## 5439          0.83290912        0.470853119  Tertiary Carnivore
## 5440          4.12713439        0.004578480  Tertiary Carnivore
## 5441          0.00000000        1.126655451   Primary Carnivore
## 5442          3.58629287        6.670778349   Primary Carnivore
## 5443          0.01064316        0.305596011  Tertiary Carnivore
## 5444          1.38629436        0.020024930  Tertiary Carnivore
## 5445          1.24126859        0.561550440 Secondary Carnivore
## 5446          5.48188814        6.670778349 Secondary Carnivore
## 5447          7.34018684        6.942696930  Tertiary Carnivore
## 5448          1.32972401        0.015041422  Tertiary Carnivore
## 5449          6.06092531        2.610718759 Secondary Carnivore
## 5450          7.88615659        6.670778349 Secondary Carnivore
## 5451          4.25844557        0.002059853 Secondary Carnivore
## 5452          8.12346889        7.288251436 Secondary Carnivore
## 5453          1.14740245        0.015041422 Secondary Carnivore
## 5454          6.83936937        6.849625561 Secondary Carnivore
## 5455          6.41345896        4.094232049 Secondary Carnivore
## 5456          3.92395158        2.277308093   Primary Carnivore
## 5457          3.54673969        6.670778349 Secondary Carnivore
## 5458          3.56953270        2.387053327 Secondary Carnivore
## 5459          0.00000000        0.130455954 Secondary Carnivore
## 5460          4.41642806        6.670778349 Secondary Carnivore
## 5461          3.21112587        3.651616415 Secondary Carnivore
## 5462          3.01553490        0.015041422  Tertiary Carnivore
## 5463          4.29959566        2.153233085   Primary Carnivore
## 5464          4.83628191        6.849625561 Secondary Carnivore
## 5465          4.24769492        3.873611973 Secondary Carnivore
## 5466          3.91921707        1.506685742 Secondary Carnivore
## 5467          0.26236426        2.024989105   Primary Carnivore
## 5468          1.40609699        0.305596011  Tertiary Carnivore
## 5469          0.00000000        1.459857720   Primary Carnivore
## 5470          5.14166356        7.288251436  Tertiary Carnivore
## 5471          3.28057281        2.433189939 Secondary Carnivore
## 5472          4.45781801        7.288251436   Primary Carnivore
## 5473          4.27527626        6.670778349   Primary Carnivore
## 5474          7.52736356        7.288251436 Secondary Carnivore
## 5475          4.23555473        4.094232049 Secondary Carnivore
## 5476          0.02078254        1.180964506 Secondary Carnivore
## 5477          0.85441533        2.153233085           Herbivore
## 5478          0.00000000        0.130455954 Secondary Carnivore
## 5479          1.99877364        0.015041422  Tertiary Carnivore
## 5480          0.00000000        3.146907198   Primary Carnivore
## 5481          7.95384545        6.849625561 Secondary Carnivore
## 5482          2.64617480        0.305596011  Tertiary Carnivore
## 5483          3.12236492        3.038160131 Secondary Carnivore
## 5484          0.00000000        0.340191127   Primary Carnivore
## 5485          4.41558229        3.943759073 Secondary Carnivore
## 5486          3.70179568        0.735932630   Primary Carnivore
## 5487          4.56017282        3.146907198 Secondary Carnivore
## 5488          2.13416644        1.742111989 Secondary Carnivore
## 5489          6.77445243        6.670778349 Secondary Carnivore
## 5490          2.54160199        2.050338578   Primary Carnivore
## 5491          2.08815348        0.009889753           Herbivore
## 5492          2.89668512        2.136925014 Secondary Carnivore
## 5493          2.10413415        1.886232978 Secondary Carnivore
## 5494          4.71573613        3.304296954 Secondary Carnivore
## 5495          7.34665516        7.288251436 Secondary Carnivore
## 5496          5.22810947        1.168798094   Primary Carnivore
## 5497          2.21920348        0.223982763 Secondary Carnivore
## 5498          2.79116511        1.886232978   Primary Carnivore
## 5499          2.56240767        2.075946520   Primary Carnivore
## 5500          2.84490938        3.473231162  Tertiary Carnivore
## 5501          1.52388002        1.532760019 Secondary Carnivore
## 5502          3.63663834        3.651616415   Primary Carnivore
## 5503          2.36368019        0.015041422   Primary Carnivore
## 5504          3.92789635        6.849625561   Primary Carnivore
## 5505          2.91695959        2.433189939 Secondary Carnivore
## 5506          6.52590904        6.670778349 Secondary Carnivore
## 5507          2.45958884        0.015041422   Primary Carnivore
## 5508          2.59525471        3.473231162 Secondary Carnivore
## 5509          7.61386804        6.670778349 Secondary Carnivore
## 5510          2.27212589        1.532760019   Primary Carnivore
## 5511          3.68637632        2.153233085 Secondary Carnivore
## 5512          0.00000000        0.211247175 Secondary Carnivore
## 5513          3.33932198        2.404044412 Secondary Carnivore
## 5514          1.90389697        0.211247175 Secondary Carnivore
## 5515          3.25424297        3.515099295 Secondary Carnivore
## 5516          2.98568194        4.121930401   Primary Carnivore
## 5517          2.82137889        2.153233085 Secondary Carnivore
## 5518          3.15700042        1.168798094 Secondary Carnivore
## 5519          5.61312811        6.849625561   Primary Carnivore
## 5520          3.23080440        2.241290896   Primary Carnivore
## 5521          2.05412373        0.856029167 Secondary Carnivore
## 5522          2.47653840        0.885298676  Tertiary Carnivore
## 5523          3.24259235        0.749689812   Primary Carnivore
## 5524          3.23867845        3.146907198 Secondary Carnivore
## 5525          2.27829240        2.387053327  Tertiary Carnivore
## 5526          5.44570235        1.168798094   Primary Carnivore
## 5527          5.77455155        6.942696930  Tertiary Carnivore
## 5528          4.57367952        4.094232049 Secondary Carnivore
## 5529          6.28897318        6.670778349 Secondary Carnivore
## 5530          4.86375810        1.673740129   Primary Carnivore
## 5531          2.81367068        2.891851822  Tertiary Carnivore
## 5532          0.00000000        0.002344505 Secondary Carnivore
## 5533          1.20297230        0.015041422   Primary Carnivore
## 5534          2.83749827        2.853935439 Secondary Carnivore
## 5535          7.05142263        6.670778349 Secondary Carnivore
## 5536          3.25037449        0.020024930   Primary Carnivore
## 5537          1.00063188        1.711701702 Secondary Carnivore
## 5538          7.78130551        6.670778349 Secondary Carnivore
## 5539          7.82043952        7.288251436 Secondary Carnivore
## 5540          8.06495089        4.094232049 Secondary Carnivore
## 5541          0.79750720        0.413477448 Secondary Carnivore
## 5542          0.00000000        1.673740129           Herbivore
## 5543          4.51085951        7.288251436 Secondary Carnivore
## 5544          2.25023861        0.214753881 Secondary Carnivore
## 5545          2.82137889        0.009889753   Primary Carnivore
## 5546          8.50329709        7.288251436 Secondary Carnivore
## 5547          4.58598737        4.094232049 Secondary Carnivore
## 5548          3.79098468        1.168798094 Secondary Carnivore
## 5549          0.00000000        0.015041422   Primary Carnivore
## 5550          2.54944517        0.015041422  Tertiary Carnivore
## 5551          5.52146092        6.942696930 Secondary Carnivore
## 5552          2.94443898        2.894695819   Primary Carnivore
## 5553          1.62136648        1.180964506  Tertiary Carnivore
## 5554          3.72810017        1.673740129 Secondary Carnivore
## 5555          3.66612247        6.849625561 Secondary Carnivore
## 5556          0.83290912        0.147199990  Tertiary Carnivore
## 5557          1.66203036        0.009889753  Tertiary Carnivore
## 5558          4.30000280        6.849625561 Secondary Carnivore
## 5559          1.69009582        0.015041422 Secondary Carnivore
## 5560          3.88362353        6.849625561   Primary Carnivore
## 5561          2.54944517        0.044241443   Primary Carnivore
## 5562          0.63180355        4.047182371   Primary Carnivore
## 5563          3.87120101        1.673740129 Secondary Carnivore
## 5564          3.59731226        2.153233085 Secondary Carnivore
## 5565          4.66343909        6.849625561 Secondary Carnivore
## 5566          5.57215403        4.259772081   Primary Carnivore
## 5567          1.27256560        0.823328714 Secondary Carnivore
## 5568          0.82855182        1.877421323 Secondary Carnivore
## 5569          6.11146734        7.288251436   Primary Carnivore
## 5570          0.00000000        0.116104790 Secondary Carnivore
## 5571          4.98360662        4.094232049   Primary Carnivore
## 5572          4.46579317        3.473231162   Primary Carnivore
## 5573          5.35185813        7.288251436  Tertiary Carnivore
## 5574          1.99741771        0.490146528  Tertiary Carnivore
## 5575          3.81683282        2.153233085 Secondary Carnivore
## 5576          0.30748470        0.211247175  Tertiary Carnivore
## 5577          6.27795841        6.670778349 Secondary Carnivore
## 5578          1.22671229        0.305596011  Tertiary Carnivore
## 5579          0.69314718        0.470853119  Tertiary Carnivore
## 5580          2.91158951        1.962719022 Secondary Carnivore
## 5581          3.93573953        1.168798094 Secondary Carnivore
## 5582          2.77819796        0.015041422   Primary Carnivore
## 5583          4.29728541        4.094232049 Secondary Carnivore
## 5584          0.00000000        0.009889753  Tertiary Carnivore
## 5585          7.22875123        6.670778349 Secondary Carnivore
## 5586          5.55902642        1.168798094   Primary Carnivore
## 5587          7.02028007        6.670778349 Secondary Carnivore
## 5588          2.37861978        2.387053327 Secondary Carnivore
## 5589          4.48863637        6.670778349 Secondary Carnivore
## 5590          0.78845736        0.130455954 Secondary Carnivore
## 5591          0.40546511        2.894695819   Primary Carnivore
## 5592          7.34665516        7.288251436 Secondary Carnivore
## 5593          0.00000000        1.459857720   Primary Carnivore
## 5594          0.00000000        0.002344505 Secondary Carnivore
## 5595          4.92308559        7.288251436 Secondary Carnivore
## 5596          3.36729583        1.168798094 Secondary Carnivore
## 5597          1.78170913        0.856029167   Primary Carnivore
## 5598          6.08904488        7.288251436 Secondary Carnivore
## 5599          2.16676537        0.015041422  Tertiary Carnivore
## 5600          3.75560309        6.942696930 Secondary Carnivore
## 5601          0.83290912        4.262479896 Secondary Carnivore
## 5602          1.05779029        2.122440181 Secondary Carnivore
## 5603          4.51085951        7.288251436 Secondary Carnivore
## 5604          1.93152141        0.490146528 Secondary Carnivore
## 5605          2.03339760        1.742111989 Secondary Carnivore
## 5606          3.68135119        2.387053327 Secondary Carnivore
## 5607          2.56510319        2.254856321   Primary Carnivore
## 5608          5.64897424        4.259772081 Secondary Carnivore
## 5609          3.51868408        1.886232978 Secondary Carnivore
## 5610          2.54944517        0.281204828 Secondary Carnivore
## 5611          5.89715387        6.942696930  Tertiary Carnivore
## 5612          2.61739583        1.742111989 Secondary Carnivore
## 5613          2.24191003        6.670778349 Secondary Carnivore
## 5614          7.47363711        7.288251436 Secondary Carnivore
## 5615          1.96571278        0.856029167 Secondary Carnivore
## 5616          0.40546511        0.063185562 Secondary Carnivore
## 5617          6.19031541        6.942696930  Tertiary Carnivore
## 5618          2.28033948        1.532760019   Primary Carnivore
## 5619          2.13947776        4.047182371 Secondary Carnivore
## 5620          3.49650756        3.146907198 Secondary Carnivore
## 5621          0.53062825        0.130455954  Tertiary Carnivore
## 5622          3.95316495        6.670778349 Secondary Carnivore
## 5623          3.73050113        6.670778349 Secondary Carnivore
## 5624          3.05870707        3.038160131 Secondary Carnivore
## 5625          8.44080878        6.849625561 Secondary Carnivore
## 5626          2.32630162        2.845177164 Secondary Carnivore
## 5627          1.48160454        0.130455954 Secondary Carnivore
## 5628          3.57234564        3.168005566 Secondary Carnivore
## 5629          6.59441346        7.288251436  Tertiary Carnivore
## 5630          4.60616969        4.259772081  Tertiary Carnivore
## 5631          1.54756251        0.015041422 Secondary Carnivore
## 5632          4.22537282        1.168798094 Secondary Carnivore
## 5633          0.00000000        0.470853119  Tertiary Carnivore
## 5634          2.98061864        2.387053327 Secondary Carnivore
## 5635          3.76352300        1.168798094 Secondary Carnivore
## 5636          3.19179236        1.540263127 Secondary Carnivore
## 5637          4.01096295        6.670778349 Secondary Carnivore
## 5638          5.11198779        4.094232049  Tertiary Carnivore
## 5639          1.16315081        1.126655451   Primary Carnivore
## 5640          1.19392247        0.211247175 Secondary Carnivore
## 5641          7.39079852        7.288251436 Secondary Carnivore
## 5642          4.66861436        2.153233085 Secondary Carnivore
## 5643          1.54756251        0.009889753  Tertiary Carnivore
## 5644          6.06610809        7.288251436  Tertiary Carnivore
## 5645          4.04480412        6.942696930  Tertiary Carnivore
## 5646          4.98561830        3.304296954   Primary Carnivore
## 5647          6.77502357        6.849625561 Secondary Carnivore
## 5648          4.62497281        3.168005566 Secondary Carnivore
## 5649          2.58021683        1.532760019   Primary Carnivore
## 5650          4.98360662        4.094232049   Primary Carnivore
## 5651          2.63905733        2.153233085 Secondary Carnivore
## 5652          5.22035583        3.146907198 Secondary Carnivore
## 5653          7.13297667        6.670778349 Secondary Carnivore
## 5654          2.58776404        0.757060688 Secondary Carnivore
## 5655          2.11709853        3.515099295 Secondary Carnivore
## 5656          2.36837283        0.735932630 Secondary Carnivore
## 5657          4.18813844        6.849625561  Tertiary Carnivore
## 5658          0.00000000        0.004578480 Secondary Carnivore
## 5659          3.41444261        1.742111989 Secondary Carnivore
## 5660          5.13603370        1.673740129 Secondary Carnivore
## 5661          1.80664808        0.116104790 Secondary Carnivore
## 5662          3.39114705        1.670180746 Secondary Carnivore
## 5663          1.30019166        2.845177164 Secondary Carnivore
## 5664          3.13113691        4.259772081 Secondary Carnivore
## 5665          2.64326276        0.490146528 Secondary Carnivore
## 5666          0.00000000        0.015041422 Secondary Carnivore
## 5667          4.08260931        6.670778349 Secondary Carnivore
## 5668          5.02388052        6.942696930 Secondary Carnivore
## 5669          1.04027671        0.885298676 Secondary Carnivore
## 5670          3.94931879        7.161415474 Secondary Carnivore
## 5671          0.00000000        0.002059853 Secondary Carnivore
## 5672          2.14943391        0.735932630 Secondary Carnivore
## 5673          7.29369772        7.288251436 Secondary Carnivore
## 5674          1.53686722        0.015041422  Tertiary Carnivore
## 5675          0.00000000        0.147199990 Secondary Carnivore
## 5676          2.11142459        0.900183757 Secondary Carnivore
## 5677          1.82454929        0.490146528  Tertiary Carnivore
## 5678          0.83290912        1.831515834 Secondary Carnivore
## 5679          4.75780543        4.094232049 Secondary Carnivore
## 5680          2.74084002        1.886232978 Secondary Carnivore
## 5681          6.03954017        1.886232978 Secondary Carnivore
## 5682          0.17395331        1.532760019  Tertiary Carnivore
## 5683          3.28091122        3.146907198 Secondary Carnivore
## 5684          5.35185813        7.288251436  Tertiary Carnivore
## 5685          0.00000000        2.404044412           Herbivore
## 5686          1.19392247        0.147199990 Secondary Carnivore
## 5687          4.44968528        1.168798094  Tertiary Carnivore
## 5688          4.82807371        1.673740129   Primary Carnivore
## 5689          0.00000000        1.877421323 Secondary Carnivore
## 5690          7.68303529        6.849625561 Secondary Carnivore
## 5691          1.85207032        0.211247175 Secondary Carnivore
## 5692          0.19885086        0.305596011 Secondary Carnivore
## 5693          1.65822808        0.885298676  Tertiary Carnivore
## 5694          1.84292776        1.962719022 Secondary Carnivore
## 5695          2.58021683        2.136925014 Secondary Carnivore
## 5696          5.77299754        1.886232978   Primary Carnivore
## 5697          4.45771372        1.886232978   Primary Carnivore
## 5698          2.77102500        1.962719022  Tertiary Carnivore
## 5699          3.94352167        3.146907198  Tertiary Carnivore
## 5700          2.95491028        2.472143654   Primary Carnivore
## 5701          7.98214318        6.849625561 Secondary Carnivore
## 5702          4.79892612        2.387053327   Primary Carnivore
## 5703          0.92821930        6.942696930           Herbivore
## 5704          7.83494639        6.670778349 Secondary Carnivore
## 5705          7.03341830        6.670778349 Secondary Carnivore
## 5706          1.32175584        2.254856321 Secondary Carnivore
## 5707          6.78649119        6.670778349  Tertiary Carnivore
## 5708          0.00000000        1.670180746   Primary Carnivore
## 5709          0.00000000        2.404044412           Herbivore
## 5710          5.90511659        1.886232978   Primary Carnivore
## 5711          4.61485315        1.432814265 Secondary Carnivore
## 5712          4.22753423        1.506685742   Primary Carnivore
## 5713          7.39184671        7.288251436 Secondary Carnivore
## 5714          1.28923265        0.856029167 Secondary Carnivore
## 5715          1.51292701        0.015041422 Secondary Carnivore
## 5716          0.97455964        0.305596011  Tertiary Carnivore
## 5717          7.97968130        7.288251436 Secondary Carnivore
## 5718          1.18784342        0.561550440 Secondary Carnivore
## 5719          4.06355884        2.138914945 Secondary Carnivore
## 5720          3.19043520        2.610718759 Secondary Carnivore
## 5721          1.76985463        0.015041422  Tertiary Carnivore
## 5722          5.38587026        0.004578480  Tertiary Carnivore
## 5723          1.32441896        4.047182371 Secondary Carnivore
## 5724          0.83290912        5.169038067   Primary Carnivore
## 5725          2.56617937        1.962719022 Secondary Carnivore
## 5726          2.17815501        2.845177164 Secondary Carnivore
## 5727          4.96284463        6.670778349  Tertiary Carnivore
## 5728          2.16217294        0.009889753   Primary Carnivore
## 5729          0.90421815        0.305596011  Tertiary Carnivore
## 5730          0.00000000        1.886232978           Herbivore
## 5731          1.34547237        0.856029167 Secondary Carnivore
## 5732          0.00000000        0.004578480  Tertiary Carnivore
## 5733          3.57660621        1.432814265  Tertiary Carnivore
## 5734          0.43048287        0.856029167  Tertiary Carnivore
## 5735          7.98132323        6.670778349 Secondary Carnivore
## 5736          3.66867675        0.749689812   Primary Carnivore
## 5737          1.19392247        1.532760019  Tertiary Carnivore
## 5738          4.18801704        3.651616415   Primary Carnivore
## 5739          1.44926916        1.251683108 Secondary Carnivore
## 5740          4.50534985        4.094232049  Tertiary Carnivore
## 5741          2.44633906        0.470853119 Secondary Carnivore
## 5742          4.34510328        6.670778349 Secondary Carnivore
## 5743          4.84418709        3.146907198 Secondary Carnivore
## 5744          1.49962305        0.561550440 Secondary Carnivore
## 5745          6.67997600        6.670778349 Secondary Carnivore
## 5746          2.11384297        0.009889753 Secondary Carnivore
## 5747          3.50453585        3.873611973  Tertiary Carnivore
## 5748          8.49631679        6.849625561 Secondary Carnivore
## 5749          5.86646806        2.153233085  Tertiary Carnivore
## 5750          0.37156356        0.130455954 Secondary Carnivore
## 5751          0.00000000        1.981883583   Primary Carnivore
## 5752          4.31348009        4.259772081 Secondary Carnivore
## 5753          2.82137889        1.168798094 Secondary Carnivore
## 5754          2.65324196        0.002344505 Secondary Carnivore
## 5755          3.85014760        6.849625561 Secondary Carnivore
## 5756          3.86157146        0.015041422 Secondary Carnivore
## 5757          3.26575941        2.387053327 Secondary Carnivore
## 5758          4.62497281        4.259772081 Secondary Carnivore
## 5759          2.94443898        0.004578480  Tertiary Carnivore
## 5760          4.39444915        7.288251436 Secondary Carnivore
## 5761          0.99325177        0.130455954  Tertiary Carnivore
## 5762          4.00369019        1.307030142 Secondary Carnivore
## 5763          0.53999600        0.413477448  Tertiary Carnivore
## 5764          0.26236426        1.920179330   Primary Carnivore
## 5765          3.30310667        1.506685742 Secondary Carnivore
## 5766          0.00000000        0.130455954 Secondary Carnivore
## 5767          4.21331208        1.886232978 Secondary Carnivore
## 5768          5.75574221        1.168798094 Secondary Carnivore
## 5769          1.56024767        0.009889753   Primary Carnivore
## 5770          2.02683159        0.885298676  Tertiary Carnivore
## 5771          4.75531284        3.943759073 Secondary Carnivore
## 5772          4.99767163        4.232513096 Secondary Carnivore
## 5773          2.22354189        0.015041422 Secondary Carnivore
## 5774          3.26575941        5.169038067   Primary Carnivore
## 5775          1.71918878        0.856029167   Primary Carnivore
## 5776          1.13462273        2.136925014 Secondary Carnivore
## 5777          0.58778666        0.147199990 Secondary Carnivore
## 5778          1.84150156        1.711701702  Tertiary Carnivore
## 5779          2.97041447        2.387053327 Secondary Carnivore
## 5780          0.00000000        0.002344505 Secondary Carnivore
## 5781          0.00000000        2.404044412           Herbivore
## 5782          2.77258872        0.116104790 Secondary Carnivore
## 5783          1.85629799        0.490146528  Tertiary Carnivore
## 5784          4.59410924        3.168005566 Secondary Carnivore
## 5785          5.56452041        7.288251436  Tertiary Carnivore
## 5786          8.05360097        6.670778349 Secondary Carnivore
## 5787          3.24649099        1.307030142 Secondary Carnivore
## 5788          1.70292826        0.015041422 Secondary Carnivore
## 5789          3.88752537        0.749689812   Primary Carnivore
## 5790          0.00000000        0.015041422  Tertiary Carnivore
## 5791          5.18178355        6.849625561 Secondary Carnivore
## 5792          2.40865536        1.540263127 Secondary Carnivore
## 5793          2.90690106        3.515099295 Secondary Carnivore
## 5794          2.61739583        0.757060688  Tertiary Carnivore
## 5795          2.52572864        0.735932630 Secondary Carnivore
## 5796          3.36037539        2.891851822  Tertiary Carnivore
## 5797          3.35340672        5.169038067   Primary Carnivore
## 5798          0.00000000        1.886232978           Herbivore
## 5799          1.98787435        2.241290896   Primary Carnivore
## 5800          2.68852753        3.226603994 Secondary Carnivore
## 5801          2.58776404        2.136925014 Secondary Carnivore
## 5802          1.35325451        2.404044412 Secondary Carnivore
## 5803          4.70953020        7.288251436 Secondary Carnivore
## 5804          7.35212054        6.849625561 Secondary Carnivore
## 5805          2.56494936        1.315195554 Secondary Carnivore
## 5806          5.81889528        6.849625561 Secondary Carnivore
## 5807          1.79275897        0.116104790 Secondary Carnivore
## 5808          1.62924054        0.147199990 Secondary Carnivore
## 5809          7.75022723        6.670778349 Secondary Carnivore
## 5810          3.79773386        4.094232049 Secondary Carnivore
## 5811          0.95551145        0.490146528  Tertiary Carnivore
## 5812          1.53255687        2.075946520 Secondary Carnivore
## 5813          5.14813381        1.886232978   Primary Carnivore
## 5814          0.00000000        1.886232978           Herbivore
## 5815          0.33647224        2.894695819   Primary Carnivore
## 5816          3.28578653        0.015041422 Secondary Carnivore
## 5817          2.29253476        1.315195554   Primary Carnivore
## 5818          7.29715875        6.849625561 Secondary Carnivore
## 5819          0.26236426        2.024989105   Primary Carnivore
## 5820          0.68813464        1.251683108 Secondary Carnivore
## 5821          1.02961942        0.470853119  Tertiary Carnivore
## 5822          1.26976054        1.180964506 Secondary Carnivore
## 5823          4.04305127        6.670778349  Tertiary Carnivore
## 5824          3.96840334        2.050338578   Primary Carnivore
## 5825          5.72227706        6.849625561 Secondary Carnivore
## 5826          4.79579055        7.288251436 Secondary Carnivore
## 5827          7.40482675        6.670778349 Secondary Carnivore
## 5828          0.78845736        7.161415474   Primary Carnivore
## 5829          5.57215403        4.259772081   Primary Carnivore
## 5830          3.51452607        1.886232978 Secondary Carnivore
## 5831          1.87640694        0.885298676  Tertiary Carnivore
## 5832          2.63905733        0.002059853 Secondary Carnivore
## 5833          0.00000000        2.894695819   Primary Carnivore
## 5834          3.40452517        1.886232978 Secondary Carnivore
## 5835          0.00000000        0.002059853 Secondary Carnivore
## 5836          2.24918432        0.009889753   Primary Carnivore
## 5837          1.66392610        0.211247175 Secondary Carnivore
## 5838          0.06765865        0.305596011 Secondary Carnivore
## 5839          2.27212589        1.670180746 Secondary Carnivore
## 5840          2.77881927        0.885298676  Tertiary Carnivore
## 5841          6.58340922        4.259772081  Tertiary Carnivore
## 5842          0.00000000        1.670180746   Primary Carnivore
## 5843          1.45161383        1.532760019 Secondary Carnivore
## 5844          1.99333884        1.307030142 Secondary Carnivore
## 5845          0.00000000        0.002059853 Secondary Carnivore
## 5846          2.04122033        0.063185562 Secondary Carnivore
## 5847          2.23537634        0.015041422 Secondary Carnivore
## 5848          2.58021683        2.891851822 Secondary Carnivore
## 5849          4.25134831        1.168798094 Secondary Carnivore
## 5850          0.00000000        2.404044412           Herbivore
## 5851          1.47476301        0.900183757 Secondary Carnivore
## 5852          6.77490937        6.849625561 Secondary Carnivore
## 5853          3.42816383        0.015041422   Primary Carnivore
## 5854          1.61541998        0.009889753  Tertiary Carnivore
## 5855          6.90505163        6.849625561 Secondary Carnivore
## 5856          1.66770682        0.002344505 Secondary Carnivore
## 5857          3.03013370        3.146907198 Secondary Carnivore
## 5858          1.81156210        0.211247175 Secondary Carnivore
## 5859          1.01884732        0.223982763 Secondary Carnivore
## 5860          1.51072194        0.015041422  Tertiary Carnivore
## 5861          5.68357977        4.094232049  Tertiary Carnivore
## 5862          4.79579055        7.288251436 Secondary Carnivore
## 5863          1.19996478        0.015041422  Tertiary Carnivore
## 5864          7.45066080        7.288251436 Secondary Carnivore
## 5865          2.47863704        1.711701702   Primary Carnivore
## 5866          1.31640823        0.214753881 Secondary Carnivore
## 5867          6.08677473        4.094232049 Secondary Carnivore
## 5868          3.51443678        2.610718759 Secondary Carnivore
## 5869          2.92316158        3.473231162 Secondary Carnivore
## 5870          1.77495235        0.002344505 Secondary Carnivore
## 5871          0.00000000        1.877421323 Secondary Carnivore
## 5872          2.32727771        0.009889753           Herbivore
## 5873          1.43983513        0.305596011  Tertiary Carnivore
## 5874          5.21553341        0.735932630   Primary Carnivore
## 5875          4.19166787        2.433189939 Secondary Carnivore
## 5876          1.47796155        1.711701702  Tertiary Carnivore
## 5877          2.28238239        1.315195554 Secondary Carnivore
## 5878          2.55722731        1.315195554 Secondary Carnivore
## 5879          3.16665579        0.470853119 Secondary Carnivore
## 5880          0.00000000        0.002344505  Tertiary Carnivore
## 5881          2.79116511        0.009889753           Herbivore
## 5882          1.75958057        4.262479896 Secondary Carnivore
## 5883          1.29746315        0.413477448 Secondary Carnivore
## 5884          2.85647021        1.886232978 Secondary Carnivore
## 5885          2.85070650        0.063185562 Secondary Carnivore
## 5886          5.18505908        1.432814265 Secondary Carnivore
## 5887          1.20297230        1.831515834  Tertiary Carnivore
## 5888          3.26956894        1.886232978 Secondary Carnivore
## 5889          3.80443779        6.670778349   Primary Carnivore
## 5890          5.01727984        7.288251436  Tertiary Carnivore
## 5891          3.85227300        6.670778349 Secondary Carnivore
## 5892          3.27222700        0.735932630   Primary Carnivore
## 5893          1.08180517        0.116104790 Secondary Carnivore
## 5894          1.89611948        0.885298676 Secondary Carnivore
## 5895          1.66770682        0.490146528 Secondary Carnivore
## 5896          4.27495632        4.232513096  Tertiary Carnivore
## 5897          5.77827133        6.670778349  Tertiary Carnivore
## 5898          0.00000000        1.673740129           Herbivore
## 5899          1.48387469        0.885298676 Secondary Carnivore
## 5900          3.55820113        2.153233085           Herbivore
## 5901          0.78845736        2.145288428 Secondary Carnivore
## 5902          2.00417906        0.211247175 Secondary Carnivore
## 5903          8.42299240        6.849625561 Secondary Carnivore
## 5904          6.01859321        7.288251436  Tertiary Carnivore
## 5905          0.00000000        0.002059853 Secondary Carnivore
## 5906          1.95727391        0.004578480   Primary Carnivore
## 5907          1.62924054        0.223982763 Secondary Carnivore
## 5908          1.04027671        1.454402431 Secondary Carnivore
## 5909          5.44241771        2.153233085 Secondary Carnivore
## 5910          3.06339092        3.943759073 Secondary Carnivore
## 5911          2.53369681        1.981883583   Primary Carnivore
## 5912          4.09434456        7.288251436 Secondary Carnivore
## 5913          3.28776736        2.433189939  Tertiary Carnivore
## 5914          5.30330491        7.288251436 Secondary Carnivore
## 5915          0.00000000        0.009889753 Secondary Carnivore
## 5916          5.28826703        2.153233085  Tertiary Carnivore
## 5917          0.95551145        0.211247175 Secondary Carnivore
## 5918          1.67335124        0.735932630 Secondary Carnivore
## 5919          2.70136121        3.515099295 Secondary Carnivore
## 5920          1.18172720        2.387053327 Secondary Carnivore
## 5921          2.41126011        1.014024833 Secondary Carnivore
## 5922          2.32238772        0.223982763 Secondary Carnivore
## 5923          7.51261754        6.942696930 Secondary Carnivore
## 5924          0.00000000        0.009889753 Secondary Carnivore
## 5925          2.63905733        0.002059853 Secondary Carnivore
## 5926          0.91629073        0.063185562 Secondary Carnivore
## 5927          3.02456266        2.254856321 Secondary Carnivore
## 5928          1.41098697        0.147199990 Secondary Carnivore
## 5929          3.78940329        0.214753881  Tertiary Carnivore
## 5930          0.83290912        0.130455954 Secondary Carnivore
## 5931          7.62525355        6.849625561 Secondary Carnivore
## 5932          3.34990409        2.387053327   Primary Carnivore
## 5933          4.61512052        7.288251436  Tertiary Carnivore
## 5934          3.55010577        1.540263127 Secondary Carnivore
## 5935          1.24990174        2.241290896   Primary Carnivore
## 5936          7.22329568        7.288251436 Secondary Carnivore
## 5937          4.71849887        3.146907198 Secondary Carnivore
## 5938          3.92296295        2.138914945 Secondary Carnivore
## 5939          3.28091122        1.168798094   Primary Carnivore
## 5940          2.38139627        2.136925014 Secondary Carnivore
## 5941          1.34547237        0.885298676 Secondary Carnivore
## 5942          2.23697934        0.490146528   Primary Carnivore
## 5943          2.91463067        2.136925014 Secondary Carnivore
## 5944          4.30217141        0.002059853 Secondary Carnivore
## 5945          1.13140211        0.470853119  Tertiary Carnivore
## 5946          3.38113072        1.632888289 Secondary Carnivore
## 5947          1.53901545        2.853935439 Secondary Carnivore
## 5948          2.98061864        0.885298676  Tertiary Carnivore
## 5949          1.95868534        0.211247175 Secondary Carnivore
## 5950          1.68639895        7.161415474 Secondary Carnivore
## 5951          3.09557761        0.009889753   Primary Carnivore
## 5952          2.63991411        2.254856321   Primary Carnivore
## 5953          0.00000000        0.305596011 Secondary Carnivore
## 5954          3.36037539        1.168798094 Secondary Carnivore
## 5955          1.59533899        0.413477448 Secondary Carnivore
## 5956          3.56133013        1.886232978 Secondary Carnivore
## 5957          4.65396035        1.168798094 Secondary Carnivore
## 5958          0.00000000        1.459857720   Primary Carnivore
## 5959          7.34968088        6.849625561 Secondary Carnivore
## 5960          4.68213123        6.670778349  Tertiary Carnivore
## 5961          1.31908561        0.004578480   Primary Carnivore
## 5962          8.85237889        7.288251436 Secondary Carnivore
## 5963          0.93216408        4.094232049           Herbivore
## 5964          4.86753445        2.153233085 Secondary Carnivore
## 5965          0.00000000        0.281204828 Secondary Carnivore
## 5966          2.12823171        0.211247175 Secondary Carnivore
## 5967          5.67194775        1.886232978 Secondary Carnivore
## 5968          0.82417544        1.831515834   Primary Carnivore
## 5969          0.63657683        4.259772081           Herbivore
## 5970          6.61069604        6.942696930 Secondary Carnivore
## 5971          3.42426265        3.651616415  Tertiary Carnivore
## 5972          3.73440238        3.943759073 Secondary Carnivore
## 5973          3.66612247        0.749689812   Primary Carnivore
## 5974          2.08193842        0.004578480  Tertiary Carnivore
## 5975          0.00000000        2.145288428 Secondary Carnivore
## 5976          3.77045944        2.050338578   Primary Carnivore
## 5977          8.52734152        7.288251436 Secondary Carnivore
## 5978          3.71571611        2.433189939 Secondary Carnivore
## 5979          3.06339092        0.735932630 Secondary Carnivore
## 5980          2.61520365        3.226603994  Tertiary Carnivore
## 5981          7.20630310        6.849625561 Secondary Carnivore
## 5982          2.83321334        3.146907198 Secondary Carnivore
## 5983          2.80940270        1.420705940 Secondary Carnivore
## 5984          6.99062476        7.288251436 Secondary Carnivore
## 5985          4.47847253        1.168798094 Secondary Carnivore
## 5986          1.68639895        0.116104790 Secondary Carnivore
## 5987          0.00000000        0.009889753           Herbivore
## 5988          2.50470928        1.432814265 Secondary Carnivore
## 5989          6.66134310        6.670778349 Secondary Carnivore
## 5990          0.87546874        0.063185562 Secondary Carnivore
## 5991          3.20453346        2.610718759  Tertiary Carnivore
## 5992          1.08518927        1.180964506  Tertiary Carnivore
## 5993          3.00071982        0.214753881  Tertiary Carnivore
## 5994          2.00552586        1.307030142 Secondary Carnivore
## 5995          1.46325540        4.094232049           Herbivore
## 5996          4.53689135        1.673740129 Secondary Carnivore
## 5997          5.25227343        7.288251436   Primary Carnivore
## 5998          3.03013370        1.670180746   Primary Carnivore
## 5999          5.25017699        3.473231162   Primary Carnivore
## 6000          3.88567903        2.387053327 Secondary Carnivore
## 6001          3.89731538        0.735932630 Secondary Carnivore
## 6002          5.54126355        3.146907198 Secondary Carnivore
## 6003          4.77912349        4.094232049  Tertiary Carnivore
## 6004          1.70402055        0.211247175 Secondary Carnivore
## 6005          2.81540872        0.757060688 Secondary Carnivore
## 6006          7.84998662        6.670778349 Secondary Carnivore
## 6007          0.00000000        0.002344505  Tertiary Carnivore
## 6008          3.94158181        3.168005566 Secondary Carnivore
## 6009          1.73342389        0.015041422 Secondary Carnivore
## 6010          3.49347266        1.168798094 Secondary Carnivore
## 6011          0.26236426        2.107009466   Primary Carnivore
## 6012          0.00000000        2.107009466   Primary Carnivore
## 6013          2.84490938        0.020024930  Tertiary Carnivore
## 6014          0.74193734        2.241290896   Primary Carnivore
## 6015          1.67335124        0.490146528 Secondary Carnivore
## 6016          4.02177387        2.153233085  Tertiary Carnivore
## 6017          4.50976000        6.670778349 Secondary Carnivore
## 6018          4.07414185        3.159561805   Primary Carnivore
## 6019          2.76744803        6.670778349 Secondary Carnivore
## 6020          2.96460274        3.038160131 Secondary Carnivore
## 6021          5.17868888        2.153233085 Secondary Carnivore
## 6022          1.55180880        0.009889753  Tertiary Carnivore
## 6023          1.38629436        0.063185562 Secondary Carnivore
## 6024          4.54648119        3.146907198 Secondary Carnivore
## 6025          2.37024374        0.490146528 Secondary Carnivore
## 6026          0.30748470        4.259772081           Herbivore
## 6027          2.01089500        0.214753881 Secondary Carnivore
## 6028          3.39450839        1.479154529   Primary Carnivore
## 6029          2.68784749        0.757060688   Primary Carnivore
## 6030          2.35801980        3.515099295 Secondary Carnivore
## 6031          3.76584050        0.009889753  Tertiary Carnivore
## 6032          0.81536481        1.251683108 Secondary Carnivore
## 6033          0.00000000        1.886232978           Herbivore
## 6034          1.28923265        0.004578480 Secondary Carnivore
## 6035          2.00512201        2.853935439   Primary Carnivore
## 6036          4.74449725        3.146907198 Secondary Carnivore
## 6037          4.03777421        6.670778349   Primary Carnivore
## 6038          4.71635371        1.168798094 Secondary Carnivore
## 6039          0.36394843        0.413477448  Tertiary Carnivore
## 6040          0.00000000        0.009889753           Herbivore
## 6041          4.94875989        7.288251436 Secondary Carnivore
## 6042          3.99636415        6.670778349 Secondary Carnivore
## 6043          1.15688120        0.004578480   Primary Carnivore
## 6044          3.51452607        1.168798094 Secondary Carnivore
## 6045          8.20305762        7.288251436 Secondary Carnivore
## 6046          0.81668960        1.705681497 Secondary Carnivore
## 6047          2.55567572        0.015041422   Primary Carnivore
## 6048          1.34547237        1.962719022 Secondary Carnivore
## 6049          2.37954613        0.004578480 Secondary Carnivore
## 6050          4.85203026        6.849625561  Tertiary Carnivore
## 6051          0.95165788        1.877421323 Secondary Carnivore
## 6052          4.74701691        0.002059853 Secondary Carnivore
## 6053          0.98954119        0.116104790 Secondary Carnivore
## 6054          7.58054668        6.670778349 Secondary Carnivore
## 6055          3.03013370        2.153233085 Secondary Carnivore
## 6056          6.27476202        7.288251436   Primary Carnivore
## 6057          4.55807858        6.670778349 Secondary Carnivore
## 6058          1.06594239        2.145288428 Secondary Carnivore
## 6059          2.39059597        1.886232978   Primary Carnivore
## 6060          5.50443683        6.942696930 Secondary Carnivore
## 6061          2.01623547        1.886232978   Primary Carnivore
## 6062          1.40609699        2.136925014 Secondary Carnivore
## 6063          0.00000000        2.404044412           Herbivore
## 6064          4.99043259        6.670778349 Secondary Carnivore
## 6065          3.44998755        1.886232978 Secondary Carnivore
## 6066          1.74221902        1.831515834 Secondary Carnivore
## 6067          0.83290912        1.315195554   Primary Carnivore
## 6068          2.67414865        1.168798094 Secondary Carnivore
## 6069          3.39785848        2.153233085 Secondary Carnivore
## 6070          3.76537743        1.886232978   Primary Carnivore
## 6071          0.53062825        2.472143654   Primary Carnivore
## 6072          3.68145194        1.014024833 Secondary Carnivore
## 6073          7.71020519        7.288251436 Secondary Carnivore
## 6074          2.18941639        1.532760019   Primary Carnivore
## 6075          1.82454929        3.226603994  Tertiary Carnivore
## 6076          1.79342475        4.047182371  Tertiary Carnivore
## 6077          6.29876541        6.849625561 Secondary Carnivore
## 6078          2.60172626        0.470853119  Tertiary Carnivore
## 6079          0.40879290        2.891851822 Secondary Carnivore
## 6080          0.00000000        0.009889753  Tertiary Carnivore
## 6081          2.70951579        1.540263127 Secondary Carnivore
## 6082          1.67147330        0.015041422   Primary Carnivore
## 6083          5.30330491        4.259772081 Secondary Carnivore
## 6084          3.64021428        1.070822001   Primary Carnivore
## 6085          1.89069942        2.075946520 Secondary Carnivore
## 6086          4.24849524        6.849625561 Secondary Carnivore
## 6087          3.97168717        4.232513096 Secondary Carnivore
## 6088          0.99694863        1.540263127   Primary Carnivore
## 6089          4.44851638        6.670778349 Secondary Carnivore
## 6090          0.00000000        0.015041422   Primary Carnivore
## 6091          2.62466859        0.004578480 Secondary Carnivore
## 6092          6.68511160        6.849625561 Secondary Carnivore
## 6093          5.30230939        6.670778349  Tertiary Carnivore
## 6094          4.50733683        2.387053327 Secondary Carnivore
## 6095          3.12236492        2.891851822 Secondary Carnivore
## 6096          6.72623340        6.942696930  Tertiary Carnivore
## 6097          1.04027671        0.116104790 Secondary Carnivore
## 6098          2.71469474        1.886232978 Secondary Carnivore
## 6099          1.30291275        0.490146528 Secondary Carnivore
## 6100          3.81771233        0.735932630 Secondary Carnivore
## 6101          2.84490938        4.259772081 Secondary Carnivore
## 6102          1.67147330        0.004578480   Primary Carnivore
## 6103          1.32441896        2.122440181 Secondary Carnivore
## 6104          1.66770682        0.490146528  Tertiary Carnivore
## 6105          1.69561561        0.009889753 Secondary Carnivore
## 6106          7.38634693        7.288251436 Secondary Carnivore
## 6107          1.45861502        0.223982763 Secondary Carnivore
## 6108          3.55820113        2.404044412 Secondary Carnivore
## 6109          3.95871573        3.473231162 Secondary Carnivore
## 6110          1.22377543        0.878396534   Primary Carnivore
## 6111          3.91800508        3.146907198  Tertiary Carnivore
## 6112          2.80336038        1.168798094 Secondary Carnivore
## 6113          1.79175947        0.878396534   Primary Carnivore
## 6114          1.75785792        0.223982763 Secondary Carnivore
## 6115          3.45568557        0.749689812   Primary Carnivore
## 6116          3.68250921        3.873611973 Secondary Carnivore
## 6117          1.42310833        1.454402431 Secondary Carnivore
## 6118          5.73979291        2.153233085   Primary Carnivore
## 6119          3.08190997        0.002059853 Secondary Carnivore
## 6120          3.23474917        1.886232978 Secondary Carnivore
## 6121          5.08140436        6.670778349   Primary Carnivore
## 6122          1.04027671        0.116104790 Secondary Carnivore
## 6123          3.91202301        0.004578480  Tertiary Carnivore
## 6124          3.92197334        6.670778349   Primary Carnivore
## 6125          2.33505228        1.886232978 Secondary Carnivore
## 6126          7.83391713        6.670778349 Secondary Carnivore
## 6127          4.52601875        2.138914945  Tertiary Carnivore
## 6128          4.56076888        1.432814265 Secondary Carnivore
## 6129          3.57632647        0.470853119 Secondary Carnivore
## 6130          2.94968834        1.307030142 Secondary Carnivore
## 6131          7.17142638        6.670778349 Secondary Carnivore
## 6132          2.37954613        0.490146528  Tertiary Carnivore
## 6133          1.80500470        1.886232978 Secondary Carnivore
## 6134          2.12584791        3.515099295 Secondary Carnivore
## 6135          4.80541352        4.094232049 Secondary Carnivore
## 6136          1.68639895        0.130455954 Secondary Carnivore
## 6137          6.91214563        6.670778349 Secondary Carnivore
## 6138          5.57473625        3.473231162   Primary Carnivore
## 6139          7.21604848        6.849625561 Secondary Carnivore
## 6140          2.43562887        2.853935439 Secondary Carnivore
## 6141          2.07693841        0.735932630 Secondary Carnivore
## 6142          1.28093385        0.130455954  Tertiary Carnivore
## 6143          1.41342303        0.413477448 Secondary Carnivore
## 6144          4.26310232        2.433189939  Tertiary Carnivore
## 6145          7.68959991        6.849625561 Secondary Carnivore
## 6146          4.26267988        7.288251436   Primary Carnivore
## 6147          3.49650756        1.168798094 Secondary Carnivore
## 6148          4.00551335        3.146907198 Secondary Carnivore
## 6149          4.20916024        1.886232978   Primary Carnivore
## 6150          7.83241093        6.942696930 Secondary Carnivore
## 6151          4.53646299        3.146907198 Secondary Carnivore
## 6152          8.53210151        6.849625561 Secondary Carnivore
## 6153          1.33500107        0.015041422 Secondary Carnivore
## 6154          2.82731362        0.002344505 Secondary Carnivore
## 6155          4.70048037        6.670778349 Secondary Carnivore
## 6156          4.35388433        1.168798094 Secondary Carnivore
## 6157          4.61541750        3.473231162  Tertiary Carnivore
## 6158          1.42069579        0.214753881 Secondary Carnivore
## 6159          1.06471074        0.305596011  Tertiary Carnivore
## 6160          5.16478597        7.288251436 Secondary Carnivore
## 6161          0.00000000        0.004578480 Secondary Carnivore
## 6162          1.09192330        1.180964506 Secondary Carnivore
## 6163          0.47000363        0.147199990 Secondary Carnivore
## 6164          0.00000000        0.004578480   Primary Carnivore
## 6165          5.39816270        7.288251436  Tertiary Carnivore
## 6166          1.19392247        1.670180746   Primary Carnivore
## 6167          5.50938834        4.094232049  Tertiary Carnivore
## 6168          1.77495235        0.490146528  Tertiary Carnivore
## 6169          3.23474917        1.670180746   Primary Carnivore
## 6170          3.06339092        0.735932630 Secondary Carnivore
## 6171          3.71843826        2.387053327 Secondary Carnivore
## 6172          1.67147330        0.856029167  Tertiary Carnivore
## 6173          4.98360662        6.849625561   Primary Carnivore
## 6174          0.00000000        0.147199990 Secondary Carnivore
## 6175          1.79175947        0.223982763 Secondary Carnivore
## 6176          1.49290410        0.823328714 Secondary Carnivore
## 6177          2.94443898        0.757060688 Secondary Carnivore
## 6178          2.60268969        0.009889753   Primary Carnivore
## 6179          1.69708242        2.122440181 Secondary Carnivore
## 6180          3.43398720        0.002344505 Secondary Carnivore
## 6181          4.80745776        1.168798094   Primary Carnivore
## 6182          1.60140574        0.281204828 Secondary Carnivore
## 6183          4.56954301        6.849625561 Secondary Carnivore
## 6184          1.85629799        0.002059853 Secondary Carnivore
## 6185          2.52652832        0.015041422   Primary Carnivore
## 6186          2.16332303        0.223982763 Secondary Carnivore
## 6187          1.66770682        2.894695819 Secondary Carnivore
## 6188          4.47960696        6.849625561 Secondary Carnivore
## 6189          0.00000000        0.015041422   Primary Carnivore
## 6190          4.85203026        6.942696930 Secondary Carnivore
## 6191          5.02388052        4.094232049   Primary Carnivore
## 6192          1.85848310        0.900183757   Primary Carnivore
## 6193          6.44730586        7.288251436 Secondary Carnivore
## 6194          0.00000000        1.315195554   Primary Carnivore
## 6195          4.79579055        7.288251436   Primary Carnivore
## 6196          2.86789890        2.387053327 Secondary Carnivore
## 6197          3.15700042        2.387053327 Secondary Carnivore
## 6198          1.09192330        0.211247175 Secondary Carnivore
## 6199          1.82454929        0.063185562 Secondary Carnivore
## 6200          1.02961942        2.894695819   Primary Carnivore
## 6201          4.59208495        2.387053327 Secondary Carnivore
## 6202          3.91657264        4.232513096   Primary Carnivore
## 6203          1.76644166        4.047182371 Secondary Carnivore
## 6204          2.74071098        3.873611973 Secondary Carnivore
## 6205          0.99325177        0.878396534   Primary Carnivore
## 6206          3.26956894        2.894695819   Primary Carnivore
## 6207          3.01944880        2.853935439 Secondary Carnivore
## 6208          7.72832775        6.670778349 Secondary Carnivore
## 6209          1.12167756        0.015041422   Primary Carnivore
## 6210          1.08180517        0.211247175 Secondary Carnivore
## 6211          0.83290912        0.470853119  Tertiary Carnivore
## 6212          4.12713439        0.004578480  Tertiary Carnivore
## 6213          0.00000000        1.126655451   Primary Carnivore
## 6214          3.58629287        6.670778349   Primary Carnivore
## 6215          0.01064316        0.305596011  Tertiary Carnivore
## 6216          1.38629436        0.020024930  Tertiary Carnivore
## 6217          1.24126859        0.561550440 Secondary Carnivore
## 6218          5.48188814        6.670778349 Secondary Carnivore
## 6219          7.34018684        6.942696930  Tertiary Carnivore
## 6220          1.32972401        0.015041422  Tertiary Carnivore
## 6221          6.06092531        2.610718759 Secondary Carnivore
## 6222          7.88615659        6.670778349 Secondary Carnivore
## 6223          4.25844557        0.002059853 Secondary Carnivore
## 6224          8.12346889        7.288251436 Secondary Carnivore
## 6225          1.14740245        0.015041422 Secondary Carnivore
## 6226          6.83936937        6.849625561 Secondary Carnivore
## 6227          6.41345896        4.094232049 Secondary Carnivore
## 6228          3.92395158        2.277308093   Primary Carnivore
## 6229          3.54673969        6.670778349 Secondary Carnivore
## 6230          3.56953270        2.387053327 Secondary Carnivore
## 6231          0.00000000        0.130455954 Secondary Carnivore
## 6232          4.41642806        6.670778349 Secondary Carnivore
## 6233          3.21112587        3.651616415 Secondary Carnivore
## 6234          3.01553490        0.015041422  Tertiary Carnivore
## 6235          4.29959566        2.153233085   Primary Carnivore
## 6236          4.83628191        6.849625561 Secondary Carnivore
## 6237          4.24769492        3.873611973 Secondary Carnivore
## 6238          3.91921707        1.506685742 Secondary Carnivore
## 6239          0.26236426        2.024989105   Primary Carnivore
## 6240          1.40609699        0.305596011  Tertiary Carnivore
## 6241          0.00000000        1.459857720   Primary Carnivore
## 6242          5.14166356        7.288251436  Tertiary Carnivore
## 6243          3.28057281        2.433189939 Secondary Carnivore
## 6244          4.45781801        7.288251436   Primary Carnivore
## 6245          4.27527626        6.670778349   Primary Carnivore
## 6246          7.52736356        7.288251436 Secondary Carnivore
## 6247          4.23555473        4.094232049 Secondary Carnivore
## 6248          0.02078254        1.180964506 Secondary Carnivore
## 6249          0.85441533        2.153233085           Herbivore
## 6250          0.00000000        0.130455954 Secondary Carnivore
## 6251          1.99877364        0.015041422  Tertiary Carnivore
## 6252          0.00000000        3.146907198   Primary Carnivore
## 6253          7.95384545        6.849625561 Secondary Carnivore
## 6254          2.64617480        0.305596011  Tertiary Carnivore
## 6255          3.12236492        3.038160131 Secondary Carnivore
## 6256          0.00000000        0.340191127   Primary Carnivore
## 6257          4.41558229        3.943759073 Secondary Carnivore
## 6258          3.70179568        0.735932630   Primary Carnivore
## 6259          4.56017282        3.146907198 Secondary Carnivore
## 6260          2.13416644        1.742111989 Secondary Carnivore
## 6261          6.77445243        6.670778349 Secondary Carnivore
## 6262          2.54160199        2.050338578   Primary Carnivore
## 6263          2.08815348        0.009889753           Herbivore
## 6264          2.89668512        2.136925014 Secondary Carnivore
## 6265          2.10413415        1.886232978 Secondary Carnivore
## 6266          4.71573613        3.304296954 Secondary Carnivore
## 6267          7.34665516        7.288251436 Secondary Carnivore
## 6268          5.22810947        1.168798094   Primary Carnivore
## 6269          2.21920348        0.223982763 Secondary Carnivore
## 6270          2.79116511        1.886232978   Primary Carnivore
## 6271          2.56240767        2.075946520   Primary Carnivore
## 6272          2.84490938        3.473231162  Tertiary Carnivore
## 6273          1.52388002        1.532760019 Secondary Carnivore
## 6274          3.63663834        3.651616415   Primary Carnivore
## 6275          2.36368019        0.015041422   Primary Carnivore
## 6276          3.92789635        6.849625561   Primary Carnivore
## 6277          2.91695959        2.433189939 Secondary Carnivore
## 6278          6.52590904        6.670778349 Secondary Carnivore
## 6279          2.45958884        0.015041422   Primary Carnivore
## 6280          2.59525471        3.473231162 Secondary Carnivore
## 6281          7.61386804        6.670778349 Secondary Carnivore
## 6282          2.27212589        1.532760019   Primary Carnivore
## 6283          3.68637632        2.153233085 Secondary Carnivore
## 6284          0.00000000        0.211247175 Secondary Carnivore
## 6285          3.33932198        2.404044412 Secondary Carnivore
## 6286          1.90389697        0.211247175 Secondary Carnivore
## 6287          3.25424297        3.515099295 Secondary Carnivore
## 6288          2.98568194        4.121930401   Primary Carnivore
## 6289          2.82137889        2.153233085 Secondary Carnivore
## 6290          3.15700042        1.168798094 Secondary Carnivore
## 6291          5.61312811        6.849625561   Primary Carnivore
## 6292          3.23080440        2.241290896   Primary Carnivore
## 6293          2.05412373        0.856029167 Secondary Carnivore
## 6294          2.47653840        0.885298676  Tertiary Carnivore
## 6295          3.24259235        0.749689812   Primary Carnivore
## 6296          3.23867845        3.146907198 Secondary Carnivore
## 6297          2.27829240        2.387053327  Tertiary Carnivore
## 6298          5.44570235        1.168798094   Primary Carnivore
## 6299          5.77455155        6.942696930  Tertiary Carnivore
## 6300          4.57367952        4.094232049 Secondary Carnivore
## 6301          6.28897318        6.670778349 Secondary Carnivore
## 6302          4.86375810        1.673740129   Primary Carnivore
## 6303          2.81367068        2.891851822  Tertiary Carnivore
## 6304          0.00000000        0.002344505 Secondary Carnivore
## 6305          1.20297230        0.015041422   Primary Carnivore
## 6306          2.83749827        2.853935439 Secondary Carnivore
## 6307          7.05142263        6.670778349 Secondary Carnivore
## 6308          3.25037449        0.020024930   Primary Carnivore
## 6309          1.00063188        1.711701702 Secondary Carnivore
## 6310          7.78130551        6.670778349 Secondary Carnivore
## 6311          7.82043952        7.288251436 Secondary Carnivore
## 6312          8.06495089        4.094232049 Secondary Carnivore
## 6313          0.79750720        0.413477448 Secondary Carnivore
## 6314          0.00000000        1.673740129           Herbivore
## 6315          4.51085951        7.288251436 Secondary Carnivore
## 6316          2.25023861        0.214753881 Secondary Carnivore
## 6317          2.82137889        0.009889753   Primary Carnivore
## 6318          8.50329709        7.288251436 Secondary Carnivore
## 6319          4.58598737        4.094232049 Secondary Carnivore
## 6320          3.79098468        1.168798094 Secondary Carnivore
## 6321          0.00000000        0.015041422   Primary Carnivore
## 6322          2.54944517        0.015041422  Tertiary Carnivore
## 6323          5.52146092        6.942696930 Secondary Carnivore
## 6324          2.94443898        2.894695819   Primary Carnivore
## 6325          1.62136648        1.180964506  Tertiary Carnivore
## 6326          3.72810017        1.673740129 Secondary Carnivore
## 6327          3.66612247        6.849625561 Secondary Carnivore
## 6328          0.83290912        0.147199990  Tertiary Carnivore
## 6329          1.66203036        0.009889753  Tertiary Carnivore
## 6330          4.30000280        6.849625561 Secondary Carnivore
## 6331          1.69009582        0.015041422 Secondary Carnivore
## 6332          3.88362353        6.849625561   Primary Carnivore
## 6333          2.54944517        0.044241443   Primary Carnivore
## 6334          0.63180355        4.047182371   Primary Carnivore
## 6335          3.87120101        1.673740129 Secondary Carnivore
## 6336          3.59731226        2.153233085 Secondary Carnivore
## 6337          4.66343909        6.849625561 Secondary Carnivore
## 6338          5.57215403        4.259772081   Primary Carnivore
## 6339          1.27256560        0.823328714 Secondary Carnivore
## 6340          0.82855182        1.877421323 Secondary Carnivore
## 6341          6.11146734        7.288251436   Primary Carnivore
## 6342          0.00000000        0.116104790 Secondary Carnivore
## 6343          4.98360662        4.094232049   Primary Carnivore
## 6344          4.46579317        3.473231162   Primary Carnivore
## 6345          5.35185813        7.288251436  Tertiary Carnivore
## 6346          1.99741771        0.490146528  Tertiary Carnivore
## 6347          3.81683282        2.153233085 Secondary Carnivore
## 6348          0.30748470        0.211247175  Tertiary Carnivore
## 6349          6.27795841        6.670778349 Secondary Carnivore
## 6350          1.22671229        0.305596011  Tertiary Carnivore
## 6351          0.69314718        0.470853119  Tertiary Carnivore
## 6352          2.91158951        1.962719022 Secondary Carnivore
## 6353          3.93573953        1.168798094 Secondary Carnivore
## 6354          2.77819796        0.015041422   Primary Carnivore
## 6355          4.29728541        4.094232049 Secondary Carnivore
## 6356          0.00000000        0.009889753  Tertiary Carnivore
## 6357          7.22875123        6.670778349 Secondary Carnivore
## 6358          5.55902642        1.168798094   Primary Carnivore
## 6359          7.02028007        6.670778349 Secondary Carnivore
## 6360          2.37861978        2.387053327 Secondary Carnivore
## 6361          4.48863637        6.670778349 Secondary Carnivore
## 6362          0.78845736        0.130455954 Secondary Carnivore
## 6363          0.40546511        2.894695819   Primary Carnivore
## 6364          7.34665516        7.288251436 Secondary Carnivore
## 6365          0.00000000        1.459857720   Primary Carnivore
## 6366          0.00000000        0.002344505 Secondary Carnivore
## 6367          4.92308559        7.288251436 Secondary Carnivore
## 6368          3.36729583        1.168798094 Secondary Carnivore
## 6369          1.78170913        0.856029167   Primary Carnivore
## 6370          6.08904488        7.288251436 Secondary Carnivore
## 6371          2.16676537        0.015041422  Tertiary Carnivore
## 6372          3.75560309        6.942696930 Secondary Carnivore
## 6373          0.83290912        4.262479896 Secondary Carnivore
## 6374          1.05779029        2.122440181 Secondary Carnivore
## 6375          4.51085951        7.288251436 Secondary Carnivore
## 6376          1.93152141        0.490146528 Secondary Carnivore
## 6377          2.03339760        1.742111989 Secondary Carnivore
## 6378          3.68135119        2.387053327 Secondary Carnivore
## 6379          2.56510319        2.254856321   Primary Carnivore
## 6380          5.64897424        4.259772081 Secondary Carnivore
## 6381          3.51868408        1.886232978 Secondary Carnivore
## 6382          2.54944517        0.281204828 Secondary Carnivore
## 6383          5.89715387        6.942696930  Tertiary Carnivore
## 6384          2.61739583        1.742111989 Secondary Carnivore
## 6385          2.24191003        6.670778349 Secondary Carnivore
## 6386          7.47363711        7.288251436 Secondary Carnivore
## 6387          1.96571278        0.856029167 Secondary Carnivore
## 6388          0.40546511        0.063185562 Secondary Carnivore
## 6389          6.19031541        6.942696930  Tertiary Carnivore
## 6390          2.28033948        1.532760019   Primary Carnivore
## 6391          2.13947776        4.047182371 Secondary Carnivore
## 6392          3.49650756        3.146907198 Secondary Carnivore
## 6393          0.53062825        0.130455954  Tertiary Carnivore
## 6394          3.95316495        6.670778349 Secondary Carnivore
## 6395          3.73050113        6.670778349 Secondary Carnivore
## 6396          3.05870707        3.038160131 Secondary Carnivore
## 6397          8.44080878        6.849625561 Secondary Carnivore
## 6398          2.32630162        2.845177164 Secondary Carnivore
## 6399          1.48160454        0.130455954 Secondary Carnivore
## 6400          3.57234564        3.168005566 Secondary Carnivore
## 6401          6.59441346        7.288251436  Tertiary Carnivore
## 6402          4.60616969        4.259772081  Tertiary Carnivore
## 6403          1.54756251        0.015041422 Secondary Carnivore
## 6404          4.22537282        1.168798094 Secondary Carnivore
## 6405          0.00000000        0.470853119  Tertiary Carnivore
## 6406          2.98061864        2.387053327 Secondary Carnivore
## 6407          3.76352300        1.168798094 Secondary Carnivore
## 6408          3.19179236        1.540263127 Secondary Carnivore
## 6409          4.01096295        6.670778349 Secondary Carnivore
## 6410          5.11198779        4.094232049  Tertiary Carnivore
## 6411          1.16315081        1.126655451   Primary Carnivore
## 6412          1.19392247        0.211247175 Secondary Carnivore
## 6413          7.39079852        7.288251436 Secondary Carnivore
## 6414          4.66861436        2.153233085 Secondary Carnivore
## 6415          1.54756251        0.009889753  Tertiary Carnivore
## 6416          6.06610809        7.288251436  Tertiary Carnivore
## 6417          4.04480412        6.942696930  Tertiary Carnivore
## 6418          4.98561830        3.304296954   Primary Carnivore
## 6419          6.77502357        6.849625561 Secondary Carnivore
## 6420          4.62497281        3.168005566 Secondary Carnivore
## 6421          2.58021683        1.532760019   Primary Carnivore
## 6422          4.98360662        4.094232049   Primary Carnivore
## 6423          2.63905733        2.153233085 Secondary Carnivore
## 6424          5.22035583        3.146907198 Secondary Carnivore
## 6425          7.13297667        6.670778349 Secondary Carnivore
## 6426          2.58776404        0.757060688 Secondary Carnivore
## 6427          2.11709853        3.515099295 Secondary Carnivore
## 6428          2.36837283        0.735932630 Secondary Carnivore
## 6429          4.18813844        6.849625561  Tertiary Carnivore
## 6430          0.00000000        0.004578480 Secondary Carnivore
## 6431          3.41444261        1.742111989 Secondary Carnivore
## 6432          5.13603370        1.673740129 Secondary Carnivore
## 6433          1.80664808        0.116104790 Secondary Carnivore
## 6434          3.39114705        1.670180746 Secondary Carnivore
## 6435          1.30019166        2.845177164 Secondary Carnivore
## 6436          3.13113691        4.259772081 Secondary Carnivore
## 6437          2.64326276        0.490146528 Secondary Carnivore
## 6438          0.00000000        0.015041422 Secondary Carnivore
## 6439          4.08260931        6.670778349 Secondary Carnivore
## 6440          5.02388052        6.942696930 Secondary Carnivore
## 6441          1.04027671        0.885298676 Secondary Carnivore
## 6442          3.94931879        7.161415474 Secondary Carnivore
## 6443          0.00000000        0.002059853 Secondary Carnivore
## 6444          2.14943391        0.735932630 Secondary Carnivore
## 6445          7.29369772        7.288251436 Secondary Carnivore
## 6446          1.53686722        0.015041422  Tertiary Carnivore
## 6447          0.00000000        0.147199990 Secondary Carnivore
## 6448          2.11142459        0.900183757 Secondary Carnivore
## 6449          1.82454929        0.490146528  Tertiary Carnivore
## 6450          0.83290912        1.831515834 Secondary Carnivore
## 6451          4.75780543        4.094232049 Secondary Carnivore
## 6452          2.74084002        1.886232978 Secondary Carnivore
## 6453          6.03954017        1.886232978 Secondary Carnivore
## 6454          0.17395331        1.532760019  Tertiary Carnivore
## 6455          3.28091122        3.146907198 Secondary Carnivore
## 6456          5.35185813        7.288251436  Tertiary Carnivore
## 6457          0.00000000        2.404044412           Herbivore
## 6458          1.19392247        0.147199990 Secondary Carnivore
## 6459          4.44968528        1.168798094  Tertiary Carnivore
## 6460          4.82807371        1.673740129   Primary Carnivore
## 6461          0.00000000        1.877421323 Secondary Carnivore
## 6462          7.68303529        6.849625561 Secondary Carnivore
## 6463          1.85207032        0.211247175 Secondary Carnivore
## 6464          0.19885086        0.305596011 Secondary Carnivore
## 6465          1.65822808        0.885298676  Tertiary Carnivore
## 6466          1.84292776        1.962719022 Secondary Carnivore
## 6467          2.58021683        2.136925014 Secondary Carnivore
## 6468          5.77299754        1.886232978   Primary Carnivore
## 6469          4.45771372        1.886232978   Primary Carnivore
## 6470          2.77102500        1.962719022  Tertiary Carnivore
## 6471          3.94352167        3.146907198  Tertiary Carnivore
## 6472          2.95491028        2.472143654   Primary Carnivore
## 6473          7.98214318        6.849625561 Secondary Carnivore
## 6474          4.79892612        2.387053327   Primary Carnivore
## 6475          0.92821930        6.942696930           Herbivore
## 6476          7.83494639        6.670778349 Secondary Carnivore
## 6477          7.03341830        6.670778349 Secondary Carnivore
## 6478          1.32175584        2.254856321 Secondary Carnivore
## 6479          6.78649119        6.670778349  Tertiary Carnivore
## 6480          0.00000000        1.670180746   Primary Carnivore
## 6481          0.00000000        2.404044412           Herbivore
## 6482          5.90511659        1.886232978   Primary Carnivore
## 6483          4.61485315        1.432814265 Secondary Carnivore
## 6484          4.22753423        1.506685742   Primary Carnivore
## 6485          7.39184671        7.288251436 Secondary Carnivore
## 6486          1.28923265        0.856029167 Secondary Carnivore
## 6487          1.51292701        0.015041422 Secondary Carnivore
## 6488          0.97455964        0.305596011  Tertiary Carnivore
## 6489          7.97968130        7.288251436 Secondary Carnivore
## 6490          1.18784342        0.561550440 Secondary Carnivore
## 6491          4.06355884        2.138914945 Secondary Carnivore
## 6492          3.19043520        2.610718759 Secondary Carnivore
## 6493          1.76985463        0.015041422  Tertiary Carnivore
## 6494          5.38587026        0.004578480  Tertiary Carnivore
## 6495          1.32441896        4.047182371 Secondary Carnivore
## 6496          0.83290912        5.169038067   Primary Carnivore
## 6497          2.56617937        1.962719022 Secondary Carnivore
## 6498          2.17815501        2.845177164 Secondary Carnivore
## 6499          4.96284463        6.670778349  Tertiary Carnivore
## 6500          2.16217294        0.009889753   Primary Carnivore
## 6501          0.90421815        0.305596011  Tertiary Carnivore
## 6502          0.00000000        1.886232978           Herbivore
## 6503          1.34547237        0.856029167 Secondary Carnivore
## 6504          0.00000000        0.004578480  Tertiary Carnivore
## 6505          3.57660621        1.432814265  Tertiary Carnivore
## 6506          0.43048287        0.856029167  Tertiary Carnivore
## 6507          7.98132323        6.670778349 Secondary Carnivore
## 6508          3.66867675        0.749689812   Primary Carnivore
## 6509          1.19392247        1.532760019  Tertiary Carnivore
## 6510          4.18801704        3.651616415   Primary Carnivore
## 6511          1.44926916        1.251683108 Secondary Carnivore
## 6512          4.50534985        4.094232049  Tertiary Carnivore
## 6513          2.44633906        0.470853119 Secondary Carnivore
## 6514          4.34510328        6.670778349 Secondary Carnivore
## 6515          4.84418709        3.146907198 Secondary Carnivore
## 6516          1.49962305        0.561550440 Secondary Carnivore
## 6517          6.67997600        6.670778349 Secondary Carnivore
## 6518          2.11384297        0.009889753 Secondary Carnivore
## 6519          3.50453585        3.873611973  Tertiary Carnivore
## 6520          8.49631679        6.849625561 Secondary Carnivore
## 6521          5.86646806        2.153233085  Tertiary Carnivore
## 6522          0.37156356        0.130455954 Secondary Carnivore
## 6523          0.00000000        1.981883583   Primary Carnivore
## 6524          4.31348009        4.259772081 Secondary Carnivore
## 6525          2.82137889        1.168798094 Secondary Carnivore
## 6526          2.65324196        0.002344505 Secondary Carnivore
## 6527          3.85014760        6.849625561 Secondary Carnivore
## 6528          3.86157146        0.015041422 Secondary Carnivore
## 6529          3.26575941        2.387053327 Secondary Carnivore
## 6530          4.62497281        4.259772081 Secondary Carnivore
## 6531          2.94443898        0.004578480  Tertiary Carnivore
## 6532          4.39444915        7.288251436 Secondary Carnivore
## 6533          0.99325177        0.130455954  Tertiary Carnivore
## 6534          4.00369019        1.307030142 Secondary Carnivore
## 6535          0.53999600        0.413477448  Tertiary Carnivore
## 6536          0.26236426        1.920179330   Primary Carnivore
## 6537          3.30310667        1.506685742 Secondary Carnivore
## 6538          0.00000000        0.130455954 Secondary Carnivore
## 6539          4.21331208        1.886232978 Secondary Carnivore
## 6540          5.75574221        1.168798094 Secondary Carnivore
## 6541          1.56024767        0.009889753   Primary Carnivore
## 6542          2.02683159        0.885298676  Tertiary Carnivore
## 6543          4.75531284        3.943759073 Secondary Carnivore
## 6544          4.99767163        4.232513096 Secondary Carnivore
## 6545          2.22354189        0.015041422 Secondary Carnivore
## 6546          3.26575941        5.169038067   Primary Carnivore
## 6547          1.71918878        0.856029167   Primary Carnivore
## 6548          1.13462273        2.136925014 Secondary Carnivore
## 6549          0.58778666        0.147199990 Secondary Carnivore
## 6550          1.84150156        1.711701702  Tertiary Carnivore
## 6551          2.97041447        2.387053327 Secondary Carnivore
## 6552          0.00000000        0.002344505 Secondary Carnivore
## 6553          0.00000000        2.404044412           Herbivore
## 6554          2.77258872        0.116104790 Secondary Carnivore
## 6555          1.85629799        0.490146528  Tertiary Carnivore
## 6556          4.59410924        3.168005566 Secondary Carnivore
## 6557          5.56452041        7.288251436  Tertiary Carnivore
## 6558          8.05360097        6.670778349 Secondary Carnivore
## 6559          3.24649099        1.307030142 Secondary Carnivore
## 6560          1.70292826        0.015041422 Secondary Carnivore
## 6561          3.88752537        0.749689812   Primary Carnivore
## 6562          0.00000000        0.015041422  Tertiary Carnivore
## 6563          5.18178355        6.849625561 Secondary Carnivore
## 6564          2.40865536        1.540263127 Secondary Carnivore
## 6565          2.90690106        3.515099295 Secondary Carnivore
## 6566          2.61739583        0.757060688  Tertiary Carnivore
## 6567          2.52572864        0.735932630 Secondary Carnivore
## 6568          3.36037539        2.891851822  Tertiary Carnivore
## 6569          3.35340672        5.169038067   Primary Carnivore
## 6570          0.00000000        1.886232978           Herbivore
## 6571          1.98787435        2.241290896   Primary Carnivore
## 6572          2.68852753        3.226603994 Secondary Carnivore
## 6573          2.58776404        2.136925014 Secondary Carnivore
## 6574          1.35325451        2.404044412 Secondary Carnivore
## 6575          4.70953020        7.288251436 Secondary Carnivore
## 6576          7.35212054        6.849625561 Secondary Carnivore
## 6577          2.56494936        1.315195554 Secondary Carnivore
## 6578          5.81889528        6.849625561 Secondary Carnivore
## 6579          1.79275897        0.116104790 Secondary Carnivore
## 6580          1.62924054        0.147199990 Secondary Carnivore
## 6581          7.75022723        6.670778349 Secondary Carnivore
## 6582          3.79773386        4.094232049 Secondary Carnivore
## 6583          0.95551145        0.490146528  Tertiary Carnivore
## 6584          1.53255687        2.075946520 Secondary Carnivore
## 6585          5.14813381        1.886232978   Primary Carnivore
## 6586          0.00000000        1.886232978           Herbivore
## 6587          0.33647224        2.894695819   Primary Carnivore
## 6588          3.28578653        0.015041422 Secondary Carnivore
## 6589          2.29253476        1.315195554   Primary Carnivore
## 6590          7.29715875        6.849625561 Secondary Carnivore
## 6591          0.26236426        2.024989105   Primary Carnivore
## 6592          0.68813464        1.251683108 Secondary Carnivore
## 6593          1.02961942        0.470853119  Tertiary Carnivore
## 6594          1.26976054        1.180964506 Secondary Carnivore
## 6595          4.04305127        6.670778349  Tertiary Carnivore
## 6596          3.96840334        2.050338578   Primary Carnivore
## 6597          5.72227706        6.849625561 Secondary Carnivore
## 6598          4.79579055        7.288251436 Secondary Carnivore
## 6599          7.40482675        6.670778349 Secondary Carnivore
## 6600          0.78845736        7.161415474   Primary Carnivore
## 6601          5.57215403        4.259772081   Primary Carnivore
## 6602          3.51452607        1.886232978 Secondary Carnivore
## 6603          1.87640694        0.885298676  Tertiary Carnivore
## 6604          2.63905733        0.002059853 Secondary Carnivore
## 6605          0.00000000        2.894695819   Primary Carnivore
## 6606          3.40452517        1.886232978 Secondary Carnivore
## 6607          0.00000000        0.002059853 Secondary Carnivore
## 6608          2.24918432        0.009889753   Primary Carnivore
## 6609          1.66392610        0.211247175 Secondary Carnivore
## 6610          0.06765865        0.305596011 Secondary Carnivore
## 6611          2.27212589        1.670180746 Secondary Carnivore
## 6612          2.77881927        0.885298676  Tertiary Carnivore
## 6613          6.58340922        4.259772081  Tertiary Carnivore
## 6614          0.00000000        1.670180746   Primary Carnivore
## 6615          1.45161383        1.532760019 Secondary Carnivore
## 6616          1.99333884        1.307030142 Secondary Carnivore
## 6617          0.00000000        0.002059853 Secondary Carnivore
## 6618          2.04122033        0.063185562 Secondary Carnivore
## 6619          2.23537634        0.015041422 Secondary Carnivore
## 6620          2.58021683        2.891851822 Secondary Carnivore
## 6621          4.25134831        1.168798094 Secondary Carnivore
## 6622          0.00000000        2.404044412           Herbivore
## 6623          1.47476301        0.900183757 Secondary Carnivore
## 6624          6.77490937        6.849625561 Secondary Carnivore
## 6625          3.42816383        0.015041422   Primary Carnivore
## 6626          1.61541998        0.009889753  Tertiary Carnivore
## 6627          6.90505163        6.849625561 Secondary Carnivore
## 6628          1.66770682        0.002344505 Secondary Carnivore
## 6629          3.03013370        3.146907198 Secondary Carnivore
## 6630          1.81156210        0.211247175 Secondary Carnivore
## 6631          1.01884732        0.223982763 Secondary Carnivore
## 6632          1.51072194        0.015041422  Tertiary Carnivore
## 6633          5.68357977        4.094232049  Tertiary Carnivore
## 6634          4.79579055        7.288251436 Secondary Carnivore
## 6635          1.19996478        0.015041422  Tertiary Carnivore
## 6636          7.45066080        7.288251436 Secondary Carnivore
## 6637          2.47863704        1.711701702   Primary Carnivore
## 6638          1.31640823        0.214753881 Secondary Carnivore
## 6639          6.08677473        4.094232049 Secondary Carnivore
## 6640          3.51443678        2.610718759 Secondary Carnivore
## 6641          2.92316158        3.473231162 Secondary Carnivore
## 6642          1.77495235        0.002344505 Secondary Carnivore
## 6643          0.00000000        1.877421323 Secondary Carnivore
## 6644          2.32727771        0.009889753           Herbivore
## 6645          1.43983513        0.305596011  Tertiary Carnivore
## 6646          5.21553341        0.735932630   Primary Carnivore
## 6647          4.19166787        2.433189939 Secondary Carnivore
## 6648          1.47796155        1.711701702  Tertiary Carnivore
## 6649          2.28238239        1.315195554 Secondary Carnivore
## 6650          2.55722731        1.315195554 Secondary Carnivore
## 6651          3.16665579        0.470853119 Secondary Carnivore
## 6652          0.00000000        0.002344505  Tertiary Carnivore
## 6653          2.79116511        0.009889753           Herbivore
## 6654          1.75958057        4.262479896 Secondary Carnivore
## 6655          1.29746315        0.413477448 Secondary Carnivore
## 6656          2.85647021        1.886232978 Secondary Carnivore
## 6657          2.85070650        0.063185562 Secondary Carnivore
## 6658          5.18505908        1.432814265 Secondary Carnivore
## 6659          1.20297230        1.831515834  Tertiary Carnivore
## 6660          3.26956894        1.886232978 Secondary Carnivore
## 6661          3.80443779        6.670778349   Primary Carnivore
## 6662          5.01727984        7.288251436  Tertiary Carnivore
## 6663          3.85227300        6.670778349 Secondary Carnivore
## 6664          3.27222700        0.735932630   Primary Carnivore
## 6665          1.08180517        0.116104790 Secondary Carnivore
## 6666          1.89611948        0.885298676 Secondary Carnivore
## 6667          1.66770682        0.490146528 Secondary Carnivore
## 6668          4.27495632        4.232513096  Tertiary Carnivore
## 6669          5.77827133        6.670778349  Tertiary Carnivore
## 6670          0.00000000        1.673740129           Herbivore
## 6671          1.48387469        0.885298676 Secondary Carnivore
## 6672          3.55820113        2.153233085           Herbivore
## 6673          0.78845736        2.145288428 Secondary Carnivore
## 6674          2.00417906        0.211247175 Secondary Carnivore
## 6675          8.42299240        6.849625561 Secondary Carnivore
## 6676          6.01859321        7.288251436  Tertiary Carnivore
## 6677          0.00000000        0.002059853 Secondary Carnivore
## 6678          1.95727391        0.004578480   Primary Carnivore
## 6679          1.62924054        0.223982763 Secondary Carnivore
## 6680          1.04027671        1.454402431 Secondary Carnivore
## 6681          5.44241771        2.153233085 Secondary Carnivore
## 6682          3.06339092        3.943759073 Secondary Carnivore
## 6683          2.53369681        1.981883583   Primary Carnivore
## 6684          4.09434456        7.288251436 Secondary Carnivore
## 6685          3.28776736        2.433189939  Tertiary Carnivore
## 6686          5.30330491        7.288251436 Secondary Carnivore
## 6687          0.00000000        0.009889753 Secondary Carnivore
## 6688          5.28826703        2.153233085  Tertiary Carnivore
## 6689          0.95551145        0.211247175 Secondary Carnivore
## 6690          1.67335124        0.735932630 Secondary Carnivore
## 6691          2.70136121        3.515099295 Secondary Carnivore
## 6692          1.18172720        2.387053327 Secondary Carnivore
## 6693          2.41126011        1.014024833 Secondary Carnivore
## 6694          2.32238772        0.223982763 Secondary Carnivore
## 6695          7.51261754        6.942696930 Secondary Carnivore
## 6696          0.00000000        0.009889753 Secondary Carnivore
## 6697          2.63905733        0.002059853 Secondary Carnivore
## 6698          0.91629073        0.063185562 Secondary Carnivore
## 6699          3.02456266        2.254856321 Secondary Carnivore
## 6700          1.41098697        0.147199990 Secondary Carnivore
## 6701          3.78940329        0.214753881  Tertiary Carnivore
## 6702          0.83290912        0.130455954 Secondary Carnivore
## 6703          7.62525355        6.849625561 Secondary Carnivore
## 6704          3.34990409        2.387053327   Primary Carnivore
## 6705          4.61512052        7.288251436  Tertiary Carnivore
## 6706          3.55010577        1.540263127 Secondary Carnivore
## 6707          1.24990174        2.241290896   Primary Carnivore
## 6708          7.22329568        7.288251436 Secondary Carnivore
## 6709          4.71849887        3.146907198 Secondary Carnivore
## 6710          3.92296295        2.138914945 Secondary Carnivore
## 6711          3.28091122        1.168798094   Primary Carnivore
## 6712          2.38139627        2.136925014 Secondary Carnivore
## 6713          1.34547237        0.885298676 Secondary Carnivore
## 6714          2.23697934        0.490146528   Primary Carnivore
## 6715          2.91463067        2.136925014 Secondary Carnivore
## 6716          4.30217141        0.002059853 Secondary Carnivore
## 6717          1.13140211        0.470853119  Tertiary Carnivore
## 6718          3.38113072        1.632888289 Secondary Carnivore
## 6719          1.53901545        2.853935439 Secondary Carnivore
## 6720          2.98061864        0.885298676  Tertiary Carnivore
## 6721          1.95868534        0.211247175 Secondary Carnivore
## 6722          1.68639895        7.161415474 Secondary Carnivore
## 6723          3.09557761        0.009889753   Primary Carnivore
## 6724          2.63991411        2.254856321   Primary Carnivore
## 6725          0.00000000        0.305596011 Secondary Carnivore
## 6726          3.36037539        1.168798094 Secondary Carnivore
## 6727          1.59533899        0.413477448 Secondary Carnivore
## 6728          3.56133013        1.886232978 Secondary Carnivore
## 6729          4.65396035        1.168798094 Secondary Carnivore
## 6730          0.00000000        1.459857720   Primary Carnivore
## 6731          7.34968088        6.849625561 Secondary Carnivore
## 6732          4.68213123        6.670778349  Tertiary Carnivore
## 6733          1.31908561        0.004578480   Primary Carnivore
## 6734          8.85237889        7.288251436 Secondary Carnivore
## 6735          0.93216408        4.094232049           Herbivore
## 6736          4.86753445        2.153233085 Secondary Carnivore
## 6737          0.00000000        0.281204828 Secondary Carnivore
## 6738          2.12823171        0.211247175 Secondary Carnivore
## 6739          5.67194775        1.886232978 Secondary Carnivore
## 6740          0.82417544        1.831515834   Primary Carnivore
## 6741          0.63657683        4.259772081           Herbivore
## 6742          6.61069604        6.942696930 Secondary Carnivore
## 6743          3.42426265        3.651616415  Tertiary Carnivore
## 6744          3.73440238        3.943759073 Secondary Carnivore
## 6745          3.66612247        0.749689812   Primary Carnivore
## 6746          2.08193842        0.004578480  Tertiary Carnivore
## 6747          0.00000000        2.145288428 Secondary Carnivore
## 6748          3.77045944        2.050338578   Primary Carnivore
## 6749          8.52734152        7.288251436 Secondary Carnivore
## 6750          3.71571611        2.433189939 Secondary Carnivore
## 6751          3.06339092        0.735932630 Secondary Carnivore
## 6752          2.61520365        3.226603994  Tertiary Carnivore
## 6753          7.20630310        6.849625561 Secondary Carnivore
## 6754          2.83321334        3.146907198 Secondary Carnivore
## 6755          2.80940270        1.420705940 Secondary Carnivore
## 6756          6.99062476        7.288251436 Secondary Carnivore
## 6757          4.47847253        1.168798094 Secondary Carnivore
## 6758          1.68639895        0.116104790 Secondary Carnivore
## 6759          0.00000000        0.009889753           Herbivore
## 6760          2.50470928        1.432814265 Secondary Carnivore
## 6761          6.66134310        6.670778349 Secondary Carnivore
## 6762          0.87546874        0.063185562 Secondary Carnivore
## 6763          3.20453346        2.610718759  Tertiary Carnivore
## 6764          1.08518927        1.180964506  Tertiary Carnivore
## 6765          3.00071982        0.214753881  Tertiary Carnivore
## 6766          2.00552586        1.307030142 Secondary Carnivore
## 6767          1.46325540        4.094232049           Herbivore
## 6768          4.53689135        1.673740129 Secondary Carnivore
## 6769          5.25227343        7.288251436   Primary Carnivore
## 6770          3.03013370        1.670180746   Primary Carnivore
## 6771          5.25017699        3.473231162   Primary Carnivore
## 6772          3.88567903        2.387053327 Secondary Carnivore
## 6773          3.89731538        0.735932630 Secondary Carnivore
## 6774          5.54126355        3.146907198 Secondary Carnivore
## 6775          4.77912349        4.094232049  Tertiary Carnivore
## 6776          1.70402055        0.211247175 Secondary Carnivore
## 6777          2.81540872        0.757060688 Secondary Carnivore
## 6778          7.84998662        6.670778349 Secondary Carnivore
## 6779          0.00000000        0.002344505  Tertiary Carnivore
## 6780          3.94158181        3.168005566 Secondary Carnivore
## 6781          1.73342389        0.015041422 Secondary Carnivore
## 6782          3.49347266        1.168798094 Secondary Carnivore
## 6783          0.26236426        2.107009466   Primary Carnivore
## 6784          0.00000000        2.107009466   Primary Carnivore
## 6785          2.84490938        0.020024930  Tertiary Carnivore
## 6786          0.74193734        2.241290896   Primary Carnivore
## 6787          1.67335124        0.490146528 Secondary Carnivore
## 6788          4.02177387        2.153233085  Tertiary Carnivore
## 6789          4.50976000        6.670778349 Secondary Carnivore
## 6790          4.07414185        3.159561805   Primary Carnivore
## 6791          2.76744803        6.670778349 Secondary Carnivore
## 6792          2.96460274        3.038160131 Secondary Carnivore
## 6793          5.17868888        2.153233085 Secondary Carnivore
## 6794          1.55180880        0.009889753  Tertiary Carnivore
## 6795          1.38629436        0.063185562 Secondary Carnivore
## 6796          4.54648119        3.146907198 Secondary Carnivore
## 6797          2.37024374        0.490146528 Secondary Carnivore
## 6798          0.30748470        4.259772081           Herbivore
## 6799          2.01089500        0.214753881 Secondary Carnivore
## 6800          3.39450839        1.479154529   Primary Carnivore
## 6801          2.68784749        0.757060688   Primary Carnivore
## 6802          2.35801980        3.515099295 Secondary Carnivore
## 6803          3.76584050        0.009889753  Tertiary Carnivore
## 6804          0.81536481        1.251683108 Secondary Carnivore
## 6805          0.00000000        1.886232978           Herbivore
## 6806          1.28923265        0.004578480 Secondary Carnivore
## 6807          2.00512201        2.853935439   Primary Carnivore
## 6808          4.74449725        3.146907198 Secondary Carnivore
## 6809          4.03777421        6.670778349   Primary Carnivore
## 6810          4.71635371        1.168798094 Secondary Carnivore
## 6811          0.36394843        0.413477448  Tertiary Carnivore
## 6812          0.00000000        0.009889753           Herbivore
## 6813          4.94875989        7.288251436 Secondary Carnivore
## 6814          3.99636415        6.670778349 Secondary Carnivore
## 6815          1.15688120        0.004578480   Primary Carnivore
## 6816          3.51452607        1.168798094 Secondary Carnivore
## 6817          8.20305762        7.288251436 Secondary Carnivore
## 6818          0.81668960        1.705681497 Secondary Carnivore
## 6819          2.55567572        0.015041422   Primary Carnivore
## 6820          1.34547237        1.962719022 Secondary Carnivore
## 6821          2.37954613        0.004578480 Secondary Carnivore
## 6822          4.85203026        6.849625561  Tertiary Carnivore
## 6823          0.95165788        1.877421323 Secondary Carnivore
## 6824          4.74701691        0.002059853 Secondary Carnivore
## 6825          0.98954119        0.116104790 Secondary Carnivore
## 6826          7.58054668        6.670778349 Secondary Carnivore
## 6827          3.03013370        2.153233085 Secondary Carnivore
## 6828          6.27476202        7.288251436   Primary Carnivore
## 6829          4.55807858        6.670778349 Secondary Carnivore
## 6830          1.06594239        2.145288428 Secondary Carnivore
## 6831          2.39059597        1.886232978   Primary Carnivore
## 6832          5.50443683        6.942696930 Secondary Carnivore
## 6833          2.01623547        1.886232978   Primary Carnivore
## 6834          1.40609699        2.136925014 Secondary Carnivore
## 6835          0.00000000        2.404044412           Herbivore
## 6836          4.99043259        6.670778349 Secondary Carnivore
## 6837          3.44998755        1.886232978 Secondary Carnivore
## 6838          1.74221902        1.831515834 Secondary Carnivore
## 6839          0.83290912        1.315195554   Primary Carnivore
## 6840          2.67414865        1.168798094 Secondary Carnivore
## 6841          3.39785848        2.153233085 Secondary Carnivore
## 6842          3.76537743        1.886232978   Primary Carnivore
## 6843          0.53062825        2.472143654   Primary Carnivore
## 6844          3.68145194        1.014024833 Secondary Carnivore
## 6845          7.71020519        7.288251436 Secondary Carnivore
## 6846          2.18941639        1.532760019   Primary Carnivore
## 6847          1.82454929        3.226603994  Tertiary Carnivore
## 6848          1.79342475        4.047182371  Tertiary Carnivore
## 6849          6.29876541        6.849625561 Secondary Carnivore
## 6850          2.60172626        0.470853119  Tertiary Carnivore
## 6851          0.40879290        2.891851822 Secondary Carnivore
## 6852          0.00000000        0.009889753  Tertiary Carnivore
## 6853          2.70951579        1.540263127 Secondary Carnivore
## 6854          1.67147330        0.015041422   Primary Carnivore
## 6855          5.30330491        4.259772081 Secondary Carnivore
## 6856          3.64021428        1.070822001   Primary Carnivore
## 6857          1.89069942        2.075946520 Secondary Carnivore
## 6858          4.24849524        6.849625561 Secondary Carnivore
## 6859          3.97168717        4.232513096 Secondary Carnivore
## 6860          0.99694863        1.540263127   Primary Carnivore
## 6861          4.44851638        6.670778349 Secondary Carnivore
## 6862          0.00000000        0.015041422   Primary Carnivore
## 6863          2.62466859        0.004578480 Secondary Carnivore
## 6864          6.68511160        6.849625561 Secondary Carnivore
## 6865          5.30230939        6.670778349  Tertiary Carnivore
## 6866          4.50733683        2.387053327 Secondary Carnivore
## 6867          3.12236492        2.891851822 Secondary Carnivore
## 6868          6.72623340        6.942696930  Tertiary Carnivore
## 6869          1.04027671        0.116104790 Secondary Carnivore
## 6870          2.71469474        1.886232978 Secondary Carnivore
## 6871          1.30291275        0.490146528 Secondary Carnivore
## 6872          3.81771233        0.735932630 Secondary Carnivore
## 6873          2.84490938        4.259772081 Secondary Carnivore
## 6874          1.67147330        0.004578480   Primary Carnivore
## 6875          1.32441896        2.122440181 Secondary Carnivore
## 6876          1.66770682        0.490146528  Tertiary Carnivore
## 6877          1.69561561        0.009889753 Secondary Carnivore
## 6878          7.38634693        7.288251436 Secondary Carnivore
## 6879          1.45861502        0.223982763 Secondary Carnivore
## 6880          3.55820113        2.404044412 Secondary Carnivore
## 6881          3.95871573        3.473231162 Secondary Carnivore
## 6882          1.22377543        0.878396534   Primary Carnivore
## 6883          3.91800508        3.146907198  Tertiary Carnivore
## 6884          2.80336038        1.168798094 Secondary Carnivore
## 6885          1.79175947        0.878396534   Primary Carnivore
## 6886          1.75785792        0.223982763 Secondary Carnivore
## 6887          3.45568557        0.749689812   Primary Carnivore
## 6888          3.68250921        3.873611973 Secondary Carnivore
## 6889          1.42310833        1.454402431 Secondary Carnivore
## 6890          5.73979291        2.153233085   Primary Carnivore
## 6891          3.08190997        0.002059853 Secondary Carnivore
## 6892          3.23474917        1.886232978 Secondary Carnivore
## 6893          5.08140436        6.670778349   Primary Carnivore
## 6894          1.04027671        0.116104790 Secondary Carnivore
## 6895          3.91202301        0.004578480  Tertiary Carnivore
## 6896          3.92197334        6.670778349   Primary Carnivore
## 6897          2.33505228        1.886232978 Secondary Carnivore
## 6898          7.83391713        6.670778349 Secondary Carnivore
## 6899          4.52601875        2.138914945  Tertiary Carnivore
## 6900          4.56076888        1.432814265 Secondary Carnivore
## 6901          3.57632647        0.470853119 Secondary Carnivore
## 6902          2.94968834        1.307030142 Secondary Carnivore
## 6903          7.17142638        6.670778349 Secondary Carnivore
## 6904          2.37954613        0.490146528  Tertiary Carnivore
## 6905          1.80500470        1.886232978 Secondary Carnivore
## 6906          2.12584791        3.515099295 Secondary Carnivore
## 6907          4.80541352        4.094232049 Secondary Carnivore
## 6908          1.68639895        0.130455954 Secondary Carnivore
## 6909          6.91214563        6.670778349 Secondary Carnivore
## 6910          5.57473625        3.473231162   Primary Carnivore
## 6911          7.21604848        6.849625561 Secondary Carnivore
## 6912          2.43562887        2.853935439 Secondary Carnivore
## 6913          2.07693841        0.735932630 Secondary Carnivore
## 6914          1.28093385        0.130455954  Tertiary Carnivore
## 6915          1.41342303        0.413477448 Secondary Carnivore
## 6916          4.26310232        2.433189939  Tertiary Carnivore
## 6917          7.68959991        6.849625561 Secondary Carnivore
## 6918          4.26267988        7.288251436   Primary Carnivore
## 6919          3.49650756        1.168798094 Secondary Carnivore
## 6920          4.00551335        3.146907198 Secondary Carnivore
## 6921          4.20916024        1.886232978   Primary Carnivore
## 6922          7.83241093        6.942696930 Secondary Carnivore
## 6923          4.53646299        3.146907198 Secondary Carnivore
## 6924          8.53210151        6.849625561 Secondary Carnivore
## 6925          1.33500107        0.015041422 Secondary Carnivore
## 6926          2.82731362        0.002344505 Secondary Carnivore
## 6927          4.70048037        6.670778349 Secondary Carnivore
## 6928          4.35388433        1.168798094 Secondary Carnivore
## 6929          4.61541750        3.473231162  Tertiary Carnivore
## 6930          1.42069579        0.214753881 Secondary Carnivore
## 6931          1.06471074        0.305596011  Tertiary Carnivore
## 6932          5.16478597        7.288251436 Secondary Carnivore
## 6933          0.00000000        0.004578480 Secondary Carnivore
## 6934          1.09192330        1.180964506 Secondary Carnivore
## 6935          0.47000363        0.147199990 Secondary Carnivore
## 6936          0.00000000        0.004578480   Primary Carnivore
## 6937          5.39816270        7.288251436  Tertiary Carnivore
## 6938          1.19392247        1.670180746   Primary Carnivore
## 6939          5.50938834        4.094232049  Tertiary Carnivore
## 6940          1.77495235        0.490146528  Tertiary Carnivore
## 6941          3.23474917        1.670180746   Primary Carnivore
## 6942          3.06339092        0.735932630 Secondary Carnivore
## 6943          3.71843826        2.387053327 Secondary Carnivore
## 6944          1.67147330        0.856029167  Tertiary Carnivore
## 6945          4.98360662        6.849625561   Primary Carnivore
## 6946          0.00000000        0.147199990 Secondary Carnivore
## 6947          1.79175947        0.223982763 Secondary Carnivore
## 6948          1.49290410        0.823328714 Secondary Carnivore
## 6949          2.94443898        0.757060688 Secondary Carnivore
## 6950          2.60268969        0.009889753   Primary Carnivore
## 6951          1.69708242        2.122440181 Secondary Carnivore
## 6952          3.43398720        0.002344505 Secondary Carnivore
## 6953          4.80745776        1.168798094   Primary Carnivore
## 6954          1.60140574        0.281204828 Secondary Carnivore
## 6955          4.56954301        6.849625561 Secondary Carnivore
## 6956          1.85629799        0.002059853 Secondary Carnivore
## 6957          2.52652832        0.015041422   Primary Carnivore
## 6958          2.16332303        0.223982763 Secondary Carnivore
## 6959          1.66770682        2.894695819 Secondary Carnivore
## 6960          4.47960696        6.849625561 Secondary Carnivore
## 6961          0.00000000        0.015041422   Primary Carnivore
## 6962          4.85203026        6.942696930 Secondary Carnivore
## 6963          5.02388052        4.094232049   Primary Carnivore
## 6964          1.85848310        0.900183757   Primary Carnivore
## 6965          6.44730586        7.288251436 Secondary Carnivore
## 6966          0.00000000        1.315195554   Primary Carnivore
## 6967          4.79579055        7.288251436   Primary Carnivore
## 6968          2.86789890        2.387053327 Secondary Carnivore
## 6969          3.15700042        2.387053327 Secondary Carnivore
## 6970          1.09192330        0.211247175 Secondary Carnivore
## 6971          1.82454929        0.063185562 Secondary Carnivore
## 6972          1.02961942        2.894695819   Primary Carnivore
## 6973          4.59208495        2.387053327 Secondary Carnivore
## 6974          3.91657264        4.232513096   Primary Carnivore
## 6975          1.76644166        4.047182371 Secondary Carnivore
## 6976          2.74071098        3.873611973 Secondary Carnivore
## 6977          0.99325177        0.878396534   Primary Carnivore
## 6978          3.26956894        2.894695819   Primary Carnivore
## 6979          3.01944880        2.853935439 Secondary Carnivore
## 6980          7.72832775        6.670778349 Secondary Carnivore
## 6981          1.12167756        0.015041422   Primary Carnivore
## 6982          1.08180517        0.211247175 Secondary Carnivore
## 6983          0.83290912        0.470853119  Tertiary Carnivore
## 6984          4.12713439        0.004578480  Tertiary Carnivore
## 6985          0.00000000        1.126655451   Primary Carnivore
## 6986          3.58629287        6.670778349   Primary Carnivore
## 6987          0.01064316        0.305596011  Tertiary Carnivore
## 6988          1.38629436        0.020024930  Tertiary Carnivore
## 6989          1.24126859        0.561550440 Secondary Carnivore
## 6990          5.48188814        6.670778349 Secondary Carnivore
## 6991          7.34018684        6.942696930  Tertiary Carnivore
## 6992          1.32972401        0.015041422  Tertiary Carnivore
## 6993          6.06092531        2.610718759 Secondary Carnivore
## 6994          7.88615659        6.670778349 Secondary Carnivore
## 6995          4.25844557        0.002059853 Secondary Carnivore
## 6996          8.12346889        7.288251436 Secondary Carnivore
## 6997          1.14740245        0.015041422 Secondary Carnivore
## 6998          6.83936937        6.849625561 Secondary Carnivore
## 6999          6.41345896        4.094232049 Secondary Carnivore
## 7000          3.92395158        2.277308093   Primary Carnivore
## 7001          3.54673969        6.670778349 Secondary Carnivore
## 7002          3.56953270        2.387053327 Secondary Carnivore
## 7003          0.00000000        0.130455954 Secondary Carnivore
## 7004          4.41642806        6.670778349 Secondary Carnivore
## 7005          3.21112587        3.651616415 Secondary Carnivore
## 7006          3.01553490        0.015041422  Tertiary Carnivore
## 7007          4.29959566        2.153233085   Primary Carnivore
## 7008          4.83628191        6.849625561 Secondary Carnivore
## 7009          4.24769492        3.873611973 Secondary Carnivore
## 7010          3.91921707        1.506685742 Secondary Carnivore
## 7011          0.26236426        2.024989105   Primary Carnivore
## 7012          1.40609699        0.305596011  Tertiary Carnivore
## 7013          0.00000000        1.459857720   Primary Carnivore
## 7014          5.14166356        7.288251436  Tertiary Carnivore
## 7015          3.28057281        2.433189939 Secondary Carnivore
## 7016          4.45781801        7.288251436   Primary Carnivore
## 7017          4.27527626        6.670778349   Primary Carnivore
## 7018          7.52736356        7.288251436 Secondary Carnivore
## 7019          4.23555473        4.094232049 Secondary Carnivore
## 7020          0.02078254        1.180964506 Secondary Carnivore
## 7021          0.85441533        2.153233085           Herbivore
## 7022          0.00000000        0.130455954 Secondary Carnivore
## 7023          1.99877364        0.015041422  Tertiary Carnivore
## 7024          0.00000000        3.146907198   Primary Carnivore
## 7025          7.95384545        6.849625561 Secondary Carnivore
## 7026          2.64617480        0.305596011  Tertiary Carnivore
## 7027          3.12236492        3.038160131 Secondary Carnivore
## 7028          0.00000000        0.340191127   Primary Carnivore
## 7029          4.41558229        3.943759073 Secondary Carnivore
## 7030          3.70179568        0.735932630   Primary Carnivore
## 7031          4.56017282        3.146907198 Secondary Carnivore
## 7032          2.13416644        1.742111989 Secondary Carnivore
## 7033          6.77445243        6.670778349 Secondary Carnivore
## 7034          2.54160199        2.050338578   Primary Carnivore
## 7035          2.08815348        0.009889753           Herbivore
## 7036          2.89668512        2.136925014 Secondary Carnivore
## 7037          2.10413415        1.886232978 Secondary Carnivore
## 7038          4.71573613        3.304296954 Secondary Carnivore
## 7039          7.34665516        7.288251436 Secondary Carnivore
## 7040          5.22810947        1.168798094   Primary Carnivore
## 7041          2.21920348        0.223982763 Secondary Carnivore
## 7042          2.79116511        1.886232978   Primary Carnivore
## 7043          2.56240767        2.075946520   Primary Carnivore
## 7044          2.84490938        3.473231162  Tertiary Carnivore
## 7045          1.52388002        1.532760019 Secondary Carnivore
## 7046          3.63663834        3.651616415   Primary Carnivore
## 7047          2.36368019        0.015041422   Primary Carnivore
## 7048          3.92789635        6.849625561   Primary Carnivore
## 7049          2.91695959        2.433189939 Secondary Carnivore
## 7050          6.52590904        6.670778349 Secondary Carnivore
## 7051          2.45958884        0.015041422   Primary Carnivore
## 7052          2.59525471        3.473231162 Secondary Carnivore
## 7053          7.61386804        6.670778349 Secondary Carnivore
## 7054          2.27212589        1.532760019   Primary Carnivore
## 7055          3.68637632        2.153233085 Secondary Carnivore
## 7056          0.00000000        0.211247175 Secondary Carnivore
## 7057          3.33932198        2.404044412 Secondary Carnivore
## 7058          1.90389697        0.211247175 Secondary Carnivore
## 7059          3.25424297        3.515099295 Secondary Carnivore
## 7060          2.98568194        4.121930401   Primary Carnivore
## 7061          2.82137889        2.153233085 Secondary Carnivore
## 7062          3.15700042        1.168798094 Secondary Carnivore
## 7063          5.61312811        6.849625561   Primary Carnivore
## 7064          3.23080440        2.241290896   Primary Carnivore
## 7065          2.05412373        0.856029167 Secondary Carnivore
## 7066          2.47653840        0.885298676  Tertiary Carnivore
## 7067          3.24259235        0.749689812   Primary Carnivore
## 7068          3.23867845        3.146907198 Secondary Carnivore
## 7069          2.27829240        2.387053327  Tertiary Carnivore
## 7070          5.44570235        1.168798094   Primary Carnivore
## 7071          5.77455155        6.942696930  Tertiary Carnivore
## 7072          4.57367952        4.094232049 Secondary Carnivore
## 7073          6.28897318        6.670778349 Secondary Carnivore
## 7074          4.86375810        1.673740129   Primary Carnivore
## 7075          2.81367068        2.891851822  Tertiary Carnivore
## 7076          0.00000000        0.002344505 Secondary Carnivore
## 7077          1.20297230        0.015041422   Primary Carnivore
## 7078          2.83749827        2.853935439 Secondary Carnivore
## 7079          7.05142263        6.670778349 Secondary Carnivore
## 7080          3.25037449        0.020024930   Primary Carnivore
## 7081          1.00063188        1.711701702 Secondary Carnivore
## 7082          7.78130551        6.670778349 Secondary Carnivore
## 7083          7.82043952        7.288251436 Secondary Carnivore
## 7084          8.06495089        4.094232049 Secondary Carnivore
## 7085          0.79750720        0.413477448 Secondary Carnivore
## 7086          0.00000000        1.673740129           Herbivore
## 7087          4.51085951        7.288251436 Secondary Carnivore
## 7088          2.25023861        0.214753881 Secondary Carnivore
## 7089          2.82137889        0.009889753   Primary Carnivore
## 7090          8.50329709        7.288251436 Secondary Carnivore
## 7091          4.58598737        4.094232049 Secondary Carnivore
## 7092          3.79098468        1.168798094 Secondary Carnivore
## 7093          0.00000000        0.015041422   Primary Carnivore
## 7094          2.54944517        0.015041422  Tertiary Carnivore
## 7095          5.52146092        6.942696930 Secondary Carnivore
## 7096          2.94443898        2.894695819   Primary Carnivore
## 7097          1.62136648        1.180964506  Tertiary Carnivore
## 7098          3.72810017        1.673740129 Secondary Carnivore
## 7099          3.66612247        6.849625561 Secondary Carnivore
## 7100          0.83290912        0.147199990  Tertiary Carnivore
## 7101          1.66203036        0.009889753  Tertiary Carnivore
## 7102          4.30000280        6.849625561 Secondary Carnivore
## 7103          1.69009582        0.015041422 Secondary Carnivore
## 7104          3.88362353        6.849625561   Primary Carnivore
## 7105          2.54944517        0.044241443   Primary Carnivore
## 7106          0.63180355        4.047182371   Primary Carnivore
## 7107          3.87120101        1.673740129 Secondary Carnivore
## 7108          3.59731226        2.153233085 Secondary Carnivore
## 7109          4.66343909        6.849625561 Secondary Carnivore
## 7110          5.57215403        4.259772081   Primary Carnivore
## 7111          1.27256560        0.823328714 Secondary Carnivore
## 7112          0.82855182        1.877421323 Secondary Carnivore
## 7113          6.11146734        7.288251436   Primary Carnivore
## 7114          0.00000000        0.116104790 Secondary Carnivore
## 7115          4.98360662        4.094232049   Primary Carnivore
## 7116          4.46579317        3.473231162   Primary Carnivore
## 7117          5.35185813        7.288251436  Tertiary Carnivore
## 7118          1.99741771        0.490146528  Tertiary Carnivore
## 7119          3.81683282        2.153233085 Secondary Carnivore
## 7120          0.30748470        0.211247175  Tertiary Carnivore
## 7121          6.27795841        6.670778349 Secondary Carnivore
## 7122          1.22671229        0.305596011  Tertiary Carnivore
## 7123          0.69314718        0.470853119  Tertiary Carnivore
## 7124          2.91158951        1.962719022 Secondary Carnivore
## 7125          3.93573953        1.168798094 Secondary Carnivore
## 7126          2.77819796        0.015041422   Primary Carnivore
## 7127          4.29728541        4.094232049 Secondary Carnivore
## 7128          0.00000000        0.009889753  Tertiary Carnivore
## 7129          7.22875123        6.670778349 Secondary Carnivore
## 7130          5.55902642        1.168798094   Primary Carnivore
## 7131          7.02028007        6.670778349 Secondary Carnivore
## 7132          2.37861978        2.387053327 Secondary Carnivore
## 7133          4.48863637        6.670778349 Secondary Carnivore
## 7134          0.78845736        0.130455954 Secondary Carnivore
## 7135          0.40546511        2.894695819   Primary Carnivore
## 7136          7.34665516        7.288251436 Secondary Carnivore
## 7137          0.00000000        1.459857720   Primary Carnivore
## 7138          0.00000000        0.002344505 Secondary Carnivore
## 7139          4.92308559        7.288251436 Secondary Carnivore
## 7140          3.36729583        1.168798094 Secondary Carnivore
## 7141          1.78170913        0.856029167   Primary Carnivore
## 7142          6.08904488        7.288251436 Secondary Carnivore
## 7143          2.16676537        0.015041422  Tertiary Carnivore
## 7144          3.75560309        6.942696930 Secondary Carnivore
## 7145          0.83290912        4.262479896 Secondary Carnivore
## 7146          1.05779029        2.122440181 Secondary Carnivore
## 7147          4.51085951        7.288251436 Secondary Carnivore
## 7148          1.93152141        0.490146528 Secondary Carnivore
## 7149          2.03339760        1.742111989 Secondary Carnivore
## 7150          3.68135119        2.387053327 Secondary Carnivore
## 7151          2.56510319        2.254856321   Primary Carnivore
## 7152          5.64897424        4.259772081 Secondary Carnivore
## 7153          3.51868408        1.886232978 Secondary Carnivore
## 7154          2.54944517        0.281204828 Secondary Carnivore
## 7155          5.89715387        6.942696930  Tertiary Carnivore
## 7156          2.61739583        1.742111989 Secondary Carnivore
## 7157          2.24191003        6.670778349 Secondary Carnivore
## 7158          7.47363711        7.288251436 Secondary Carnivore
## 7159          1.96571278        0.856029167 Secondary Carnivore
## 7160          0.40546511        0.063185562 Secondary Carnivore
## 7161          6.19031541        6.942696930  Tertiary Carnivore
## 7162          2.28033948        1.532760019   Primary Carnivore
## 7163          2.13947776        4.047182371 Secondary Carnivore
## 7164          3.49650756        3.146907198 Secondary Carnivore
## 7165          0.53062825        0.130455954  Tertiary Carnivore
## 7166          3.95316495        6.670778349 Secondary Carnivore
## 7167          3.73050113        6.670778349 Secondary Carnivore
## 7168          3.05870707        3.038160131 Secondary Carnivore
## 7169          8.44080878        6.849625561 Secondary Carnivore
## 7170          2.32630162        2.845177164 Secondary Carnivore
## 7171          1.48160454        0.130455954 Secondary Carnivore
## 7172          3.57234564        3.168005566 Secondary Carnivore
## 7173          6.59441346        7.288251436  Tertiary Carnivore
## 7174          4.60616969        4.259772081  Tertiary Carnivore
## 7175          1.54756251        0.015041422 Secondary Carnivore
## 7176          4.22537282        1.168798094 Secondary Carnivore
## 7177          0.00000000        0.470853119  Tertiary Carnivore
## 7178          2.98061864        2.387053327 Secondary Carnivore
## 7179          3.76352300        1.168798094 Secondary Carnivore
## 7180          3.19179236        1.540263127 Secondary Carnivore
## 7181          4.01096295        6.670778349 Secondary Carnivore
## 7182          5.11198779        4.094232049  Tertiary Carnivore
## 7183          1.16315081        1.126655451   Primary Carnivore
## 7184          1.19392247        0.211247175 Secondary Carnivore
## 7185          7.39079852        7.288251436 Secondary Carnivore
## 7186          4.66861436        2.153233085 Secondary Carnivore
## 7187          1.54756251        0.009889753  Tertiary Carnivore
## 7188          6.06610809        7.288251436  Tertiary Carnivore
## 7189          4.04480412        6.942696930  Tertiary Carnivore
## 7190          4.98561830        3.304296954   Primary Carnivore
## 7191          6.77502357        6.849625561 Secondary Carnivore
## 7192          4.62497281        3.168005566 Secondary Carnivore
## 7193          2.58021683        1.532760019   Primary Carnivore
## 7194          4.98360662        4.094232049   Primary Carnivore
## 7195          2.63905733        2.153233085 Secondary Carnivore
## 7196          5.22035583        3.146907198 Secondary Carnivore
## 7197          7.13297667        6.670778349 Secondary Carnivore
## 7198          2.58776404        0.757060688 Secondary Carnivore
## 7199          2.11709853        3.515099295 Secondary Carnivore
## 7200          2.36837283        0.735932630 Secondary Carnivore
## 7201          4.18813844        6.849625561  Tertiary Carnivore
## 7202          0.00000000        0.004578480 Secondary Carnivore
## 7203          3.41444261        1.742111989 Secondary Carnivore
## 7204          5.13603370        1.673740129 Secondary Carnivore
## 7205          1.80664808        0.116104790 Secondary Carnivore
## 7206          3.39114705        1.670180746 Secondary Carnivore
## 7207          1.30019166        2.845177164 Secondary Carnivore
## 7208          3.13113691        4.259772081 Secondary Carnivore
## 7209          2.64326276        0.490146528 Secondary Carnivore
## 7210          0.00000000        0.015041422 Secondary Carnivore
## 7211          4.08260931        6.670778349 Secondary Carnivore
## 7212          5.02388052        6.942696930 Secondary Carnivore
## 7213          1.04027671        0.885298676 Secondary Carnivore
## 7214          3.94931879        7.161415474 Secondary Carnivore
## 7215          0.00000000        0.002059853 Secondary Carnivore
## 7216          2.14943391        0.735932630 Secondary Carnivore
## 7217          7.29369772        7.288251436 Secondary Carnivore
## 7218          1.53686722        0.015041422  Tertiary Carnivore
## 7219          0.00000000        0.147199990 Secondary Carnivore
## 7220          2.11142459        0.900183757 Secondary Carnivore
## 7221          1.82454929        0.490146528  Tertiary Carnivore
## 7222          0.83290912        1.831515834 Secondary Carnivore
## 7223          4.75780543        4.094232049 Secondary Carnivore
## 7224          2.74084002        1.886232978 Secondary Carnivore
## 7225          6.03954017        1.886232978 Secondary Carnivore
## 7226          0.17395331        1.532760019  Tertiary Carnivore
## 7227          3.28091122        3.146907198 Secondary Carnivore
## 7228          5.35185813        7.288251436  Tertiary Carnivore
## 7229          0.00000000        2.404044412           Herbivore
## 7230          1.19392247        0.147199990 Secondary Carnivore
## 7231          4.44968528        1.168798094  Tertiary Carnivore
## 7232          4.82807371        1.673740129   Primary Carnivore
## 7233          0.00000000        1.877421323 Secondary Carnivore
## 7234          7.68303529        6.849625561 Secondary Carnivore
## 7235          1.85207032        0.211247175 Secondary Carnivore
## 7236          0.19885086        0.305596011 Secondary Carnivore
## 7237          1.65822808        0.885298676  Tertiary Carnivore
## 7238          1.84292776        1.962719022 Secondary Carnivore
## 7239          2.58021683        2.136925014 Secondary Carnivore
## 7240          5.77299754        1.886232978   Primary Carnivore
## 7241          4.45771372        1.886232978   Primary Carnivore
## 7242          2.77102500        1.962719022  Tertiary Carnivore
## 7243          3.94352167        3.146907198  Tertiary Carnivore
## 7244          2.95491028        2.472143654   Primary Carnivore
## 7245          7.98214318        6.849625561 Secondary Carnivore
## 7246          4.79892612        2.387053327   Primary Carnivore
## 7247          0.92821930        6.942696930           Herbivore
## 7248          7.83494639        6.670778349 Secondary Carnivore
## 7249          7.03341830        6.670778349 Secondary Carnivore
## 7250          1.32175584        2.254856321 Secondary Carnivore
## 7251          6.78649119        6.670778349  Tertiary Carnivore
## 7252          0.00000000        1.670180746   Primary Carnivore
## 7253          0.00000000        2.404044412           Herbivore
## 7254          5.90511659        1.886232978   Primary Carnivore
## 7255          4.61485315        1.432814265 Secondary Carnivore
## 7256          4.22753423        1.506685742   Primary Carnivore
## 7257          7.39184671        7.288251436 Secondary Carnivore
## 7258          1.28923265        0.856029167 Secondary Carnivore
## 7259          1.51292701        0.015041422 Secondary Carnivore
## 7260          0.97455964        0.305596011  Tertiary Carnivore
## 7261          7.97968130        7.288251436 Secondary Carnivore
## 7262          1.18784342        0.561550440 Secondary Carnivore
## 7263          4.06355884        2.138914945 Secondary Carnivore
## 7264          3.19043520        2.610718759 Secondary Carnivore
## 7265          1.76985463        0.015041422  Tertiary Carnivore
## 7266          5.38587026        0.004578480  Tertiary Carnivore
## 7267          1.32441896        4.047182371 Secondary Carnivore
## 7268          0.83290912        5.169038067   Primary Carnivore
## 7269          2.56617937        1.962719022 Secondary Carnivore
## 7270          2.17815501        2.845177164 Secondary Carnivore
## 7271          4.96284463        6.670778349  Tertiary Carnivore
## 7272          2.16217294        0.009889753   Primary Carnivore
## 7273          0.90421815        0.305596011  Tertiary Carnivore
## 7274          0.00000000        1.886232978           Herbivore
## 7275          1.34547237        0.856029167 Secondary Carnivore
## 7276          0.00000000        0.004578480  Tertiary Carnivore
## 7277          3.57660621        1.432814265  Tertiary Carnivore
## 7278          0.43048287        0.856029167  Tertiary Carnivore
## 7279          7.98132323        6.670778349 Secondary Carnivore
## 7280          3.66867675        0.749689812   Primary Carnivore
## 7281          1.19392247        1.532760019  Tertiary Carnivore
## 7282          4.18801704        3.651616415   Primary Carnivore
## 7283          1.44926916        1.251683108 Secondary Carnivore
## 7284          4.50534985        4.094232049  Tertiary Carnivore
## 7285          2.44633906        0.470853119 Secondary Carnivore
## 7286          4.34510328        6.670778349 Secondary Carnivore
## 7287          4.84418709        3.146907198 Secondary Carnivore
## 7288          1.49962305        0.561550440 Secondary Carnivore
## 7289          6.67997600        6.670778349 Secondary Carnivore
## 7290          2.11384297        0.009889753 Secondary Carnivore
## 7291          3.50453585        3.873611973  Tertiary Carnivore
## 7292          8.49631679        6.849625561 Secondary Carnivore
## 7293          5.86646806        2.153233085  Tertiary Carnivore
## 7294          0.37156356        0.130455954 Secondary Carnivore
## 7295          0.00000000        1.981883583   Primary Carnivore
## 7296          4.31348009        4.259772081 Secondary Carnivore
## 7297          2.82137889        1.168798094 Secondary Carnivore
## 7298          2.65324196        0.002344505 Secondary Carnivore
## 7299          3.85014760        6.849625561 Secondary Carnivore
## 7300          3.86157146        0.015041422 Secondary Carnivore
## 7301          3.26575941        2.387053327 Secondary Carnivore
## 7302          4.62497281        4.259772081 Secondary Carnivore
## 7303          2.94443898        0.004578480  Tertiary Carnivore
## 7304          4.39444915        7.288251436 Secondary Carnivore
## 7305          0.99325177        0.130455954  Tertiary Carnivore
## 7306          4.00369019        1.307030142 Secondary Carnivore
## 7307          0.53999600        0.413477448  Tertiary Carnivore
## 7308          0.26236426        1.920179330   Primary Carnivore
## 7309          3.30310667        1.506685742 Secondary Carnivore
## 7310          0.00000000        0.130455954 Secondary Carnivore
## 7311          4.21331208        1.886232978 Secondary Carnivore
## 7312          5.75574221        1.168798094 Secondary Carnivore
## 7313          1.56024767        0.009889753   Primary Carnivore
## 7314          2.02683159        0.885298676  Tertiary Carnivore
## 7315          4.75531284        3.943759073 Secondary Carnivore
## 7316          4.99767163        4.232513096 Secondary Carnivore
## 7317          2.22354189        0.015041422 Secondary Carnivore
## 7318          3.26575941        5.169038067   Primary Carnivore
## 7319          1.71918878        0.856029167   Primary Carnivore
## 7320          1.13462273        2.136925014 Secondary Carnivore
## 7321          0.58778666        0.147199990 Secondary Carnivore
## 7322          1.84150156        1.711701702  Tertiary Carnivore
## 7323          2.97041447        2.387053327 Secondary Carnivore
## 7324          0.00000000        0.002344505 Secondary Carnivore
## 7325          0.00000000        2.404044412           Herbivore
## 7326          2.77258872        0.116104790 Secondary Carnivore
## 7327          1.85629799        0.490146528  Tertiary Carnivore
## 7328          4.59410924        3.168005566 Secondary Carnivore
## 7329          5.56452041        7.288251436  Tertiary Carnivore
## 7330          8.05360097        6.670778349 Secondary Carnivore
## 7331          3.24649099        1.307030142 Secondary Carnivore
## 7332          1.70292826        0.015041422 Secondary Carnivore
## 7333          3.88752537        0.749689812   Primary Carnivore
## 7334          0.00000000        0.015041422  Tertiary Carnivore
## 7335          5.18178355        6.849625561 Secondary Carnivore
## 7336          2.40865536        1.540263127 Secondary Carnivore
## 7337          2.90690106        3.515099295 Secondary Carnivore
## 7338          2.61739583        0.757060688  Tertiary Carnivore
## 7339          2.52572864        0.735932630 Secondary Carnivore
## 7340          3.36037539        2.891851822  Tertiary Carnivore
## 7341          3.35340672        5.169038067   Primary Carnivore
## 7342          0.00000000        1.886232978           Herbivore
## 7343          1.98787435        2.241290896   Primary Carnivore
## 7344          2.68852753        3.226603994 Secondary Carnivore
## 7345          2.58776404        2.136925014 Secondary Carnivore
## 7346          1.35325451        2.404044412 Secondary Carnivore
## 7347          4.70953020        7.288251436 Secondary Carnivore
## 7348          7.35212054        6.849625561 Secondary Carnivore
## 7349          2.56494936        1.315195554 Secondary Carnivore
## 7350          5.81889528        6.849625561 Secondary Carnivore
## 7351          1.79275897        0.116104790 Secondary Carnivore
## 7352          1.62924054        0.147199990 Secondary Carnivore
## 7353          7.75022723        6.670778349 Secondary Carnivore
## 7354          3.79773386        4.094232049 Secondary Carnivore
## 7355          0.95551145        0.490146528  Tertiary Carnivore
## 7356          1.53255687        2.075946520 Secondary Carnivore
## 7357          5.14813381        1.886232978   Primary Carnivore
## 7358          0.00000000        1.886232978           Herbivore
## 7359          0.33647224        2.894695819   Primary Carnivore
## 7360          3.28578653        0.015041422 Secondary Carnivore
## 7361          2.29253476        1.315195554   Primary Carnivore
## 7362          7.29715875        6.849625561 Secondary Carnivore
## 7363          0.26236426        2.024989105   Primary Carnivore
## 7364          0.68813464        1.251683108 Secondary Carnivore
## 7365          1.02961942        0.470853119  Tertiary Carnivore
## 7366          1.26976054        1.180964506 Secondary Carnivore
## 7367          4.04305127        6.670778349  Tertiary Carnivore
## 7368          3.96840334        2.050338578   Primary Carnivore
## 7369          5.72227706        6.849625561 Secondary Carnivore
## 7370          4.79579055        7.288251436 Secondary Carnivore
## 7371          7.40482675        6.670778349 Secondary Carnivore
## 7372          0.78845736        7.161415474   Primary Carnivore
## 7373          5.57215403        4.259772081   Primary Carnivore
## 7374          3.51452607        1.886232978 Secondary Carnivore
## 7375          1.87640694        0.885298676  Tertiary Carnivore
## 7376          2.63905733        0.002059853 Secondary Carnivore
## 7377          0.00000000        2.894695819   Primary Carnivore
## 7378          3.40452517        1.886232978 Secondary Carnivore
## 7379          0.00000000        0.002059853 Secondary Carnivore
## 7380          2.24918432        0.009889753   Primary Carnivore
## 7381          1.66392610        0.211247175 Secondary Carnivore
## 7382          0.06765865        0.305596011 Secondary Carnivore
## 7383          2.27212589        1.670180746 Secondary Carnivore
## 7384          2.77881927        0.885298676  Tertiary Carnivore
## 7385          6.58340922        4.259772081  Tertiary Carnivore
## 7386          0.00000000        1.670180746   Primary Carnivore
## 7387          1.45161383        1.532760019 Secondary Carnivore
## 7388          1.99333884        1.307030142 Secondary Carnivore
## 7389          0.00000000        0.002059853 Secondary Carnivore
## 7390          2.04122033        0.063185562 Secondary Carnivore
## 7391          2.23537634        0.015041422 Secondary Carnivore
## 7392          2.58021683        2.891851822 Secondary Carnivore
## 7393          4.25134831        1.168798094 Secondary Carnivore
## 7394          0.00000000        2.404044412           Herbivore
## 7395          1.47476301        0.900183757 Secondary Carnivore
## 7396          6.77490937        6.849625561 Secondary Carnivore
## 7397          3.42816383        0.015041422   Primary Carnivore
## 7398          1.61541998        0.009889753  Tertiary Carnivore
## 7399          6.90505163        6.849625561 Secondary Carnivore
## 7400          1.66770682        0.002344505 Secondary Carnivore
## 7401          3.03013370        3.146907198 Secondary Carnivore
## 7402          1.81156210        0.211247175 Secondary Carnivore
## 7403          1.01884732        0.223982763 Secondary Carnivore
## 7404          1.51072194        0.015041422  Tertiary Carnivore
## 7405          5.68357977        4.094232049  Tertiary Carnivore
## 7406          4.79579055        7.288251436 Secondary Carnivore
## 7407          1.19996478        0.015041422  Tertiary Carnivore
## 7408          7.45066080        7.288251436 Secondary Carnivore
## 7409          2.47863704        1.711701702   Primary Carnivore
## 7410          1.31640823        0.214753881 Secondary Carnivore
## 7411          6.08677473        4.094232049 Secondary Carnivore
## 7412          3.51443678        2.610718759 Secondary Carnivore
## 7413          2.92316158        3.473231162 Secondary Carnivore
## 7414          1.77495235        0.002344505 Secondary Carnivore
## 7415          0.00000000        1.877421323 Secondary Carnivore
## 7416          2.32727771        0.009889753           Herbivore
## 7417          1.43983513        0.305596011  Tertiary Carnivore
## 7418          5.21553341        0.735932630   Primary Carnivore
## 7419          4.19166787        2.433189939 Secondary Carnivore
## 7420          1.47796155        1.711701702  Tertiary Carnivore
## 7421          2.28238239        1.315195554 Secondary Carnivore
## 7422          2.55722731        1.315195554 Secondary Carnivore
## 7423          3.16665579        0.470853119 Secondary Carnivore
## 7424          0.00000000        0.002344505  Tertiary Carnivore
## 7425          2.79116511        0.009889753           Herbivore
## 7426          1.75958057        4.262479896 Secondary Carnivore
## 7427          1.29746315        0.413477448 Secondary Carnivore
## 7428          2.85647021        1.886232978 Secondary Carnivore
## 7429          2.85070650        0.063185562 Secondary Carnivore
## 7430          5.18505908        1.432814265 Secondary Carnivore
## 7431          1.20297230        1.831515834  Tertiary Carnivore
## 7432          3.26956894        1.886232978 Secondary Carnivore
## 7433          3.80443779        6.670778349   Primary Carnivore
## 7434          5.01727984        7.288251436  Tertiary Carnivore
## 7435          3.85227300        6.670778349 Secondary Carnivore
## 7436          3.27222700        0.735932630   Primary Carnivore
## 7437          1.08180517        0.116104790 Secondary Carnivore
## 7438          1.89611948        0.885298676 Secondary Carnivore
## 7439          1.66770682        0.490146528 Secondary Carnivore
## 7440          4.27495632        4.232513096  Tertiary Carnivore
## 7441          5.77827133        6.670778349  Tertiary Carnivore
## 7442          0.00000000        1.673740129           Herbivore
## 7443          1.48387469        0.885298676 Secondary Carnivore
## 7444          3.55820113        2.153233085           Herbivore
## 7445          0.78845736        2.145288428 Secondary Carnivore
## 7446          2.00417906        0.211247175 Secondary Carnivore
## 7447          8.42299240        6.849625561 Secondary Carnivore
## 7448          6.01859321        7.288251436  Tertiary Carnivore
## 7449          0.00000000        0.002059853 Secondary Carnivore
## 7450          1.95727391        0.004578480   Primary Carnivore
## 7451          1.62924054        0.223982763 Secondary Carnivore
## 7452          1.04027671        1.454402431 Secondary Carnivore
## 7453          5.44241771        2.153233085 Secondary Carnivore
## 7454          3.06339092        3.943759073 Secondary Carnivore
## 7455          2.53369681        1.981883583   Primary Carnivore
## 7456          4.09434456        7.288251436 Secondary Carnivore
## 7457          3.28776736        2.433189939  Tertiary Carnivore
## 7458          5.30330491        7.288251436 Secondary Carnivore
## 7459          0.00000000        0.009889753 Secondary Carnivore
## 7460          5.28826703        2.153233085  Tertiary Carnivore
## 7461          0.95551145        0.211247175 Secondary Carnivore
## 7462          1.67335124        0.735932630 Secondary Carnivore
## 7463          2.70136121        3.515099295 Secondary Carnivore
## 7464          1.18172720        2.387053327 Secondary Carnivore
## 7465          2.41126011        1.014024833 Secondary Carnivore
## 7466          2.32238772        0.223982763 Secondary Carnivore
## 7467          7.51261754        6.942696930 Secondary Carnivore
## 7468          0.00000000        0.009889753 Secondary Carnivore
## 7469          2.63905733        0.002059853 Secondary Carnivore
## 7470          0.91629073        0.063185562 Secondary Carnivore
## 7471          3.02456266        2.254856321 Secondary Carnivore
## 7472          1.41098697        0.147199990 Secondary Carnivore
## 7473          3.78940329        0.214753881  Tertiary Carnivore
## 7474          0.83290912        0.130455954 Secondary Carnivore
## 7475          7.62525355        6.849625561 Secondary Carnivore
## 7476          3.34990409        2.387053327   Primary Carnivore
## 7477          4.61512052        7.288251436  Tertiary Carnivore
## 7478          3.55010577        1.540263127 Secondary Carnivore
## 7479          1.24990174        2.241290896   Primary Carnivore
## 7480          7.22329568        7.288251436 Secondary Carnivore
## 7481          4.71849887        3.146907198 Secondary Carnivore
## 7482          3.92296295        2.138914945 Secondary Carnivore
## 7483          3.28091122        1.168798094   Primary Carnivore
## 7484          2.38139627        2.136925014 Secondary Carnivore
## 7485          1.34547237        0.885298676 Secondary Carnivore
## 7486          2.23697934        0.490146528   Primary Carnivore
## 7487          2.91463067        2.136925014 Secondary Carnivore
## 7488          4.30217141        0.002059853 Secondary Carnivore
## 7489          1.13140211        0.470853119  Tertiary Carnivore
## 7490          3.38113072        1.632888289 Secondary Carnivore
## 7491          1.53901545        2.853935439 Secondary Carnivore
## 7492          2.98061864        0.885298676  Tertiary Carnivore
## 7493          1.95868534        0.211247175 Secondary Carnivore
## 7494          1.68639895        7.161415474 Secondary Carnivore
## 7495          3.09557761        0.009889753   Primary Carnivore
## 7496          2.63991411        2.254856321   Primary Carnivore
## 7497          0.00000000        0.305596011 Secondary Carnivore
## 7498          3.36037539        1.168798094 Secondary Carnivore
## 7499          1.59533899        0.413477448 Secondary Carnivore
## 7500          3.56133013        1.886232978 Secondary Carnivore
## 7501          4.65396035        1.168798094 Secondary Carnivore
## 7502          0.00000000        1.459857720   Primary Carnivore
## 7503          7.34968088        6.849625561 Secondary Carnivore
## 7504          4.68213123        6.670778349  Tertiary Carnivore
## 7505          1.31908561        0.004578480   Primary Carnivore
## 7506          8.85237889        7.288251436 Secondary Carnivore
## 7507          0.93216408        4.094232049           Herbivore
## 7508          4.86753445        2.153233085 Secondary Carnivore
## 7509          0.00000000        0.281204828 Secondary Carnivore
## 7510          2.12823171        0.211247175 Secondary Carnivore
## 7511          5.67194775        1.886232978 Secondary Carnivore
## 7512          0.82417544        1.831515834   Primary Carnivore
## 7513          0.63657683        4.259772081           Herbivore
## 7514          6.61069604        6.942696930 Secondary Carnivore
## 7515          3.42426265        3.651616415  Tertiary Carnivore
## 7516          3.73440238        3.943759073 Secondary Carnivore
## 7517          3.66612247        0.749689812   Primary Carnivore
## 7518          2.08193842        0.004578480  Tertiary Carnivore
## 7519          0.00000000        2.145288428 Secondary Carnivore
## 7520          3.77045944        2.050338578   Primary Carnivore
## 7521          8.52734152        7.288251436 Secondary Carnivore
## 7522          3.71571611        2.433189939 Secondary Carnivore
## 7523          3.06339092        0.735932630 Secondary Carnivore
## 7524          2.61520365        3.226603994  Tertiary Carnivore
## 7525          7.20630310        6.849625561 Secondary Carnivore
## 7526          2.83321334        3.146907198 Secondary Carnivore
## 7527          2.80940270        1.420705940 Secondary Carnivore
## 7528          6.99062476        7.288251436 Secondary Carnivore
## 7529          4.47847253        1.168798094 Secondary Carnivore
## 7530          1.68639895        0.116104790 Secondary Carnivore
## 7531          0.00000000        0.009889753           Herbivore
## 7532          2.50470928        1.432814265 Secondary Carnivore
## 7533          6.66134310        6.670778349 Secondary Carnivore
## 7534          0.87546874        0.063185562 Secondary Carnivore
## 7535          3.20453346        2.610718759  Tertiary Carnivore
## 7536          1.08518927        1.180964506  Tertiary Carnivore
## 7537          3.00071982        0.214753881  Tertiary Carnivore
## 7538          2.00552586        1.307030142 Secondary Carnivore
## 7539          1.46325540        4.094232049           Herbivore
## 7540          4.53689135        1.673740129 Secondary Carnivore
## 7541          5.25227343        7.288251436   Primary Carnivore
## 7542          3.03013370        1.670180746   Primary Carnivore
## 7543          5.25017699        3.473231162   Primary Carnivore
## 7544          3.88567903        2.387053327 Secondary Carnivore
## 7545          3.89731538        0.735932630 Secondary Carnivore
## 7546          5.54126355        3.146907198 Secondary Carnivore
## 7547          4.77912349        4.094232049  Tertiary Carnivore
## 7548          1.70402055        0.211247175 Secondary Carnivore
## 7549          2.81540872        0.757060688 Secondary Carnivore
## 7550          7.84998662        6.670778349 Secondary Carnivore
## 7551          0.00000000        0.002344505  Tertiary Carnivore
## 7552          3.94158181        3.168005566 Secondary Carnivore
## 7553          1.73342389        0.015041422 Secondary Carnivore
## 7554          3.49347266        1.168798094 Secondary Carnivore
## 7555          0.26236426        2.107009466   Primary Carnivore
## 7556          0.00000000        2.107009466   Primary Carnivore
## 7557          2.84490938        0.020024930  Tertiary Carnivore
## 7558          0.74193734        2.241290896   Primary Carnivore
## 7559          1.67335124        0.490146528 Secondary Carnivore
## 7560          4.02177387        2.153233085  Tertiary Carnivore
## 7561          4.50976000        6.670778349 Secondary Carnivore
## 7562          4.07414185        3.159561805   Primary Carnivore
## 7563          2.76744803        6.670778349 Secondary Carnivore
## 7564          2.96460274        3.038160131 Secondary Carnivore
## 7565          5.17868888        2.153233085 Secondary Carnivore
## 7566          1.55180880        0.009889753  Tertiary Carnivore
## 7567          1.38629436        0.063185562 Secondary Carnivore
## 7568          4.54648119        3.146907198 Secondary Carnivore
## 7569          2.37024374        0.490146528 Secondary Carnivore
## 7570          0.30748470        4.259772081           Herbivore
## 7571          2.01089500        0.214753881 Secondary Carnivore
## 7572          3.39450839        1.479154529   Primary Carnivore
## 7573          2.68784749        0.757060688   Primary Carnivore
## 7574          2.35801980        3.515099295 Secondary Carnivore
## 7575          3.76584050        0.009889753  Tertiary Carnivore
## 7576          0.81536481        1.251683108 Secondary Carnivore
## 7577          0.00000000        1.886232978           Herbivore
## 7578          1.28923265        0.004578480 Secondary Carnivore
## 7579          2.00512201        2.853935439   Primary Carnivore
## 7580          4.74449725        3.146907198 Secondary Carnivore
## 7581          4.03777421        6.670778349   Primary Carnivore
## 7582          4.71635371        1.168798094 Secondary Carnivore
## 7583          0.36394843        0.413477448  Tertiary Carnivore
## 7584          0.00000000        0.009889753           Herbivore
## 7585          4.94875989        7.288251436 Secondary Carnivore
## 7586          3.99636415        6.670778349 Secondary Carnivore
## 7587          1.15688120        0.004578480   Primary Carnivore
## 7588          3.51452607        1.168798094 Secondary Carnivore
## 7589          8.20305762        7.288251436 Secondary Carnivore
## 7590          0.81668960        1.705681497 Secondary Carnivore
## 7591          2.55567572        0.015041422   Primary Carnivore
## 7592          1.34547237        1.962719022 Secondary Carnivore
## 7593          2.37954613        0.004578480 Secondary Carnivore
## 7594          4.85203026        6.849625561  Tertiary Carnivore
## 7595          0.95165788        1.877421323 Secondary Carnivore
## 7596          4.74701691        0.002059853 Secondary Carnivore
## 7597          0.98954119        0.116104790 Secondary Carnivore
## 7598          7.58054668        6.670778349 Secondary Carnivore
## 7599          3.03013370        2.153233085 Secondary Carnivore
## 7600          6.27476202        7.288251436   Primary Carnivore
## 7601          4.55807858        6.670778349 Secondary Carnivore
## 7602          1.06594239        2.145288428 Secondary Carnivore
## 7603          2.39059597        1.886232978   Primary Carnivore
## 7604          5.50443683        6.942696930 Secondary Carnivore
## 7605          2.01623547        1.886232978   Primary Carnivore
## 7606          1.40609699        2.136925014 Secondary Carnivore
## 7607          0.00000000        2.404044412           Herbivore
## 7608          4.99043259        6.670778349 Secondary Carnivore
## 7609          3.44998755        1.886232978 Secondary Carnivore
## 7610          1.74221902        1.831515834 Secondary Carnivore
## 7611          0.83290912        1.315195554   Primary Carnivore
## 7612          2.67414865        1.168798094 Secondary Carnivore
## 7613          3.39785848        2.153233085 Secondary Carnivore
## 7614          3.76537743        1.886232978   Primary Carnivore
## 7615          0.53062825        2.472143654   Primary Carnivore
## 7616          3.68145194        1.014024833 Secondary Carnivore
## 7617          7.71020519        7.288251436 Secondary Carnivore
## 7618          2.18941639        1.532760019   Primary Carnivore
## 7619          1.82454929        3.226603994  Tertiary Carnivore
## 7620          1.79342475        4.047182371  Tertiary Carnivore
## 7621          6.29876541        6.849625561 Secondary Carnivore
## 7622          2.60172626        0.470853119  Tertiary Carnivore
## 7623          0.40879290        2.891851822 Secondary Carnivore
## 7624          0.00000000        0.009889753  Tertiary Carnivore
## 7625          2.70951579        1.540263127 Secondary Carnivore
## 7626          1.67147330        0.015041422   Primary Carnivore
## 7627          5.30330491        4.259772081 Secondary Carnivore
## 7628          3.64021428        1.070822001   Primary Carnivore
## 7629          1.89069942        2.075946520 Secondary Carnivore
## 7630          4.24849524        6.849625561 Secondary Carnivore
## 7631          3.97168717        4.232513096 Secondary Carnivore
## 7632          0.99694863        1.540263127   Primary Carnivore
## 7633          4.44851638        6.670778349 Secondary Carnivore
## 7634          0.00000000        0.015041422   Primary Carnivore
## 7635          2.62466859        0.004578480 Secondary Carnivore
## 7636          6.68511160        6.849625561 Secondary Carnivore
## 7637          5.30230939        6.670778349  Tertiary Carnivore
## 7638          4.50733683        2.387053327 Secondary Carnivore
## 7639          3.12236492        2.891851822 Secondary Carnivore
## 7640          6.72623340        6.942696930  Tertiary Carnivore
## 7641          1.04027671        0.116104790 Secondary Carnivore
## 7642          2.71469474        1.886232978 Secondary Carnivore
## 7643          1.30291275        0.490146528 Secondary Carnivore
## 7644          3.81771233        0.735932630 Secondary Carnivore
## 7645          2.84490938        4.259772081 Secondary Carnivore
## 7646          1.67147330        0.004578480   Primary Carnivore
## 7647          1.32441896        2.122440181 Secondary Carnivore
## 7648          1.66770682        0.490146528  Tertiary Carnivore
## 7649          1.69561561        0.009889753 Secondary Carnivore
## 7650          7.38634693        7.288251436 Secondary Carnivore
## 7651          1.45861502        0.223982763 Secondary Carnivore
## 7652          3.55820113        2.404044412 Secondary Carnivore
## 7653          3.95871573        3.473231162 Secondary Carnivore
## 7654          1.22377543        0.878396534   Primary Carnivore
## 7655          3.91800508        3.146907198  Tertiary Carnivore
## 7656          2.80336038        1.168798094 Secondary Carnivore
## 7657          1.79175947        0.878396534   Primary Carnivore
## 7658          1.75785792        0.223982763 Secondary Carnivore
## 7659          3.45568557        0.749689812   Primary Carnivore
## 7660          3.68250921        3.873611973 Secondary Carnivore
## 7661          1.42310833        1.454402431 Secondary Carnivore
## 7662          5.73979291        2.153233085   Primary Carnivore
## 7663          3.08190997        0.002059853 Secondary Carnivore
## 7664          3.23474917        1.886232978 Secondary Carnivore
## 7665          5.08140436        6.670778349   Primary Carnivore
## 7666          1.04027671        0.116104790 Secondary Carnivore
## 7667          3.91202301        0.004578480  Tertiary Carnivore
## 7668          3.92197334        6.670778349   Primary Carnivore
## 7669          2.33505228        1.886232978 Secondary Carnivore
## 7670          7.83391713        6.670778349 Secondary Carnivore
## 7671          4.52601875        2.138914945  Tertiary Carnivore
## 7672          4.56076888        1.432814265 Secondary Carnivore
## 7673          3.57632647        0.470853119 Secondary Carnivore
## 7674          2.94968834        1.307030142 Secondary Carnivore
## 7675          7.17142638        6.670778349 Secondary Carnivore
## 7676          2.37954613        0.490146528  Tertiary Carnivore
## 7677          1.80500470        1.886232978 Secondary Carnivore
## 7678          2.12584791        3.515099295 Secondary Carnivore
## 7679          4.80541352        4.094232049 Secondary Carnivore
## 7680          1.68639895        0.130455954 Secondary Carnivore
## 7681          6.91214563        6.670778349 Secondary Carnivore
## 7682          5.57473625        3.473231162   Primary Carnivore
## 7683          7.21604848        6.849625561 Secondary Carnivore
## 7684          2.43562887        2.853935439 Secondary Carnivore
## 7685          2.07693841        0.735932630 Secondary Carnivore
## 7686          1.28093385        0.130455954  Tertiary Carnivore
## 7687          1.41342303        0.413477448 Secondary Carnivore
## 7688          4.26310232        2.433189939  Tertiary Carnivore
## 7689          7.68959991        6.849625561 Secondary Carnivore
## 7690          4.26267988        7.288251436   Primary Carnivore
## 7691          3.49650756        1.168798094 Secondary Carnivore
## 7692          4.00551335        3.146907198 Secondary Carnivore
## 7693          4.20916024        1.886232978   Primary Carnivore
## 7694          7.83241093        6.942696930 Secondary Carnivore
## 7695          4.53646299        3.146907198 Secondary Carnivore
## 7696          8.53210151        6.849625561 Secondary Carnivore
## 7697          1.33500107        0.015041422 Secondary Carnivore
## 7698          2.82731362        0.002344505 Secondary Carnivore
## 7699          4.70048037        6.670778349 Secondary Carnivore
## 7700          4.35388433        1.168798094 Secondary Carnivore
## 7701          4.61541750        3.473231162  Tertiary Carnivore
## 7702          1.42069579        0.214753881 Secondary Carnivore
## 7703          1.06471074        0.305596011  Tertiary Carnivore
## 7704          5.16478597        7.288251436 Secondary Carnivore
## 7705          0.00000000        0.004578480 Secondary Carnivore
## 7706          1.09192330        1.180964506 Secondary Carnivore
## 7707          0.47000363        0.147199990 Secondary Carnivore
## 7708          0.00000000        0.004578480   Primary Carnivore
## 7709          5.39816270        7.288251436  Tertiary Carnivore
## 7710          1.19392247        1.670180746   Primary Carnivore
## 7711          5.50938834        4.094232049  Tertiary Carnivore
## 7712          1.77495235        0.490146528  Tertiary Carnivore
## 7713          3.23474917        1.670180746   Primary Carnivore
## 7714          3.06339092        0.735932630 Secondary Carnivore
## 7715          3.71843826        2.387053327 Secondary Carnivore
## 7716          1.67147330        0.856029167  Tertiary Carnivore
## 7717          4.98360662        6.849625561   Primary Carnivore
## 7718          0.00000000        0.147199990 Secondary Carnivore
## 7719          1.79175947        0.223982763 Secondary Carnivore
## 7720          1.49290410        0.823328714 Secondary Carnivore
## 7721          2.94443898        0.757060688 Secondary Carnivore
## 7722          2.60268969        0.009889753   Primary Carnivore
## 7723          1.69708242        2.122440181 Secondary Carnivore
## 7724          3.43398720        0.002344505 Secondary Carnivore
## 7725          4.80745776        1.168798094   Primary Carnivore
## 7726          1.60140574        0.281204828 Secondary Carnivore
## 7727          4.56954301        6.849625561 Secondary Carnivore
## 7728          1.85629799        0.002059853 Secondary Carnivore
## 7729          2.52652832        0.015041422   Primary Carnivore
## 7730          2.16332303        0.223982763 Secondary Carnivore
## 7731          1.66770682        2.894695819 Secondary Carnivore
## 7732          4.47960696        6.849625561 Secondary Carnivore
## 7733          0.00000000        0.015041422   Primary Carnivore
## 7734          4.85203026        6.942696930 Secondary Carnivore
## 7735          5.02388052        4.094232049   Primary Carnivore
## 7736          1.85848310        0.900183757   Primary Carnivore
## 7737          6.44730586        7.288251436 Secondary Carnivore
## 7738          0.00000000        1.315195554   Primary Carnivore
## 7739          4.79579055        7.288251436   Primary Carnivore
## 7740          2.86789890        2.387053327 Secondary Carnivore
## 7741          3.15700042        2.387053327 Secondary Carnivore
## 7742          1.09192330        0.211247175 Secondary Carnivore
## 7743          1.82454929        0.063185562 Secondary Carnivore
## 7744          1.02961942        2.894695819   Primary Carnivore
## 7745          4.59208495        2.387053327 Secondary Carnivore
## 7746          3.91657264        4.232513096   Primary Carnivore
## 7747          1.76644166        4.047182371 Secondary Carnivore
## 7748          2.74071098        3.873611973 Secondary Carnivore
## 7749          0.99325177        0.878396534   Primary Carnivore
## 7750          3.26956894        2.894695819   Primary Carnivore
## 7751          3.01944880        2.853935439 Secondary Carnivore
## 7752          7.72832775        6.670778349 Secondary Carnivore
## 7753          1.12167756        0.015041422   Primary Carnivore
## 7754          1.08180517        0.211247175 Secondary Carnivore
## 7755          0.83290912        0.470853119  Tertiary Carnivore
## 7756          4.12713439        0.004578480  Tertiary Carnivore
## 7757          0.00000000        1.126655451   Primary Carnivore
## 7758          3.58629287        6.670778349   Primary Carnivore
## 7759          0.01064316        0.305596011  Tertiary Carnivore
## 7760          1.38629436        0.020024930  Tertiary Carnivore
## 7761          1.24126859        0.561550440 Secondary Carnivore
## 7762          5.48188814        6.670778349 Secondary Carnivore
## 7763          7.34018684        6.942696930  Tertiary Carnivore
## 7764          1.32972401        0.015041422  Tertiary Carnivore
## 7765          6.06092531        2.610718759 Secondary Carnivore
## 7766          7.88615659        6.670778349 Secondary Carnivore
## 7767          4.25844557        0.002059853 Secondary Carnivore
## 7768          8.12346889        7.288251436 Secondary Carnivore
## 7769          1.14740245        0.015041422 Secondary Carnivore
## 7770          6.83936937        6.849625561 Secondary Carnivore
## 7771          6.41345896        4.094232049 Secondary Carnivore
## 7772          3.92395158        2.277308093   Primary Carnivore
## 7773          3.54673969        6.670778349 Secondary Carnivore
## 7774          3.56953270        2.387053327 Secondary Carnivore
## 7775          0.00000000        0.130455954 Secondary Carnivore
## 7776          4.41642806        6.670778349 Secondary Carnivore
## 7777          3.21112587        3.651616415 Secondary Carnivore
## 7778          3.01553490        0.015041422  Tertiary Carnivore
## 7779          4.29959566        2.153233085   Primary Carnivore
## 7780          4.83628191        6.849625561 Secondary Carnivore
## 7781          4.24769492        3.873611973 Secondary Carnivore
## 7782          3.91921707        1.506685742 Secondary Carnivore
## 7783          0.26236426        2.024989105   Primary Carnivore
## 7784          1.40609699        0.305596011  Tertiary Carnivore
## 7785          0.00000000        1.459857720   Primary Carnivore
## 7786          5.14166356        7.288251436  Tertiary Carnivore
## 7787          3.28057281        2.433189939 Secondary Carnivore
## 7788          4.45781801        7.288251436   Primary Carnivore
## 7789          4.27527626        6.670778349   Primary Carnivore
## 7790          7.52736356        7.288251436 Secondary Carnivore
## 7791          4.23555473        4.094232049 Secondary Carnivore
## 7792          0.02078254        1.180964506 Secondary Carnivore
## 7793          0.85441533        2.153233085           Herbivore
## 7794          0.00000000        0.130455954 Secondary Carnivore
## 7795          1.99877364        0.015041422  Tertiary Carnivore
## 7796          0.00000000        3.146907198   Primary Carnivore
## 7797          7.95384545        6.849625561 Secondary Carnivore
## 7798          2.64617480        0.305596011  Tertiary Carnivore
## 7799          3.12236492        3.038160131 Secondary Carnivore
## 7800          0.00000000        0.340191127   Primary Carnivore
## 7801          4.41558229        3.943759073 Secondary Carnivore
## 7802          3.70179568        0.735932630   Primary Carnivore
## 7803          4.56017282        3.146907198 Secondary Carnivore
## 7804          2.13416644        1.742111989 Secondary Carnivore
## 7805          6.77445243        6.670778349 Secondary Carnivore
## 7806          2.54160199        2.050338578   Primary Carnivore
## 7807          2.08815348        0.009889753           Herbivore
## 7808          2.89668512        2.136925014 Secondary Carnivore
## 7809          2.10413415        1.886232978 Secondary Carnivore
## 7810          4.71573613        3.304296954 Secondary Carnivore
## 7811          7.34665516        7.288251436 Secondary Carnivore
## 7812          5.22810947        1.168798094   Primary Carnivore
## 7813          2.21920348        0.223982763 Secondary Carnivore
## 7814          2.79116511        1.886232978   Primary Carnivore
## 7815          2.56240767        2.075946520   Primary Carnivore
## 7816          2.84490938        3.473231162  Tertiary Carnivore
## 7817          1.52388002        1.532760019 Secondary Carnivore
## 7818          3.63663834        3.651616415   Primary Carnivore
## 7819          2.36368019        0.015041422   Primary Carnivore
## 7820          3.92789635        6.849625561   Primary Carnivore
## 7821          2.91695959        2.433189939 Secondary Carnivore
## 7822          6.52590904        6.670778349 Secondary Carnivore
## 7823          2.45958884        0.015041422   Primary Carnivore
## 7824          2.59525471        3.473231162 Secondary Carnivore
## 7825          7.61386804        6.670778349 Secondary Carnivore
## 7826          2.27212589        1.532760019   Primary Carnivore
## 7827          3.68637632        2.153233085 Secondary Carnivore
## 7828          0.00000000        0.211247175 Secondary Carnivore
## 7829          3.33932198        2.404044412 Secondary Carnivore
## 7830          1.90389697        0.211247175 Secondary Carnivore
## 7831          3.25424297        3.515099295 Secondary Carnivore
## 7832          2.98568194        4.121930401   Primary Carnivore
## 7833          2.82137889        2.153233085 Secondary Carnivore
## 7834          3.15700042        1.168798094 Secondary Carnivore
## 7835          5.61312811        6.849625561   Primary Carnivore
## 7836          3.23080440        2.241290896   Primary Carnivore
## 7837          2.05412373        0.856029167 Secondary Carnivore
## 7838          2.47653840        0.885298676  Tertiary Carnivore
## 7839          3.24259235        0.749689812   Primary Carnivore
## 7840          3.23867845        3.146907198 Secondary Carnivore
## 7841          2.27829240        2.387053327  Tertiary Carnivore
## 7842          5.44570235        1.168798094   Primary Carnivore
## 7843          5.77455155        6.942696930  Tertiary Carnivore
## 7844          4.57367952        4.094232049 Secondary Carnivore
## 7845          6.28897318        6.670778349 Secondary Carnivore
## 7846          4.86375810        1.673740129   Primary Carnivore
## 7847          2.81367068        2.891851822  Tertiary Carnivore
## 7848          0.00000000        0.002344505 Secondary Carnivore
## 7849          1.20297230        0.015041422   Primary Carnivore
## 7850          2.83749827        2.853935439 Secondary Carnivore
## 7851          7.05142263        6.670778349 Secondary Carnivore
## 7852          3.25037449        0.020024930   Primary Carnivore
## 7853          1.00063188        1.711701702 Secondary Carnivore
## 7854          7.78130551        6.670778349 Secondary Carnivore
## 7855          7.82043952        7.288251436 Secondary Carnivore
## 7856          8.06495089        4.094232049 Secondary Carnivore
## 7857          0.79750720        0.413477448 Secondary Carnivore
## 7858          0.00000000        1.673740129           Herbivore
## 7859          4.51085951        7.288251436 Secondary Carnivore
## 7860          2.25023861        0.214753881 Secondary Carnivore
## 7861          2.82137889        0.009889753   Primary Carnivore
## 7862          8.50329709        7.288251436 Secondary Carnivore
## 7863          4.58598737        4.094232049 Secondary Carnivore
## 7864          3.79098468        1.168798094 Secondary Carnivore
## 7865          0.00000000        0.015041422   Primary Carnivore
## 7866          2.54944517        0.015041422  Tertiary Carnivore
## 7867          5.52146092        6.942696930 Secondary Carnivore
## 7868          2.94443898        2.894695819   Primary Carnivore
## 7869          1.62136648        1.180964506  Tertiary Carnivore
## 7870          3.72810017        1.673740129 Secondary Carnivore
## 7871          3.66612247        6.849625561 Secondary Carnivore
## 7872          0.83290912        0.147199990  Tertiary Carnivore
## 7873          1.66203036        0.009889753  Tertiary Carnivore
## 7874          4.30000280        6.849625561 Secondary Carnivore
## 7875          1.69009582        0.015041422 Secondary Carnivore
## 7876          3.88362353        6.849625561   Primary Carnivore
## 7877          2.54944517        0.044241443   Primary Carnivore
## 7878          0.63180355        4.047182371   Primary Carnivore
## 7879          3.87120101        1.673740129 Secondary Carnivore
## 7880          3.59731226        2.153233085 Secondary Carnivore
## 7881          4.66343909        6.849625561 Secondary Carnivore
## 7882          5.57215403        4.259772081   Primary Carnivore
## 7883          1.27256560        0.823328714 Secondary Carnivore
## 7884          0.82855182        1.877421323 Secondary Carnivore
## 7885          6.11146734        7.288251436   Primary Carnivore
## 7886          0.00000000        0.116104790 Secondary Carnivore
## 7887          4.98360662        4.094232049   Primary Carnivore
## 7888          4.46579317        3.473231162   Primary Carnivore
## 7889          5.35185813        7.288251436  Tertiary Carnivore
## 7890          1.99741771        0.490146528  Tertiary Carnivore
## 7891          3.81683282        2.153233085 Secondary Carnivore
## 7892          0.30748470        0.211247175  Tertiary Carnivore
## 7893          6.27795841        6.670778349 Secondary Carnivore
## 7894          1.22671229        0.305596011  Tertiary Carnivore
## 7895          0.69314718        0.470853119  Tertiary Carnivore
## 7896          2.91158951        1.962719022 Secondary Carnivore
## 7897          3.93573953        1.168798094 Secondary Carnivore
## 7898          2.77819796        0.015041422   Primary Carnivore
## 7899          4.29728541        4.094232049 Secondary Carnivore
## 7900          0.00000000        0.009889753  Tertiary Carnivore
## 7901          7.22875123        6.670778349 Secondary Carnivore
## 7902          5.55902642        1.168798094   Primary Carnivore
## 7903          7.02028007        6.670778349 Secondary Carnivore
## 7904          2.37861978        2.387053327 Secondary Carnivore
## 7905          4.48863637        6.670778349 Secondary Carnivore
## 7906          0.78845736        0.130455954 Secondary Carnivore
## 7907          0.40546511        2.894695819   Primary Carnivore
## 7908          7.34665516        7.288251436 Secondary Carnivore
## 7909          0.00000000        1.459857720   Primary Carnivore
## 7910          0.00000000        0.002344505 Secondary Carnivore
## 7911          4.92308559        7.288251436 Secondary Carnivore
## 7912          3.36729583        1.168798094 Secondary Carnivore
## 7913          1.78170913        0.856029167   Primary Carnivore
## 7914          6.08904488        7.288251436 Secondary Carnivore
## 7915          2.16676537        0.015041422  Tertiary Carnivore
## 7916          3.75560309        6.942696930 Secondary Carnivore
## 7917          0.83290912        4.262479896 Secondary Carnivore
## 7918          1.05779029        2.122440181 Secondary Carnivore
## 7919          4.51085951        7.288251436 Secondary Carnivore
## 7920          1.93152141        0.490146528 Secondary Carnivore
## 7921          2.03339760        1.742111989 Secondary Carnivore
## 7922          3.68135119        2.387053327 Secondary Carnivore
## 7923          2.56510319        2.254856321   Primary Carnivore
## 7924          5.64897424        4.259772081 Secondary Carnivore
## 7925          3.51868408        1.886232978 Secondary Carnivore
## 7926          2.54944517        0.281204828 Secondary Carnivore
## 7927          5.89715387        6.942696930  Tertiary Carnivore
## 7928          2.61739583        1.742111989 Secondary Carnivore
## 7929          2.24191003        6.670778349 Secondary Carnivore
## 7930          7.47363711        7.288251436 Secondary Carnivore
## 7931          1.96571278        0.856029167 Secondary Carnivore
## 7932          0.40546511        0.063185562 Secondary Carnivore
## 7933          6.19031541        6.942696930  Tertiary Carnivore
## 7934          2.28033948        1.532760019   Primary Carnivore
## 7935          2.13947776        4.047182371 Secondary Carnivore
## 7936          3.49650756        3.146907198 Secondary Carnivore
## 7937          0.53062825        0.130455954  Tertiary Carnivore
## 7938          3.95316495        6.670778349 Secondary Carnivore
## 7939          3.73050113        6.670778349 Secondary Carnivore
## 7940          3.05870707        3.038160131 Secondary Carnivore
## 7941          8.44080878        6.849625561 Secondary Carnivore
## 7942          2.32630162        2.845177164 Secondary Carnivore
## 7943          1.48160454        0.130455954 Secondary Carnivore
## 7944          3.57234564        3.168005566 Secondary Carnivore
## 7945          6.59441346        7.288251436  Tertiary Carnivore
## 7946          4.60616969        4.259772081  Tertiary Carnivore
## 7947          1.54756251        0.015041422 Secondary Carnivore
## 7948          4.22537282        1.168798094 Secondary Carnivore
## 7949          0.00000000        0.470853119  Tertiary Carnivore
## 7950          2.98061864        2.387053327 Secondary Carnivore
## 7951          3.76352300        1.168798094 Secondary Carnivore
## 7952          3.19179236        1.540263127 Secondary Carnivore
## 7953          4.01096295        6.670778349 Secondary Carnivore
## 7954          5.11198779        4.094232049  Tertiary Carnivore
## 7955          1.16315081        1.126655451   Primary Carnivore
## 7956          1.19392247        0.211247175 Secondary Carnivore
## 7957          7.39079852        7.288251436 Secondary Carnivore
## 7958          4.66861436        2.153233085 Secondary Carnivore
## 7959          1.54756251        0.009889753  Tertiary Carnivore
## 7960          6.06610809        7.288251436  Tertiary Carnivore
## 7961          4.04480412        6.942696930  Tertiary Carnivore
## 7962          4.98561830        3.304296954   Primary Carnivore
## 7963          6.77502357        6.849625561 Secondary Carnivore
## 7964          4.62497281        3.168005566 Secondary Carnivore
## 7965          2.58021683        1.532760019   Primary Carnivore
## 7966          4.98360662        4.094232049   Primary Carnivore
## 7967          2.63905733        2.153233085 Secondary Carnivore
## 7968          5.22035583        3.146907198 Secondary Carnivore
## 7969          7.13297667        6.670778349 Secondary Carnivore
## 7970          2.58776404        0.757060688 Secondary Carnivore
## 7971          2.11709853        3.515099295 Secondary Carnivore
## 7972          2.36837283        0.735932630 Secondary Carnivore
## 7973          4.18813844        6.849625561  Tertiary Carnivore
## 7974          0.00000000        0.004578480 Secondary Carnivore
## 7975          3.41444261        1.742111989 Secondary Carnivore
## 7976          5.13603370        1.673740129 Secondary Carnivore
## 7977          1.80664808        0.116104790 Secondary Carnivore
## 7978          3.39114705        1.670180746 Secondary Carnivore
## 7979          1.30019166        2.845177164 Secondary Carnivore
## 7980          3.13113691        4.259772081 Secondary Carnivore
## 7981          2.64326276        0.490146528 Secondary Carnivore
## 7982          0.00000000        0.015041422 Secondary Carnivore
## 7983          4.08260931        6.670778349 Secondary Carnivore
## 7984          5.02388052        6.942696930 Secondary Carnivore
## 7985          1.04027671        0.885298676 Secondary Carnivore
## 7986          3.94931879        7.161415474 Secondary Carnivore
## 7987          0.00000000        0.002059853 Secondary Carnivore
## 7988          2.14943391        0.735932630 Secondary Carnivore
## 7989          7.29369772        7.288251436 Secondary Carnivore
## 7990          1.53686722        0.015041422  Tertiary Carnivore
## 7991          0.00000000        0.147199990 Secondary Carnivore
## 7992          2.11142459        0.900183757 Secondary Carnivore
## 7993          1.82454929        0.490146528  Tertiary Carnivore
## 7994          0.83290912        1.831515834 Secondary Carnivore
## 7995          4.75780543        4.094232049 Secondary Carnivore
## 7996          2.74084002        1.886232978 Secondary Carnivore
## 7997          6.03954017        1.886232978 Secondary Carnivore
## 7998          0.17395331        1.532760019  Tertiary Carnivore
## 7999          3.28091122        3.146907198 Secondary Carnivore
## 8000          5.35185813        7.288251436  Tertiary Carnivore
## 8001          0.00000000        2.404044412           Herbivore
## 8002          1.19392247        0.147199990 Secondary Carnivore
## 8003          4.44968528        1.168798094  Tertiary Carnivore
## 8004          4.82807371        1.673740129   Primary Carnivore
## 8005          0.00000000        1.877421323 Secondary Carnivore
## 8006          7.68303529        6.849625561 Secondary Carnivore
## 8007          1.85207032        0.211247175 Secondary Carnivore
## 8008          0.19885086        0.305596011 Secondary Carnivore
## 8009          1.65822808        0.885298676  Tertiary Carnivore
## 8010          1.84292776        1.962719022 Secondary Carnivore
## 8011          2.58021683        2.136925014 Secondary Carnivore
## 8012          5.77299754        1.886232978   Primary Carnivore
## 8013          4.45771372        1.886232978   Primary Carnivore
## 8014          2.77102500        1.962719022  Tertiary Carnivore
## 8015          3.94352167        3.146907198  Tertiary Carnivore
## 8016          2.95491028        2.472143654   Primary Carnivore
## 8017          7.98214318        6.849625561 Secondary Carnivore
## 8018          4.79892612        2.387053327   Primary Carnivore
## 8019          0.92821930        6.942696930           Herbivore
## 8020          7.83494639        6.670778349 Secondary Carnivore
## 8021          7.03341830        6.670778349 Secondary Carnivore
## 8022          1.32175584        2.254856321 Secondary Carnivore
## 8023          6.78649119        6.670778349  Tertiary Carnivore
## 8024          0.00000000        1.670180746   Primary Carnivore
## 8025          0.00000000        2.404044412           Herbivore
## 8026          5.90511659        1.886232978   Primary Carnivore
## 8027          4.61485315        1.432814265 Secondary Carnivore
## 8028          4.22753423        1.506685742   Primary Carnivore
## 8029          7.39184671        7.288251436 Secondary Carnivore
## 8030          1.28923265        0.856029167 Secondary Carnivore
## 8031          1.51292701        0.015041422 Secondary Carnivore
## 8032          0.97455964        0.305596011  Tertiary Carnivore
## 8033          7.97968130        7.288251436 Secondary Carnivore
## 8034          1.18784342        0.561550440 Secondary Carnivore
## 8035          4.06355884        2.138914945 Secondary Carnivore
## 8036          3.19043520        2.610718759 Secondary Carnivore
## 8037          1.76985463        0.015041422  Tertiary Carnivore
## 8038          5.38587026        0.004578480  Tertiary Carnivore
## 8039          1.32441896        4.047182371 Secondary Carnivore
## 8040          0.83290912        5.169038067   Primary Carnivore
## 8041          2.56617937        1.962719022 Secondary Carnivore
## 8042          2.17815501        2.845177164 Secondary Carnivore
## 8043          4.96284463        6.670778349  Tertiary Carnivore
## 8044          2.16217294        0.009889753   Primary Carnivore
## 8045          0.90421815        0.305596011  Tertiary Carnivore
## 8046          0.00000000        1.886232978           Herbivore
## 8047          1.34547237        0.856029167 Secondary Carnivore
## 8048          0.00000000        0.004578480  Tertiary Carnivore
## 8049          3.57660621        1.432814265  Tertiary Carnivore
## 8050          0.43048287        0.856029167  Tertiary Carnivore
## 8051          7.98132323        6.670778349 Secondary Carnivore
## 8052          3.66867675        0.749689812   Primary Carnivore
## 8053          1.19392247        1.532760019  Tertiary Carnivore
## 8054          4.18801704        3.651616415   Primary Carnivore
## 8055          1.44926916        1.251683108 Secondary Carnivore
## 8056          4.50534985        4.094232049  Tertiary Carnivore
## 8057          2.44633906        0.470853119 Secondary Carnivore
## 8058          4.34510328        6.670778349 Secondary Carnivore
## 8059          4.84418709        3.146907198 Secondary Carnivore
## 8060          1.49962305        0.561550440 Secondary Carnivore
## 8061          6.67997600        6.670778349 Secondary Carnivore
## 8062          2.11384297        0.009889753 Secondary Carnivore
## 8063          3.50453585        3.873611973  Tertiary Carnivore
## 8064          8.49631679        6.849625561 Secondary Carnivore
## 8065          5.86646806        2.153233085  Tertiary Carnivore
## 8066          0.37156356        0.130455954 Secondary Carnivore
## 8067          0.00000000        1.981883583   Primary Carnivore
## 8068          4.31348009        4.259772081 Secondary Carnivore
## 8069          2.82137889        1.168798094 Secondary Carnivore
## 8070          2.65324196        0.002344505 Secondary Carnivore
## 8071          3.85014760        6.849625561 Secondary Carnivore
## 8072          3.86157146        0.015041422 Secondary Carnivore
## 8073          3.26575941        2.387053327 Secondary Carnivore
## 8074          4.62497281        4.259772081 Secondary Carnivore
## 8075          2.94443898        0.004578480  Tertiary Carnivore
## 8076          4.39444915        7.288251436 Secondary Carnivore
## 8077          0.99325177        0.130455954  Tertiary Carnivore
## 8078          4.00369019        1.307030142 Secondary Carnivore
## 8079          0.53999600        0.413477448  Tertiary Carnivore
## 8080          0.26236426        1.920179330   Primary Carnivore
## 8081          3.30310667        1.506685742 Secondary Carnivore
## 8082          0.00000000        0.130455954 Secondary Carnivore
## 8083          4.21331208        1.886232978 Secondary Carnivore
## 8084          5.75574221        1.168798094 Secondary Carnivore
## 8085          1.56024767        0.009889753   Primary Carnivore
## 8086          2.02683159        0.885298676  Tertiary Carnivore
## 8087          4.75531284        3.943759073 Secondary Carnivore
## 8088          4.99767163        4.232513096 Secondary Carnivore
## 8089          2.22354189        0.015041422 Secondary Carnivore
## 8090          3.26575941        5.169038067   Primary Carnivore
## 8091          1.71918878        0.856029167   Primary Carnivore
## 8092          1.13462273        2.136925014 Secondary Carnivore
## 8093          0.58778666        0.147199990 Secondary Carnivore
## 8094          1.84150156        1.711701702  Tertiary Carnivore
## 8095          2.97041447        2.387053327 Secondary Carnivore
## 8096          0.00000000        0.002344505 Secondary Carnivore
## 8097          0.00000000        2.404044412           Herbivore
## 8098          2.77258872        0.116104790 Secondary Carnivore
## 8099          1.85629799        0.490146528  Tertiary Carnivore
## 8100          4.59410924        3.168005566 Secondary Carnivore
## 8101          5.56452041        7.288251436  Tertiary Carnivore
## 8102          8.05360097        6.670778349 Secondary Carnivore
## 8103          3.24649099        1.307030142 Secondary Carnivore
## 8104          1.70292826        0.015041422 Secondary Carnivore
## 8105          3.88752537        0.749689812   Primary Carnivore
## 8106          0.00000000        0.015041422  Tertiary Carnivore
## 8107          5.18178355        6.849625561 Secondary Carnivore
## 8108          2.40865536        1.540263127 Secondary Carnivore
## 8109          2.90690106        3.515099295 Secondary Carnivore
## 8110          2.61739583        0.757060688  Tertiary Carnivore
## 8111          2.52572864        0.735932630 Secondary Carnivore
## 8112          3.36037539        2.891851822  Tertiary Carnivore
## 8113          3.35340672        5.169038067   Primary Carnivore
## 8114          0.00000000        1.886232978           Herbivore
## 8115          1.98787435        2.241290896   Primary Carnivore
## 8116          2.68852753        3.226603994 Secondary Carnivore
## 8117          2.58776404        2.136925014 Secondary Carnivore
## 8118          1.35325451        2.404044412 Secondary Carnivore
## 8119          4.70953020        7.288251436 Secondary Carnivore
## 8120          7.35212054        6.849625561 Secondary Carnivore
## 8121          2.56494936        1.315195554 Secondary Carnivore
## 8122          5.81889528        6.849625561 Secondary Carnivore
## 8123          1.79275897        0.116104790 Secondary Carnivore
## 8124          1.62924054        0.147199990 Secondary Carnivore
## 8125          7.75022723        6.670778349 Secondary Carnivore
## 8126          3.79773386        4.094232049 Secondary Carnivore
## 8127          0.95551145        0.490146528  Tertiary Carnivore
## 8128          1.53255687        2.075946520 Secondary Carnivore
## 8129          5.14813381        1.886232978   Primary Carnivore
## 8130          0.00000000        1.886232978           Herbivore
## 8131          0.33647224        2.894695819   Primary Carnivore
## 8132          3.28578653        0.015041422 Secondary Carnivore
## 8133          2.29253476        1.315195554   Primary Carnivore
## 8134          7.29715875        6.849625561 Secondary Carnivore
## 8135          0.26236426        2.024989105   Primary Carnivore
## 8136          0.68813464        1.251683108 Secondary Carnivore
## 8137          1.02961942        0.470853119  Tertiary Carnivore
## 8138          1.26976054        1.180964506 Secondary Carnivore
## 8139          4.04305127        6.670778349  Tertiary Carnivore
## 8140          3.96840334        2.050338578   Primary Carnivore
## 8141          5.72227706        6.849625561 Secondary Carnivore
## 8142          4.79579055        7.288251436 Secondary Carnivore
## 8143          7.40482675        6.670778349 Secondary Carnivore
## 8144          0.78845736        7.161415474   Primary Carnivore
## 8145          5.57215403        4.259772081   Primary Carnivore
## 8146          3.51452607        1.886232978 Secondary Carnivore
## 8147          1.87640694        0.885298676  Tertiary Carnivore
## 8148          2.63905733        0.002059853 Secondary Carnivore
## 8149          0.00000000        2.894695819   Primary Carnivore
## 8150          3.40452517        1.886232978 Secondary Carnivore
## 8151          0.00000000        0.002059853 Secondary Carnivore
## 8152          2.24918432        0.009889753   Primary Carnivore
## 8153          1.66392610        0.211247175 Secondary Carnivore
## 8154          0.06765865        0.305596011 Secondary Carnivore
## 8155          2.27212589        1.670180746 Secondary Carnivore
## 8156          2.77881927        0.885298676  Tertiary Carnivore
## 8157          6.58340922        4.259772081  Tertiary Carnivore
## 8158          0.00000000        1.670180746   Primary Carnivore
## 8159          1.45161383        1.532760019 Secondary Carnivore
## 8160          1.99333884        1.307030142 Secondary Carnivore
## 8161          0.00000000        0.002059853 Secondary Carnivore
## 8162          2.04122033        0.063185562 Secondary Carnivore
## 8163          2.23537634        0.015041422 Secondary Carnivore
## 8164          2.58021683        2.891851822 Secondary Carnivore
## 8165          4.25134831        1.168798094 Secondary Carnivore
## 8166          0.00000000        2.404044412           Herbivore
## 8167          1.47476301        0.900183757 Secondary Carnivore
## 8168          6.77490937        6.849625561 Secondary Carnivore
## 8169          3.42816383        0.015041422   Primary Carnivore
## 8170          1.61541998        0.009889753  Tertiary Carnivore
## 8171          6.90505163        6.849625561 Secondary Carnivore
## 8172          1.66770682        0.002344505 Secondary Carnivore
## 8173          3.03013370        3.146907198 Secondary Carnivore
## 8174          1.81156210        0.211247175 Secondary Carnivore
## 8175          1.01884732        0.223982763 Secondary Carnivore
## 8176          1.51072194        0.015041422  Tertiary Carnivore
## 8177          5.68357977        4.094232049  Tertiary Carnivore
## 8178          4.79579055        7.288251436 Secondary Carnivore
## 8179          1.19996478        0.015041422  Tertiary Carnivore
## 8180          7.45066080        7.288251436 Secondary Carnivore
## 8181          2.47863704        1.711701702   Primary Carnivore
## 8182          1.31640823        0.214753881 Secondary Carnivore
## 8183          6.08677473        4.094232049 Secondary Carnivore
## 8184          3.51443678        2.610718759 Secondary Carnivore
## 8185          2.92316158        3.473231162 Secondary Carnivore
## 8186          1.77495235        0.002344505 Secondary Carnivore
## 8187          0.00000000        1.877421323 Secondary Carnivore
## 8188          2.32727771        0.009889753           Herbivore
## 8189          1.43983513        0.305596011  Tertiary Carnivore
## 8190          5.21553341        0.735932630   Primary Carnivore
## 8191          4.19166787        2.433189939 Secondary Carnivore
## 8192          1.47796155        1.711701702  Tertiary Carnivore
## 8193          2.28238239        1.315195554 Secondary Carnivore
## 8194          2.55722731        1.315195554 Secondary Carnivore
## 8195          3.16665579        0.470853119 Secondary Carnivore
## 8196          0.00000000        0.002344505  Tertiary Carnivore
## 8197          2.79116511        0.009889753           Herbivore
## 8198          1.75958057        4.262479896 Secondary Carnivore
## 8199          1.29746315        0.413477448 Secondary Carnivore
## 8200          2.85647021        1.886232978 Secondary Carnivore
## 8201          2.85070650        0.063185562 Secondary Carnivore
## 8202          5.18505908        1.432814265 Secondary Carnivore
## 8203          1.20297230        1.831515834  Tertiary Carnivore
## 8204          3.26956894        1.886232978 Secondary Carnivore
## 8205          3.80443779        6.670778349   Primary Carnivore
## 8206          5.01727984        7.288251436  Tertiary Carnivore
## 8207          3.85227300        6.670778349 Secondary Carnivore
## 8208          3.27222700        0.735932630   Primary Carnivore
## 8209          1.08180517        0.116104790 Secondary Carnivore
## 8210          1.89611948        0.885298676 Secondary Carnivore
## 8211          1.66770682        0.490146528 Secondary Carnivore
## 8212          4.27495632        4.232513096  Tertiary Carnivore
## 8213          5.77827133        6.670778349  Tertiary Carnivore
## 8214          0.00000000        1.673740129           Herbivore
## 8215          1.48387469        0.885298676 Secondary Carnivore
## 8216          3.55820113        2.153233085           Herbivore
## 8217          0.78845736        2.145288428 Secondary Carnivore
## 8218          2.00417906        0.211247175 Secondary Carnivore
## 8219          8.42299240        6.849625561 Secondary Carnivore
## 8220          6.01859321        7.288251436  Tertiary Carnivore
## 8221          0.00000000        0.002059853 Secondary Carnivore
## 8222          1.95727391        0.004578480   Primary Carnivore
## 8223          1.62924054        0.223982763 Secondary Carnivore
## 8224          1.04027671        1.454402431 Secondary Carnivore
## 8225          5.44241771        2.153233085 Secondary Carnivore
## 8226          3.06339092        3.943759073 Secondary Carnivore
## 8227          2.53369681        1.981883583   Primary Carnivore
## 8228          4.09434456        7.288251436 Secondary Carnivore
## 8229          3.28776736        2.433189939  Tertiary Carnivore
## 8230          5.30330491        7.288251436 Secondary Carnivore
## 8231          0.00000000        0.009889753 Secondary Carnivore
## 8232          5.28826703        2.153233085  Tertiary Carnivore
## 8233          0.95551145        0.211247175 Secondary Carnivore
## 8234          1.67335124        0.735932630 Secondary Carnivore
## 8235          2.70136121        3.515099295 Secondary Carnivore
## 8236          1.18172720        2.387053327 Secondary Carnivore
## 8237          2.41126011        1.014024833 Secondary Carnivore
## 8238          2.32238772        0.223982763 Secondary Carnivore
## 8239          7.51261754        6.942696930 Secondary Carnivore
## 8240          0.00000000        0.009889753 Secondary Carnivore
## 8241          2.63905733        0.002059853 Secondary Carnivore
## 8242          0.91629073        0.063185562 Secondary Carnivore
## 8243          3.02456266        2.254856321 Secondary Carnivore
## 8244          1.41098697        0.147199990 Secondary Carnivore
## 8245          3.78940329        0.214753881  Tertiary Carnivore
## 8246          0.83290912        0.130455954 Secondary Carnivore
## 8247          7.62525355        6.849625561 Secondary Carnivore
## 8248          3.34990409        2.387053327   Primary Carnivore
## 8249          4.61512052        7.288251436  Tertiary Carnivore
## 8250          3.55010577        1.540263127 Secondary Carnivore
## 8251          1.24990174        2.241290896   Primary Carnivore
## 8252          7.22329568        7.288251436 Secondary Carnivore
## 8253          4.71849887        3.146907198 Secondary Carnivore
## 8254          3.92296295        2.138914945 Secondary Carnivore
## 8255          3.28091122        1.168798094   Primary Carnivore
## 8256          2.38139627        2.136925014 Secondary Carnivore
## 8257          1.34547237        0.885298676 Secondary Carnivore
## 8258          2.23697934        0.490146528   Primary Carnivore
## 8259          2.91463067        2.136925014 Secondary Carnivore
## 8260          4.30217141        0.002059853 Secondary Carnivore
## 8261          1.13140211        0.470853119  Tertiary Carnivore
## 8262          3.38113072        1.632888289 Secondary Carnivore
## 8263          1.53901545        2.853935439 Secondary Carnivore
## 8264          2.98061864        0.885298676  Tertiary Carnivore
## 8265          1.95868534        0.211247175 Secondary Carnivore
## 8266          1.68639895        7.161415474 Secondary Carnivore
## 8267          3.09557761        0.009889753   Primary Carnivore
## 8268          2.63991411        2.254856321   Primary Carnivore
## 8269          0.00000000        0.305596011 Secondary Carnivore
## 8270          3.36037539        1.168798094 Secondary Carnivore
## 8271          1.59533899        0.413477448 Secondary Carnivore
## 8272          3.56133013        1.886232978 Secondary Carnivore
## 8273          4.65396035        1.168798094 Secondary Carnivore
## 8274          0.00000000        1.459857720   Primary Carnivore
## 8275          7.34968088        6.849625561 Secondary Carnivore
## 8276          4.68213123        6.670778349  Tertiary Carnivore
## 8277          1.31908561        0.004578480   Primary Carnivore
## 8278          8.85237889        7.288251436 Secondary Carnivore
## 8279          0.93216408        4.094232049           Herbivore
## 8280          4.86753445        2.153233085 Secondary Carnivore
## 8281          0.00000000        0.281204828 Secondary Carnivore
## 8282          2.12823171        0.211247175 Secondary Carnivore
## 8283          5.67194775        1.886232978 Secondary Carnivore
## 8284          0.82417544        1.831515834   Primary Carnivore
## 8285          0.63657683        4.259772081           Herbivore
## 8286          6.61069604        6.942696930 Secondary Carnivore
## 8287          3.42426265        3.651616415  Tertiary Carnivore
## 8288          3.73440238        3.943759073 Secondary Carnivore
## 8289          3.66612247        0.749689812   Primary Carnivore
## 8290          2.08193842        0.004578480  Tertiary Carnivore
## 8291          0.00000000        2.145288428 Secondary Carnivore
## 8292          3.77045944        2.050338578   Primary Carnivore
## 8293          8.52734152        7.288251436 Secondary Carnivore
## 8294          3.71571611        2.433189939 Secondary Carnivore
## 8295          3.06339092        0.735932630 Secondary Carnivore
## 8296          2.61520365        3.226603994  Tertiary Carnivore
## 8297          7.20630310        6.849625561 Secondary Carnivore
## 8298          2.83321334        3.146907198 Secondary Carnivore
## 8299          2.80940270        1.420705940 Secondary Carnivore
## 8300          6.99062476        7.288251436 Secondary Carnivore
## 8301          4.47847253        1.168798094 Secondary Carnivore
## 8302          1.68639895        0.116104790 Secondary Carnivore
## 8303          0.00000000        0.009889753           Herbivore
## 8304          2.50470928        1.432814265 Secondary Carnivore
## 8305          6.66134310        6.670778349 Secondary Carnivore
## 8306          0.87546874        0.063185562 Secondary Carnivore
## 8307          3.20453346        2.610718759  Tertiary Carnivore
## 8308          1.08518927        1.180964506  Tertiary Carnivore
## 8309          3.00071982        0.214753881  Tertiary Carnivore
## 8310          2.00552586        1.307030142 Secondary Carnivore
## 8311          1.46325540        4.094232049           Herbivore
## 8312          4.53689135        1.673740129 Secondary Carnivore
## 8313          5.25227343        7.288251436   Primary Carnivore
## 8314          3.03013370        1.670180746   Primary Carnivore
## 8315          5.25017699        3.473231162   Primary Carnivore
## 8316          3.88567903        2.387053327 Secondary Carnivore
## 8317          3.89731538        0.735932630 Secondary Carnivore
## 8318          5.54126355        3.146907198 Secondary Carnivore
## 8319          4.77912349        4.094232049  Tertiary Carnivore
## 8320          1.70402055        0.211247175 Secondary Carnivore
## 8321          2.81540872        0.757060688 Secondary Carnivore
## 8322          7.84998662        6.670778349 Secondary Carnivore
## 8323          0.00000000        0.002344505  Tertiary Carnivore
## 8324          3.94158181        3.168005566 Secondary Carnivore
## 8325          1.73342389        0.015041422 Secondary Carnivore
## 8326          3.49347266        1.168798094 Secondary Carnivore
## 8327          0.26236426        2.107009466   Primary Carnivore
## 8328          0.00000000        2.107009466   Primary Carnivore
## 8329          2.84490938        0.020024930  Tertiary Carnivore
## 8330          0.74193734        2.241290896   Primary Carnivore
## 8331          1.67335124        0.490146528 Secondary Carnivore
## 8332          4.02177387        2.153233085  Tertiary Carnivore
## 8333          4.50976000        6.670778349 Secondary Carnivore
## 8334          4.07414185        3.159561805   Primary Carnivore
## 8335          2.76744803        6.670778349 Secondary Carnivore
## 8336          2.96460274        3.038160131 Secondary Carnivore
## 8337          5.17868888        2.153233085 Secondary Carnivore
## 8338          1.55180880        0.009889753  Tertiary Carnivore
## 8339          1.38629436        0.063185562 Secondary Carnivore
## 8340          4.54648119        3.146907198 Secondary Carnivore
## 8341          2.37024374        0.490146528 Secondary Carnivore
## 8342          0.30748470        4.259772081           Herbivore
## 8343          2.01089500        0.214753881 Secondary Carnivore
## 8344          3.39450839        1.479154529   Primary Carnivore
## 8345          2.68784749        0.757060688   Primary Carnivore
## 8346          2.35801980        3.515099295 Secondary Carnivore
## 8347          3.76584050        0.009889753  Tertiary Carnivore
## 8348          0.81536481        1.251683108 Secondary Carnivore
## 8349          0.00000000        1.886232978           Herbivore
## 8350          1.28923265        0.004578480 Secondary Carnivore
## 8351          2.00512201        2.853935439   Primary Carnivore
## 8352          4.74449725        3.146907198 Secondary Carnivore
## 8353          4.03777421        6.670778349   Primary Carnivore
## 8354          4.71635371        1.168798094 Secondary Carnivore
## 8355          0.36394843        0.413477448  Tertiary Carnivore
## 8356          0.00000000        0.009889753           Herbivore
## 8357          4.94875989        7.288251436 Secondary Carnivore
## 8358          3.99636415        6.670778349 Secondary Carnivore
## 8359          1.15688120        0.004578480   Primary Carnivore
## 8360          3.51452607        1.168798094 Secondary Carnivore
## 8361          8.20305762        7.288251436 Secondary Carnivore
## 8362          0.81668960        1.705681497 Secondary Carnivore
## 8363          2.55567572        0.015041422   Primary Carnivore
## 8364          1.34547237        1.962719022 Secondary Carnivore
## 8365          2.37954613        0.004578480 Secondary Carnivore
## 8366          4.85203026        6.849625561  Tertiary Carnivore
## 8367          0.95165788        1.877421323 Secondary Carnivore
## 8368          4.74701691        0.002059853 Secondary Carnivore
## 8369          0.98954119        0.116104790 Secondary Carnivore
## 8370          7.58054668        6.670778349 Secondary Carnivore
## 8371          3.03013370        2.153233085 Secondary Carnivore
## 8372          6.27476202        7.288251436   Primary Carnivore
## 8373          4.55807858        6.670778349 Secondary Carnivore
## 8374          1.06594239        2.145288428 Secondary Carnivore
## 8375          2.39059597        1.886232978   Primary Carnivore
## 8376          5.50443683        6.942696930 Secondary Carnivore
## 8377          2.01623547        1.886232978   Primary Carnivore
## 8378          1.40609699        2.136925014 Secondary Carnivore
## 8379          0.00000000        2.404044412           Herbivore
## 8380          4.99043259        6.670778349 Secondary Carnivore
## 8381          3.44998755        1.886232978 Secondary Carnivore
## 8382          1.74221902        1.831515834 Secondary Carnivore
## 8383          0.83290912        1.315195554   Primary Carnivore
## 8384          2.67414865        1.168798094 Secondary Carnivore
## 8385          3.39785848        2.153233085 Secondary Carnivore
## 8386          3.76537743        1.886232978   Primary Carnivore
## 8387          0.53062825        2.472143654   Primary Carnivore
## 8388          3.68145194        1.014024833 Secondary Carnivore
## 8389          7.71020519        7.288251436 Secondary Carnivore
## 8390          2.18941639        1.532760019   Primary Carnivore
## 8391          1.82454929        3.226603994  Tertiary Carnivore
## 8392          1.79342475        4.047182371  Tertiary Carnivore
## 8393          6.29876541        6.849625561 Secondary Carnivore
## 8394          2.60172626        0.470853119  Tertiary Carnivore
## 8395          0.40879290        2.891851822 Secondary Carnivore
## 8396          0.00000000        0.009889753  Tertiary Carnivore
## 8397          2.70951579        1.540263127 Secondary Carnivore
## 8398          1.67147330        0.015041422   Primary Carnivore
## 8399          5.30330491        4.259772081 Secondary Carnivore
## 8400          3.64021428        1.070822001   Primary Carnivore
## 8401          1.89069942        2.075946520 Secondary Carnivore
## 8402          4.24849524        6.849625561 Secondary Carnivore
## 8403          3.97168717        4.232513096 Secondary Carnivore
## 8404          0.99694863        1.540263127   Primary Carnivore
## 8405          4.44851638        6.670778349 Secondary Carnivore
## 8406          0.00000000        0.015041422   Primary Carnivore
## 8407          2.62466859        0.004578480 Secondary Carnivore
## 8408          6.68511160        6.849625561 Secondary Carnivore
## 8409          5.30230939        6.670778349  Tertiary Carnivore
## 8410          4.50733683        2.387053327 Secondary Carnivore
## 8411          3.12236492        2.891851822 Secondary Carnivore
## 8412          6.72623340        6.942696930  Tertiary Carnivore
## 8413          1.04027671        0.116104790 Secondary Carnivore
## 8414          2.71469474        1.886232978 Secondary Carnivore
## 8415          1.30291275        0.490146528 Secondary Carnivore
## 8416          3.81771233        0.735932630 Secondary Carnivore
## 8417          2.84490938        4.259772081 Secondary Carnivore
## 8418          1.67147330        0.004578480   Primary Carnivore
## 8419          1.32441896        2.122440181 Secondary Carnivore
## 8420          1.66770682        0.490146528  Tertiary Carnivore
## 8421          1.69561561        0.009889753 Secondary Carnivore
## 8422          7.38634693        7.288251436 Secondary Carnivore
## 8423          1.45861502        0.223982763 Secondary Carnivore
## 8424          3.55820113        2.404044412 Secondary Carnivore
## 8425          3.95871573        3.473231162 Secondary Carnivore
## 8426          1.22377543        0.878396534   Primary Carnivore
## 8427          3.91800508        3.146907198  Tertiary Carnivore
## 8428          2.80336038        1.168798094 Secondary Carnivore
## 8429          1.79175947        0.878396534   Primary Carnivore
## 8430          1.75785792        0.223982763 Secondary Carnivore
## 8431          3.45568557        0.749689812   Primary Carnivore
## 8432          3.68250921        3.873611973 Secondary Carnivore
## 8433          1.42310833        1.454402431 Secondary Carnivore
## 8434          5.73979291        2.153233085   Primary Carnivore
## 8435          3.08190997        0.002059853 Secondary Carnivore
## 8436          3.23474917        1.886232978 Secondary Carnivore
## 8437          5.08140436        6.670778349   Primary Carnivore
## 8438          1.04027671        0.116104790 Secondary Carnivore
## 8439          3.91202301        0.004578480  Tertiary Carnivore
## 8440          3.92197334        6.670778349   Primary Carnivore
## 8441          2.33505228        1.886232978 Secondary Carnivore
## 8442          7.83391713        6.670778349 Secondary Carnivore
## 8443          4.52601875        2.138914945  Tertiary Carnivore
## 8444          4.56076888        1.432814265 Secondary Carnivore
## 8445          3.57632647        0.470853119 Secondary Carnivore
## 8446          2.94968834        1.307030142 Secondary Carnivore
## 8447          7.17142638        6.670778349 Secondary Carnivore
## 8448          2.37954613        0.490146528  Tertiary Carnivore
## 8449          1.80500470        1.886232978 Secondary Carnivore
## 8450          2.12584791        3.515099295 Secondary Carnivore
## 8451          4.80541352        4.094232049 Secondary Carnivore
## 8452          1.68639895        0.130455954 Secondary Carnivore
## 8453          6.91214563        6.670778349 Secondary Carnivore
## 8454          5.57473625        3.473231162   Primary Carnivore
## 8455          7.21604848        6.849625561 Secondary Carnivore
## 8456          2.43562887        2.853935439 Secondary Carnivore
## 8457          2.07693841        0.735932630 Secondary Carnivore
## 8458          1.28093385        0.130455954  Tertiary Carnivore
## 8459          1.41342303        0.413477448 Secondary Carnivore
## 8460          4.26310232        2.433189939  Tertiary Carnivore
## 8461          7.68959991        6.849625561 Secondary Carnivore
## 8462          4.26267988        7.288251436   Primary Carnivore
## 8463          3.49650756        1.168798094 Secondary Carnivore
## 8464          4.00551335        3.146907198 Secondary Carnivore
## 8465          4.20916024        1.886232978   Primary Carnivore
## 8466          7.83241093        6.942696930 Secondary Carnivore
## 8467          4.53646299        3.146907198 Secondary Carnivore
## 8468          8.53210151        6.849625561 Secondary Carnivore
## 8469          1.33500107        0.015041422 Secondary Carnivore
## 8470          2.82731362        0.002344505 Secondary Carnivore
## 8471          4.70048037        6.670778349 Secondary Carnivore
## 8472          4.35388433        1.168798094 Secondary Carnivore
## 8473          4.61541750        3.473231162  Tertiary Carnivore
## 8474          1.42069579        0.214753881 Secondary Carnivore
## 8475          1.06471074        0.305596011  Tertiary Carnivore
## 8476          5.16478597        7.288251436 Secondary Carnivore
## 8477          0.00000000        0.004578480 Secondary Carnivore
## 8478          1.09192330        1.180964506 Secondary Carnivore
## 8479          0.47000363        0.147199990 Secondary Carnivore
## 8480          0.00000000        0.004578480   Primary Carnivore
## 8481          5.39816270        7.288251436  Tertiary Carnivore
## 8482          1.19392247        1.670180746   Primary Carnivore
## 8483          5.50938834        4.094232049  Tertiary Carnivore
## 8484          1.77495235        0.490146528  Tertiary Carnivore
## 8485          3.23474917        1.670180746   Primary Carnivore
## 8486          3.06339092        0.735932630 Secondary Carnivore
## 8487          3.71843826        2.387053327 Secondary Carnivore
## 8488          1.67147330        0.856029167  Tertiary Carnivore
## 8489          4.98360662        6.849625561   Primary Carnivore
## 8490          0.00000000        0.147199990 Secondary Carnivore
## 8491          1.79175947        0.223982763 Secondary Carnivore
## 8492          1.49290410        0.823328714 Secondary Carnivore
## 8493          2.94443898        0.757060688 Secondary Carnivore
## 8494          2.60268969        0.009889753   Primary Carnivore
## 8495          1.69708242        2.122440181 Secondary Carnivore
## 8496          3.43398720        0.002344505 Secondary Carnivore
## 8497          4.80745776        1.168798094   Primary Carnivore
## 8498          1.60140574        0.281204828 Secondary Carnivore
## 8499          4.56954301        6.849625561 Secondary Carnivore
## 8500          1.85629799        0.002059853 Secondary Carnivore
## 8501          2.52652832        0.015041422   Primary Carnivore
## 8502          2.16332303        0.223982763 Secondary Carnivore
## 8503          1.66770682        2.894695819 Secondary Carnivore
## 8504          4.47960696        6.849625561 Secondary Carnivore
## 8505          0.00000000        0.015041422   Primary Carnivore
## 8506          4.85203026        6.942696930 Secondary Carnivore
## 8507          5.02388052        4.094232049   Primary Carnivore
## 8508          1.85848310        0.900183757   Primary Carnivore
## 8509          6.44730586        7.288251436 Secondary Carnivore
## 8510          0.00000000        1.315195554   Primary Carnivore
## 8511          4.79579055        7.288251436   Primary Carnivore
## 8512          2.86789890        2.387053327 Secondary Carnivore
## 8513          3.15700042        2.387053327 Secondary Carnivore
## 8514          1.09192330        0.211247175 Secondary Carnivore
## 8515          1.82454929        0.063185562 Secondary Carnivore
## 8516          1.02961942        2.894695819   Primary Carnivore
## 8517          4.59208495        2.387053327 Secondary Carnivore
## 8518          3.91657264        4.232513096   Primary Carnivore
## 8519          1.76644166        4.047182371 Secondary Carnivore
## 8520          2.74071098        3.873611973 Secondary Carnivore
## 8521          0.99325177        0.878396534   Primary Carnivore
## 8522          3.26956894        2.894695819   Primary Carnivore
## 8523          3.01944880        2.853935439 Secondary Carnivore
## 8524          7.72832775        6.670778349 Secondary Carnivore
## 8525          1.12167756        0.015041422   Primary Carnivore
## 8526          1.08180517        0.211247175 Secondary Carnivore
## 8527          0.83290912        0.470853119  Tertiary Carnivore
## 8528          4.12713439        0.004578480  Tertiary Carnivore
## 8529          0.00000000        1.126655451   Primary Carnivore
## 8530          3.58629287        6.670778349   Primary Carnivore
## 8531          0.01064316        0.305596011  Tertiary Carnivore
## 8532          1.38629436        0.020024930  Tertiary Carnivore
## 8533          1.24126859        0.561550440 Secondary Carnivore
## 8534          5.48188814        6.670778349 Secondary Carnivore
## 8535          7.34018684        6.942696930  Tertiary Carnivore
## 8536          1.32972401        0.015041422  Tertiary Carnivore
## 8537          6.06092531        2.610718759 Secondary Carnivore
## 8538          7.88615659        6.670778349 Secondary Carnivore
## 8539          4.25844557        0.002059853 Secondary Carnivore
## 8540          8.12346889        7.288251436 Secondary Carnivore
## 8541          1.14740245        0.015041422 Secondary Carnivore
## 8542          6.83936937        6.849625561 Secondary Carnivore
## 8543          6.41345896        4.094232049 Secondary Carnivore
## 8544          3.92395158        2.277308093   Primary Carnivore
## 8545          3.54673969        6.670778349 Secondary Carnivore
## 8546          3.56953270        2.387053327 Secondary Carnivore
## 8547          0.00000000        0.130455954 Secondary Carnivore
## 8548          4.41642806        6.670778349 Secondary Carnivore
## 8549          3.21112587        3.651616415 Secondary Carnivore
## 8550          3.01553490        0.015041422  Tertiary Carnivore
## 8551          4.29959566        2.153233085   Primary Carnivore
## 8552          4.83628191        6.849625561 Secondary Carnivore
## 8553          4.24769492        3.873611973 Secondary Carnivore
## 8554          3.91921707        1.506685742 Secondary Carnivore
## 8555          0.26236426        2.024989105   Primary Carnivore
## 8556          1.40609699        0.305596011  Tertiary Carnivore
## 8557          0.00000000        1.459857720   Primary Carnivore
## 8558          5.14166356        7.288251436  Tertiary Carnivore
## 8559          3.28057281        2.433189939 Secondary Carnivore
## 8560          4.45781801        7.288251436   Primary Carnivore
## 8561          4.27527626        6.670778349   Primary Carnivore
## 8562          7.52736356        7.288251436 Secondary Carnivore
## 8563          4.23555473        4.094232049 Secondary Carnivore
## 8564          0.02078254        1.180964506 Secondary Carnivore
## 8565          0.85441533        2.153233085           Herbivore
## 8566          0.00000000        0.130455954 Secondary Carnivore
## 8567          1.99877364        0.015041422  Tertiary Carnivore
## 8568          0.00000000        3.146907198   Primary Carnivore
## 8569          7.95384545        6.849625561 Secondary Carnivore
## 8570          2.64617480        0.305596011  Tertiary Carnivore
## 8571          3.12236492        3.038160131 Secondary Carnivore
## 8572          0.00000000        0.340191127   Primary Carnivore
## 8573          4.41558229        3.943759073 Secondary Carnivore
## 8574          3.70179568        0.735932630   Primary Carnivore
## 8575          4.56017282        3.146907198 Secondary Carnivore
## 8576          2.13416644        1.742111989 Secondary Carnivore
## 8577          6.77445243        6.670778349 Secondary Carnivore
## 8578          2.54160199        2.050338578   Primary Carnivore
## 8579          2.08815348        0.009889753           Herbivore
## 8580          2.89668512        2.136925014 Secondary Carnivore
## 8581          2.10413415        1.886232978 Secondary Carnivore
## 8582          4.71573613        3.304296954 Secondary Carnivore
## 8583          7.34665516        7.288251436 Secondary Carnivore
## 8584          5.22810947        1.168798094   Primary Carnivore
## 8585          2.21920348        0.223982763 Secondary Carnivore
## 8586          2.79116511        1.886232978   Primary Carnivore
## 8587          2.56240767        2.075946520   Primary Carnivore
## 8588          2.84490938        3.473231162  Tertiary Carnivore
## 8589          1.52388002        1.532760019 Secondary Carnivore
## 8590          3.63663834        3.651616415   Primary Carnivore
## 8591          2.36368019        0.015041422   Primary Carnivore
## 8592          3.92789635        6.849625561   Primary Carnivore
## 8593          2.91695959        2.433189939 Secondary Carnivore
## 8594          6.52590904        6.670778349 Secondary Carnivore
## 8595          2.45958884        0.015041422   Primary Carnivore
## 8596          2.59525471        3.473231162 Secondary Carnivore
## 8597          7.61386804        6.670778349 Secondary Carnivore
## 8598          2.27212589        1.532760019   Primary Carnivore
## 8599          3.68637632        2.153233085 Secondary Carnivore
## 8600          0.00000000        0.211247175 Secondary Carnivore
## 8601          3.33932198        2.404044412 Secondary Carnivore
## 8602          1.90389697        0.211247175 Secondary Carnivore
## 8603          3.25424297        3.515099295 Secondary Carnivore
## 8604          2.98568194        4.121930401   Primary Carnivore
## 8605          2.82137889        2.153233085 Secondary Carnivore
## 8606          3.15700042        1.168798094 Secondary Carnivore
## 8607          5.61312811        6.849625561   Primary Carnivore
## 8608          3.23080440        2.241290896   Primary Carnivore
## 8609          2.05412373        0.856029167 Secondary Carnivore
## 8610          2.47653840        0.885298676  Tertiary Carnivore
## 8611          3.24259235        0.749689812   Primary Carnivore
## 8612          3.23867845        3.146907198 Secondary Carnivore
## 8613          2.27829240        2.387053327  Tertiary Carnivore
## 8614          5.44570235        1.168798094   Primary Carnivore
## 8615          5.77455155        6.942696930  Tertiary Carnivore
## 8616          4.57367952        4.094232049 Secondary Carnivore
## 8617          6.28897318        6.670778349 Secondary Carnivore
## 8618          4.86375810        1.673740129   Primary Carnivore
## 8619          2.81367068        2.891851822  Tertiary Carnivore
## 8620          0.00000000        0.002344505 Secondary Carnivore
## 8621          1.20297230        0.015041422   Primary Carnivore
## 8622          2.83749827        2.853935439 Secondary Carnivore
## 8623          7.05142263        6.670778349 Secondary Carnivore
## 8624          3.25037449        0.020024930   Primary Carnivore
## 8625          1.00063188        1.711701702 Secondary Carnivore
## 8626          7.78130551        6.670778349 Secondary Carnivore
## 8627          7.82043952        7.288251436 Secondary Carnivore
## 8628          8.06495089        4.094232049 Secondary Carnivore
## 8629          0.79750720        0.413477448 Secondary Carnivore
## 8630          0.00000000        1.673740129           Herbivore
## 8631          4.51085951        7.288251436 Secondary Carnivore
## 8632          2.25023861        0.214753881 Secondary Carnivore
## 8633          2.82137889        0.009889753   Primary Carnivore
## 8634          8.50329709        7.288251436 Secondary Carnivore
## 8635          4.58598737        4.094232049 Secondary Carnivore
## 8636          3.79098468        1.168798094 Secondary Carnivore
## 8637          0.00000000        0.015041422   Primary Carnivore
## 8638          2.54944517        0.015041422  Tertiary Carnivore
## 8639          5.52146092        6.942696930 Secondary Carnivore
## 8640          2.94443898        2.894695819   Primary Carnivore
## 8641          1.62136648        1.180964506  Tertiary Carnivore
## 8642          3.72810017        1.673740129 Secondary Carnivore
## 8643          3.66612247        6.849625561 Secondary Carnivore
## 8644          0.83290912        0.147199990  Tertiary Carnivore
## 8645          1.66203036        0.009889753  Tertiary Carnivore
## 8646          4.30000280        6.849625561 Secondary Carnivore
## 8647          1.69009582        0.015041422 Secondary Carnivore
## 8648          3.88362353        6.849625561   Primary Carnivore
## 8649          2.54944517        0.044241443   Primary Carnivore
## 8650          0.63180355        4.047182371   Primary Carnivore
## 8651          3.87120101        1.673740129 Secondary Carnivore
## 8652          3.59731226        2.153233085 Secondary Carnivore
## 8653          4.66343909        6.849625561 Secondary Carnivore
## 8654          5.57215403        4.259772081   Primary Carnivore
## 8655          1.27256560        0.823328714 Secondary Carnivore
## 8656          0.82855182        1.877421323 Secondary Carnivore
## 8657          6.11146734        7.288251436   Primary Carnivore
## 8658          0.00000000        0.116104790 Secondary Carnivore
## 8659          4.98360662        4.094232049   Primary Carnivore
## 8660          4.46579317        3.473231162   Primary Carnivore
## 8661          5.35185813        7.288251436  Tertiary Carnivore
## 8662          1.99741771        0.490146528  Tertiary Carnivore
## 8663          3.81683282        2.153233085 Secondary Carnivore
## 8664          0.30748470        0.211247175  Tertiary Carnivore
## 8665          6.27795841        6.670778349 Secondary Carnivore
## 8666          1.22671229        0.305596011  Tertiary Carnivore
## 8667          0.69314718        0.470853119  Tertiary Carnivore
## 8668          2.91158951        1.962719022 Secondary Carnivore
## 8669          3.93573953        1.168798094 Secondary Carnivore
## 8670          2.77819796        0.015041422   Primary Carnivore
## 8671          4.29728541        4.094232049 Secondary Carnivore
## 8672          0.00000000        0.009889753  Tertiary Carnivore
## 8673          7.22875123        6.670778349 Secondary Carnivore
## 8674          5.55902642        1.168798094   Primary Carnivore
## 8675          7.02028007        6.670778349 Secondary Carnivore
## 8676          2.37861978        2.387053327 Secondary Carnivore
## 8677          4.48863637        6.670778349 Secondary Carnivore
## 8678          0.78845736        0.130455954 Secondary Carnivore
## 8679          0.40546511        2.894695819   Primary Carnivore
## 8680          7.34665516        7.288251436 Secondary Carnivore
## 8681          0.00000000        1.459857720   Primary Carnivore
## 8682          0.00000000        0.002344505 Secondary Carnivore
## 8683          4.92308559        7.288251436 Secondary Carnivore
## 8684          3.36729583        1.168798094 Secondary Carnivore
## 8685          1.78170913        0.856029167   Primary Carnivore
## 8686          6.08904488        7.288251436 Secondary Carnivore
## 8687          2.16676537        0.015041422  Tertiary Carnivore
## 8688          3.75560309        6.942696930 Secondary Carnivore
## 8689          0.83290912        4.262479896 Secondary Carnivore
## 8690          1.05779029        2.122440181 Secondary Carnivore
## 8691          4.51085951        7.288251436 Secondary Carnivore
## 8692          1.93152141        0.490146528 Secondary Carnivore
## 8693          2.03339760        1.742111989 Secondary Carnivore
## 8694          3.68135119        2.387053327 Secondary Carnivore
## 8695          2.56510319        2.254856321   Primary Carnivore
## 8696          5.64897424        4.259772081 Secondary Carnivore
## 8697          3.51868408        1.886232978 Secondary Carnivore
## 8698          2.54944517        0.281204828 Secondary Carnivore
## 8699          5.89715387        6.942696930  Tertiary Carnivore
## 8700          2.61739583        1.742111989 Secondary Carnivore
## 8701          2.24191003        6.670778349 Secondary Carnivore
## 8702          7.47363711        7.288251436 Secondary Carnivore
## 8703          1.96571278        0.856029167 Secondary Carnivore
## 8704          0.40546511        0.063185562 Secondary Carnivore
## 8705          6.19031541        6.942696930  Tertiary Carnivore
## 8706          2.28033948        1.532760019   Primary Carnivore
## 8707          2.13947776        4.047182371 Secondary Carnivore
## 8708          3.49650756        3.146907198 Secondary Carnivore
## 8709          0.53062825        0.130455954  Tertiary Carnivore
## 8710          3.95316495        6.670778349 Secondary Carnivore
## 8711          3.73050113        6.670778349 Secondary Carnivore
## 8712          3.05870707        3.038160131 Secondary Carnivore
## 8713          8.44080878        6.849625561 Secondary Carnivore
## 8714          2.32630162        2.845177164 Secondary Carnivore
## 8715          1.48160454        0.130455954 Secondary Carnivore
## 8716          3.57234564        3.168005566 Secondary Carnivore
## 8717          6.59441346        7.288251436  Tertiary Carnivore
## 8718          4.60616969        4.259772081  Tertiary Carnivore
## 8719          1.54756251        0.015041422 Secondary Carnivore
## 8720          4.22537282        1.168798094 Secondary Carnivore
## 8721          0.00000000        0.470853119  Tertiary Carnivore
## 8722          2.98061864        2.387053327 Secondary Carnivore
## 8723          3.76352300        1.168798094 Secondary Carnivore
## 8724          3.19179236        1.540263127 Secondary Carnivore
## 8725          4.01096295        6.670778349 Secondary Carnivore
## 8726          5.11198779        4.094232049  Tertiary Carnivore
## 8727          1.16315081        1.126655451   Primary Carnivore
## 8728          1.19392247        0.211247175 Secondary Carnivore
## 8729          7.39079852        7.288251436 Secondary Carnivore
## 8730          4.66861436        2.153233085 Secondary Carnivore
## 8731          1.54756251        0.009889753  Tertiary Carnivore
## 8732          6.06610809        7.288251436  Tertiary Carnivore
## 8733          4.04480412        6.942696930  Tertiary Carnivore
## 8734          4.98561830        3.304296954   Primary Carnivore
## 8735          6.77502357        6.849625561 Secondary Carnivore
## 8736          4.62497281        3.168005566 Secondary Carnivore
## 8737          2.58021683        1.532760019   Primary Carnivore
## 8738          4.98360662        4.094232049   Primary Carnivore
## 8739          2.63905733        2.153233085 Secondary Carnivore
## 8740          5.22035583        3.146907198 Secondary Carnivore
## 8741          7.13297667        6.670778349 Secondary Carnivore
## 8742          2.58776404        0.757060688 Secondary Carnivore
## 8743          2.11709853        3.515099295 Secondary Carnivore
## 8744          2.36837283        0.735932630 Secondary Carnivore
## 8745          4.18813844        6.849625561  Tertiary Carnivore
## 8746          0.00000000        0.004578480 Secondary Carnivore
## 8747          3.41444261        1.742111989 Secondary Carnivore
## 8748          5.13603370        1.673740129 Secondary Carnivore
## 8749          1.80664808        0.116104790 Secondary Carnivore
## 8750          3.39114705        1.670180746 Secondary Carnivore
## 8751          1.30019166        2.845177164 Secondary Carnivore
## 8752          3.13113691        4.259772081 Secondary Carnivore
## 8753          2.64326276        0.490146528 Secondary Carnivore
## 8754          0.00000000        0.015041422 Secondary Carnivore
## 8755          4.08260931        6.670778349 Secondary Carnivore
## 8756          5.02388052        6.942696930 Secondary Carnivore
## 8757          1.04027671        0.885298676 Secondary Carnivore
## 8758          3.94931879        7.161415474 Secondary Carnivore
## 8759          0.00000000        0.002059853 Secondary Carnivore
## 8760          2.14943391        0.735932630 Secondary Carnivore
## 8761          7.29369772        7.288251436 Secondary Carnivore
## 8762          1.53686722        0.015041422  Tertiary Carnivore
## 8763          0.00000000        0.147199990 Secondary Carnivore
## 8764          2.11142459        0.900183757 Secondary Carnivore
## 8765          1.82454929        0.490146528  Tertiary Carnivore
## 8766          0.83290912        1.831515834 Secondary Carnivore
## 8767          4.75780543        4.094232049 Secondary Carnivore
## 8768          2.74084002        1.886232978 Secondary Carnivore
## 8769          6.03954017        1.886232978 Secondary Carnivore
## 8770          0.17395331        1.532760019  Tertiary Carnivore
## 8771          3.28091122        3.146907198 Secondary Carnivore
## 8772          5.35185813        7.288251436  Tertiary Carnivore
## 8773          0.00000000        2.404044412           Herbivore
## 8774          1.19392247        0.147199990 Secondary Carnivore
## 8775          4.44968528        1.168798094  Tertiary Carnivore
## 8776          4.82807371        1.673740129   Primary Carnivore
## 8777          0.00000000        1.877421323 Secondary Carnivore
## 8778          7.68303529        6.849625561 Secondary Carnivore
## 8779          1.85207032        0.211247175 Secondary Carnivore
## 8780          0.19885086        0.305596011 Secondary Carnivore
## 8781          1.65822808        0.885298676  Tertiary Carnivore
## 8782          1.84292776        1.962719022 Secondary Carnivore
## 8783          2.58021683        2.136925014 Secondary Carnivore
## 8784          5.77299754        1.886232978   Primary Carnivore
## 8785          4.45771372        1.886232978   Primary Carnivore
## 8786          2.77102500        1.962719022  Tertiary Carnivore
## 8787          3.94352167        3.146907198  Tertiary Carnivore
## 8788          2.95491028        2.472143654   Primary Carnivore
## 8789          7.98214318        6.849625561 Secondary Carnivore
## 8790          4.79892612        2.387053327   Primary Carnivore
## 8791          0.92821930        6.942696930           Herbivore
## 8792          7.83494639        6.670778349 Secondary Carnivore
## 8793          7.03341830        6.670778349 Secondary Carnivore
## 8794          1.32175584        2.254856321 Secondary Carnivore
## 8795          6.78649119        6.670778349  Tertiary Carnivore
## 8796          0.00000000        1.670180746   Primary Carnivore
## 8797          0.00000000        2.404044412           Herbivore
## 8798          5.90511659        1.886232978   Primary Carnivore
## 8799          4.61485315        1.432814265 Secondary Carnivore
## 8800          4.22753423        1.506685742   Primary Carnivore
## 8801          7.39184671        7.288251436 Secondary Carnivore
## 8802          1.28923265        0.856029167 Secondary Carnivore
## 8803          1.51292701        0.015041422 Secondary Carnivore
## 8804          0.97455964        0.305596011  Tertiary Carnivore
## 8805          7.97968130        7.288251436 Secondary Carnivore
## 8806          1.18784342        0.561550440 Secondary Carnivore
## 8807          4.06355884        2.138914945 Secondary Carnivore
## 8808          3.19043520        2.610718759 Secondary Carnivore
## 8809          1.76985463        0.015041422  Tertiary Carnivore
## 8810          5.38587026        0.004578480  Tertiary Carnivore
## 8811          1.32441896        4.047182371 Secondary Carnivore
## 8812          0.83290912        5.169038067   Primary Carnivore
## 8813          2.56617937        1.962719022 Secondary Carnivore
## 8814          2.17815501        2.845177164 Secondary Carnivore
## 8815          4.96284463        6.670778349  Tertiary Carnivore
## 8816          2.16217294        0.009889753   Primary Carnivore
## 8817          0.90421815        0.305596011  Tertiary Carnivore
## 8818          0.00000000        1.886232978           Herbivore
## 8819          1.34547237        0.856029167 Secondary Carnivore
## 8820          0.00000000        0.004578480  Tertiary Carnivore
## 8821          3.57660621        1.432814265  Tertiary Carnivore
## 8822          0.43048287        0.856029167  Tertiary Carnivore
## 8823          7.98132323        6.670778349 Secondary Carnivore
## 8824          3.66867675        0.749689812   Primary Carnivore
## 8825          1.19392247        1.532760019  Tertiary Carnivore
## 8826          4.18801704        3.651616415   Primary Carnivore
## 8827          1.44926916        1.251683108 Secondary Carnivore
## 8828          4.50534985        4.094232049  Tertiary Carnivore
## 8829          2.44633906        0.470853119 Secondary Carnivore
## 8830          4.34510328        6.670778349 Secondary Carnivore
## 8831          4.84418709        3.146907198 Secondary Carnivore
## 8832          1.49962305        0.561550440 Secondary Carnivore
## 8833          6.67997600        6.670778349 Secondary Carnivore
## 8834          2.11384297        0.009889753 Secondary Carnivore
## 8835          3.50453585        3.873611973  Tertiary Carnivore
## 8836          8.49631679        6.849625561 Secondary Carnivore
## 8837          5.86646806        2.153233085  Tertiary Carnivore
## 8838          0.37156356        0.130455954 Secondary Carnivore
## 8839          0.00000000        1.981883583   Primary Carnivore
## 8840          4.31348009        4.259772081 Secondary Carnivore
## 8841          2.82137889        1.168798094 Secondary Carnivore
## 8842          2.65324196        0.002344505 Secondary Carnivore
## 8843          3.85014760        6.849625561 Secondary Carnivore
## 8844          3.86157146        0.015041422 Secondary Carnivore
## 8845          3.26575941        2.387053327 Secondary Carnivore
## 8846          4.62497281        4.259772081 Secondary Carnivore
## 8847          2.94443898        0.004578480  Tertiary Carnivore
## 8848          4.39444915        7.288251436 Secondary Carnivore
## 8849          0.99325177        0.130455954  Tertiary Carnivore
## 8850          4.00369019        1.307030142 Secondary Carnivore
## 8851          0.53999600        0.413477448  Tertiary Carnivore
## 8852          0.26236426        1.920179330   Primary Carnivore
## 8853          3.30310667        1.506685742 Secondary Carnivore
## 8854          0.00000000        0.130455954 Secondary Carnivore
## 8855          4.21331208        1.886232978 Secondary Carnivore
## 8856          5.75574221        1.168798094 Secondary Carnivore
## 8857          1.56024767        0.009889753   Primary Carnivore
## 8858          2.02683159        0.885298676  Tertiary Carnivore
## 8859          4.75531284        3.943759073 Secondary Carnivore
## 8860          4.99767163        4.232513096 Secondary Carnivore
## 8861          2.22354189        0.015041422 Secondary Carnivore
## 8862          3.26575941        5.169038067   Primary Carnivore
## 8863          1.71918878        0.856029167   Primary Carnivore
## 8864          1.13462273        2.136925014 Secondary Carnivore
## 8865          0.58778666        0.147199990 Secondary Carnivore
## 8866          1.84150156        1.711701702  Tertiary Carnivore
## 8867          2.97041447        2.387053327 Secondary Carnivore
## 8868          0.00000000        0.002344505 Secondary Carnivore
## 8869          0.00000000        2.404044412           Herbivore
## 8870          2.77258872        0.116104790 Secondary Carnivore
## 8871          1.85629799        0.490146528  Tertiary Carnivore
## 8872          4.59410924        3.168005566 Secondary Carnivore
## 8873          5.56452041        7.288251436  Tertiary Carnivore
## 8874          8.05360097        6.670778349 Secondary Carnivore
## 8875          3.24649099        1.307030142 Secondary Carnivore
## 8876          1.70292826        0.015041422 Secondary Carnivore
## 8877          3.88752537        0.749689812   Primary Carnivore
## 8878          0.00000000        0.015041422  Tertiary Carnivore
## 8879          5.18178355        6.849625561 Secondary Carnivore
## 8880          2.40865536        1.540263127 Secondary Carnivore
## 8881          2.90690106        3.515099295 Secondary Carnivore
## 8882          2.61739583        0.757060688  Tertiary Carnivore
## 8883          2.52572864        0.735932630 Secondary Carnivore
## 8884          3.36037539        2.891851822  Tertiary Carnivore
## 8885          3.35340672        5.169038067   Primary Carnivore
## 8886          0.00000000        1.886232978           Herbivore
## 8887          1.98787435        2.241290896   Primary Carnivore
## 8888          2.68852753        3.226603994 Secondary Carnivore
## 8889          2.58776404        2.136925014 Secondary Carnivore
## 8890          1.35325451        2.404044412 Secondary Carnivore
## 8891          4.70953020        7.288251436 Secondary Carnivore
## 8892          7.35212054        6.849625561 Secondary Carnivore
## 8893          2.56494936        1.315195554 Secondary Carnivore
## 8894          5.81889528        6.849625561 Secondary Carnivore
## 8895          1.79275897        0.116104790 Secondary Carnivore
## 8896          1.62924054        0.147199990 Secondary Carnivore
## 8897          7.75022723        6.670778349 Secondary Carnivore
## 8898          3.79773386        4.094232049 Secondary Carnivore
## 8899          0.95551145        0.490146528  Tertiary Carnivore
## 8900          1.53255687        2.075946520 Secondary Carnivore
## 8901          5.14813381        1.886232978   Primary Carnivore
## 8902          0.00000000        1.886232978           Herbivore
## 8903          0.33647224        2.894695819   Primary Carnivore
## 8904          3.28578653        0.015041422 Secondary Carnivore
## 8905          2.29253476        1.315195554   Primary Carnivore
## 8906          7.29715875        6.849625561 Secondary Carnivore
## 8907          0.26236426        2.024989105   Primary Carnivore
## 8908          0.68813464        1.251683108 Secondary Carnivore
## 8909          1.02961942        0.470853119  Tertiary Carnivore
## 8910          1.26976054        1.180964506 Secondary Carnivore
## 8911          4.04305127        6.670778349  Tertiary Carnivore
## 8912          3.96840334        2.050338578   Primary Carnivore
## 8913          5.72227706        6.849625561 Secondary Carnivore
## 8914          4.79579055        7.288251436 Secondary Carnivore
## 8915          7.40482675        6.670778349 Secondary Carnivore
## 8916          0.78845736        7.161415474   Primary Carnivore
## 8917          5.57215403        4.259772081   Primary Carnivore
## 8918          3.51452607        1.886232978 Secondary Carnivore
## 8919          1.87640694        0.885298676  Tertiary Carnivore
## 8920          2.63905733        0.002059853 Secondary Carnivore
## 8921          0.00000000        2.894695819   Primary Carnivore
## 8922          3.40452517        1.886232978 Secondary Carnivore
## 8923          0.00000000        0.002059853 Secondary Carnivore
## 8924          2.24918432        0.009889753   Primary Carnivore
## 8925          1.66392610        0.211247175 Secondary Carnivore
## 8926          0.06765865        0.305596011 Secondary Carnivore
## 8927          2.27212589        1.670180746 Secondary Carnivore
## 8928          2.77881927        0.885298676  Tertiary Carnivore
## 8929          6.58340922        4.259772081  Tertiary Carnivore
## 8930          0.00000000        1.670180746   Primary Carnivore
## 8931          1.45161383        1.532760019 Secondary Carnivore
## 8932          1.99333884        1.307030142 Secondary Carnivore
## 8933          0.00000000        0.002059853 Secondary Carnivore
## 8934          2.04122033        0.063185562 Secondary Carnivore
## 8935          2.23537634        0.015041422 Secondary Carnivore
## 8936          2.58021683        2.891851822 Secondary Carnivore
## 8937          4.25134831        1.168798094 Secondary Carnivore
## 8938          0.00000000        2.404044412           Herbivore
## 8939          1.47476301        0.900183757 Secondary Carnivore
## 8940          6.77490937        6.849625561 Secondary Carnivore
## 8941          3.42816383        0.015041422   Primary Carnivore
## 8942          1.61541998        0.009889753  Tertiary Carnivore
## 8943          6.90505163        6.849625561 Secondary Carnivore
## 8944          1.66770682        0.002344505 Secondary Carnivore
## 8945          3.03013370        3.146907198 Secondary Carnivore
## 8946          1.81156210        0.211247175 Secondary Carnivore
## 8947          1.01884732        0.223982763 Secondary Carnivore
## 8948          1.51072194        0.015041422  Tertiary Carnivore
## 8949          5.68357977        4.094232049  Tertiary Carnivore
## 8950          4.79579055        7.288251436 Secondary Carnivore
## 8951          1.19996478        0.015041422  Tertiary Carnivore
## 8952          7.45066080        7.288251436 Secondary Carnivore
## 8953          2.47863704        1.711701702   Primary Carnivore
## 8954          1.31640823        0.214753881 Secondary Carnivore
## 8955          6.08677473        4.094232049 Secondary Carnivore
## 8956          3.51443678        2.610718759 Secondary Carnivore
## 8957          2.92316158        3.473231162 Secondary Carnivore
## 8958          1.77495235        0.002344505 Secondary Carnivore
## 8959          0.00000000        1.877421323 Secondary Carnivore
## 8960          2.32727771        0.009889753           Herbivore
## 8961          1.43983513        0.305596011  Tertiary Carnivore
## 8962          5.21553341        0.735932630   Primary Carnivore
## 8963          4.19166787        2.433189939 Secondary Carnivore
## 8964          1.47796155        1.711701702  Tertiary Carnivore
## 8965          2.28238239        1.315195554 Secondary Carnivore
## 8966          2.55722731        1.315195554 Secondary Carnivore
## 8967          3.16665579        0.470853119 Secondary Carnivore
## 8968          0.00000000        0.002344505  Tertiary Carnivore
## 8969          2.79116511        0.009889753           Herbivore
## 8970          1.75958057        4.262479896 Secondary Carnivore
## 8971          1.29746315        0.413477448 Secondary Carnivore
## 8972          2.85647021        1.886232978 Secondary Carnivore
## 8973          2.85070650        0.063185562 Secondary Carnivore
## 8974          5.18505908        1.432814265 Secondary Carnivore
## 8975          1.20297230        1.831515834  Tertiary Carnivore
## 8976          3.26956894        1.886232978 Secondary Carnivore
## 8977          3.80443779        6.670778349   Primary Carnivore
## 8978          5.01727984        7.288251436  Tertiary Carnivore
## 8979          3.85227300        6.670778349 Secondary Carnivore
## 8980          3.27222700        0.735932630   Primary Carnivore
## 8981          1.08180517        0.116104790 Secondary Carnivore
## 8982          1.89611948        0.885298676 Secondary Carnivore
## 8983          1.66770682        0.490146528 Secondary Carnivore
## 8984          4.27495632        4.232513096  Tertiary Carnivore
## 8985          5.77827133        6.670778349  Tertiary Carnivore
## 8986          0.00000000        1.673740129           Herbivore
## 8987          1.48387469        0.885298676 Secondary Carnivore
## 8988          3.55820113        2.153233085           Herbivore
## 8989          0.78845736        2.145288428 Secondary Carnivore
## 8990          2.00417906        0.211247175 Secondary Carnivore
## 8991          8.42299240        6.849625561 Secondary Carnivore
## 8992          6.01859321        7.288251436  Tertiary Carnivore
## 8993          0.00000000        0.002059853 Secondary Carnivore
## 8994          1.95727391        0.004578480   Primary Carnivore
## 8995          1.62924054        0.223982763 Secondary Carnivore
## 8996          1.04027671        1.454402431 Secondary Carnivore
## 8997          5.44241771        2.153233085 Secondary Carnivore
## 8998          3.06339092        3.943759073 Secondary Carnivore
## 8999          2.53369681        1.981883583   Primary Carnivore
## 9000          4.09434456        7.288251436 Secondary Carnivore
## 9001          3.28776736        2.433189939  Tertiary Carnivore
## 9002          5.30330491        7.288251436 Secondary Carnivore
## 9003          0.00000000        0.009889753 Secondary Carnivore
## 9004          5.28826703        2.153233085  Tertiary Carnivore
## 9005          0.95551145        0.211247175 Secondary Carnivore
## 9006          1.67335124        0.735932630 Secondary Carnivore
## 9007          2.70136121        3.515099295 Secondary Carnivore
## 9008          1.18172720        2.387053327 Secondary Carnivore
## 9009          2.41126011        1.014024833 Secondary Carnivore
## 9010          2.32238772        0.223982763 Secondary Carnivore
## 9011          7.51261754        6.942696930 Secondary Carnivore
## 9012          0.00000000        0.009889753 Secondary Carnivore
## 9013          2.63905733        0.002059853 Secondary Carnivore
## 9014          0.91629073        0.063185562 Secondary Carnivore
## 9015          3.02456266        2.254856321 Secondary Carnivore
## 9016          1.41098697        0.147199990 Secondary Carnivore
## 9017          3.78940329        0.214753881  Tertiary Carnivore
## 9018          0.83290912        0.130455954 Secondary Carnivore
## 9019          7.62525355        6.849625561 Secondary Carnivore
## 9020          3.34990409        2.387053327   Primary Carnivore
## 9021          4.61512052        7.288251436  Tertiary Carnivore
## 9022          3.55010577        1.540263127 Secondary Carnivore
## 9023          1.24990174        2.241290896   Primary Carnivore
## 9024          7.22329568        7.288251436 Secondary Carnivore
## 9025          4.71849887        3.146907198 Secondary Carnivore
## 9026          3.92296295        2.138914945 Secondary Carnivore
## 9027          3.28091122        1.168798094   Primary Carnivore
## 9028          2.38139627        2.136925014 Secondary Carnivore
## 9029          1.34547237        0.885298676 Secondary Carnivore
## 9030          2.23697934        0.490146528   Primary Carnivore
## 9031          2.91463067        2.136925014 Secondary Carnivore
## 9032          4.30217141        0.002059853 Secondary Carnivore
## 9033          1.13140211        0.470853119  Tertiary Carnivore
## 9034          3.38113072        1.632888289 Secondary Carnivore
## 9035          1.53901545        2.853935439 Secondary Carnivore
## 9036          2.98061864        0.885298676  Tertiary Carnivore
## 9037          1.95868534        0.211247175 Secondary Carnivore
## 9038          1.68639895        7.161415474 Secondary Carnivore
## 9039          3.09557761        0.009889753   Primary Carnivore
## 9040          2.63991411        2.254856321   Primary Carnivore
## 9041          0.00000000        0.305596011 Secondary Carnivore
## 9042          3.36037539        1.168798094 Secondary Carnivore
## 9043          1.59533899        0.413477448 Secondary Carnivore
## 9044          3.56133013        1.886232978 Secondary Carnivore
## 9045          4.65396035        1.168798094 Secondary Carnivore
## 9046          0.00000000        1.459857720   Primary Carnivore
## 9047          7.34968088        6.849625561 Secondary Carnivore
## 9048          4.68213123        6.670778349  Tertiary Carnivore
## 9049          1.31908561        0.004578480   Primary Carnivore
## 9050          8.85237889        7.288251436 Secondary Carnivore
## 9051          0.93216408        4.094232049           Herbivore
## 9052          4.86753445        2.153233085 Secondary Carnivore
## 9053          0.00000000        0.281204828 Secondary Carnivore
## 9054          2.12823171        0.211247175 Secondary Carnivore
## 9055          5.67194775        1.886232978 Secondary Carnivore
## 9056          0.82417544        1.831515834   Primary Carnivore
## 9057          0.63657683        4.259772081           Herbivore
## 9058          6.61069604        6.942696930 Secondary Carnivore
## 9059          3.42426265        3.651616415  Tertiary Carnivore
## 9060          3.73440238        3.943759073 Secondary Carnivore
## 9061          3.66612247        0.749689812   Primary Carnivore
## 9062          2.08193842        0.004578480  Tertiary Carnivore
## 9063          0.00000000        2.145288428 Secondary Carnivore
## 9064          3.77045944        2.050338578   Primary Carnivore
## 9065          8.52734152        7.288251436 Secondary Carnivore
## 9066          3.71571611        2.433189939 Secondary Carnivore
## 9067          3.06339092        0.735932630 Secondary Carnivore
## 9068          2.61520365        3.226603994  Tertiary Carnivore
## 9069          7.20630310        6.849625561 Secondary Carnivore
## 9070          2.83321334        3.146907198 Secondary Carnivore
## 9071          2.80940270        1.420705940 Secondary Carnivore
## 9072          6.99062476        7.288251436 Secondary Carnivore
## 9073          4.47847253        1.168798094 Secondary Carnivore
## 9074          1.68639895        0.116104790 Secondary Carnivore
## 9075          0.00000000        0.009889753           Herbivore
## 9076          2.50470928        1.432814265 Secondary Carnivore
## 9077          6.66134310        6.670778349 Secondary Carnivore
## 9078          0.87546874        0.063185562 Secondary Carnivore
## 9079          3.20453346        2.610718759  Tertiary Carnivore
## 9080          1.08518927        1.180964506  Tertiary Carnivore
## 9081          3.00071982        0.214753881  Tertiary Carnivore
## 9082          2.00552586        1.307030142 Secondary Carnivore
## 9083          1.46325540        4.094232049           Herbivore
## 9084          4.53689135        1.673740129 Secondary Carnivore
## 9085          5.25227343        7.288251436   Primary Carnivore
## 9086          3.03013370        1.670180746   Primary Carnivore
## 9087          5.25017699        3.473231162   Primary Carnivore
## 9088          3.88567903        2.387053327 Secondary Carnivore
## 9089          3.89731538        0.735932630 Secondary Carnivore
## 9090          5.54126355        3.146907198 Secondary Carnivore
## 9091          4.77912349        4.094232049  Tertiary Carnivore
## 9092          1.70402055        0.211247175 Secondary Carnivore
## 9093          2.81540872        0.757060688 Secondary Carnivore
## 9094          7.84998662        6.670778349 Secondary Carnivore
## 9095          0.00000000        0.002344505  Tertiary Carnivore
## 9096          3.94158181        3.168005566 Secondary Carnivore
## 9097          1.73342389        0.015041422 Secondary Carnivore
## 9098          3.49347266        1.168798094 Secondary Carnivore
## 9099          0.26236426        2.107009466   Primary Carnivore
## 9100          0.00000000        2.107009466   Primary Carnivore
## 9101          2.84490938        0.020024930  Tertiary Carnivore
## 9102          0.74193734        2.241290896   Primary Carnivore
## 9103          1.67335124        0.490146528 Secondary Carnivore
## 9104          4.02177387        2.153233085  Tertiary Carnivore
## 9105          4.50976000        6.670778349 Secondary Carnivore
## 9106          4.07414185        3.159561805   Primary Carnivore
## 9107          2.76744803        6.670778349 Secondary Carnivore
## 9108          2.96460274        3.038160131 Secondary Carnivore
## 9109          5.17868888        2.153233085 Secondary Carnivore
## 9110          1.55180880        0.009889753  Tertiary Carnivore
## 9111          1.38629436        0.063185562 Secondary Carnivore
## 9112          4.54648119        3.146907198 Secondary Carnivore
## 9113          2.37024374        0.490146528 Secondary Carnivore
## 9114          0.30748470        4.259772081           Herbivore
## 9115          2.01089500        0.214753881 Secondary Carnivore
## 9116          3.39450839        1.479154529   Primary Carnivore
## 9117          2.68784749        0.757060688   Primary Carnivore
## 9118          2.35801980        3.515099295 Secondary Carnivore
## 9119          3.76584050        0.009889753  Tertiary Carnivore
## 9120          0.81536481        1.251683108 Secondary Carnivore
## 9121          0.00000000        1.886232978           Herbivore
## 9122          1.28923265        0.004578480 Secondary Carnivore
## 9123          2.00512201        2.853935439   Primary Carnivore
## 9124          4.74449725        3.146907198 Secondary Carnivore
## 9125          4.03777421        6.670778349   Primary Carnivore
## 9126          4.71635371        1.168798094 Secondary Carnivore
## 9127          0.36394843        0.413477448  Tertiary Carnivore
## 9128          0.00000000        0.009889753           Herbivore
## 9129          4.94875989        7.288251436 Secondary Carnivore
## 9130          3.99636415        6.670778349 Secondary Carnivore
## 9131          1.15688120        0.004578480   Primary Carnivore
## 9132          3.51452607        1.168798094 Secondary Carnivore
## 9133          8.20305762        7.288251436 Secondary Carnivore
## 9134          0.81668960        1.705681497 Secondary Carnivore
## 9135          2.55567572        0.015041422   Primary Carnivore
## 9136          1.34547237        1.962719022 Secondary Carnivore
## 9137          2.37954613        0.004578480 Secondary Carnivore
## 9138          4.85203026        6.849625561  Tertiary Carnivore
## 9139          0.95165788        1.877421323 Secondary Carnivore
## 9140          4.74701691        0.002059853 Secondary Carnivore
## 9141          0.98954119        0.116104790 Secondary Carnivore
## 9142          7.58054668        6.670778349 Secondary Carnivore
## 9143          3.03013370        2.153233085 Secondary Carnivore
## 9144          6.27476202        7.288251436   Primary Carnivore
## 9145          4.55807858        6.670778349 Secondary Carnivore
## 9146          1.06594239        2.145288428 Secondary Carnivore
## 9147          2.39059597        1.886232978   Primary Carnivore
## 9148          5.50443683        6.942696930 Secondary Carnivore
## 9149          2.01623547        1.886232978   Primary Carnivore
## 9150          1.40609699        2.136925014 Secondary Carnivore
## 9151          0.00000000        2.404044412           Herbivore
## 9152          4.99043259        6.670778349 Secondary Carnivore
## 9153          3.44998755        1.886232978 Secondary Carnivore
## 9154          1.74221902        1.831515834 Secondary Carnivore
## 9155          0.83290912        1.315195554   Primary Carnivore
## 9156          2.67414865        1.168798094 Secondary Carnivore
## 9157          3.39785848        2.153233085 Secondary Carnivore
## 9158          3.76537743        1.886232978   Primary Carnivore
## 9159          0.53062825        2.472143654   Primary Carnivore
## 9160          3.68145194        1.014024833 Secondary Carnivore
## 9161          7.71020519        7.288251436 Secondary Carnivore
## 9162          2.18941639        1.532760019   Primary Carnivore
## 9163          1.82454929        3.226603994  Tertiary Carnivore
## 9164          1.79342475        4.047182371  Tertiary Carnivore
## 9165          6.29876541        6.849625561 Secondary Carnivore
## 9166          2.60172626        0.470853119  Tertiary Carnivore
## 9167          0.40879290        2.891851822 Secondary Carnivore
## 9168          0.00000000        0.009889753  Tertiary Carnivore
## 9169          2.70951579        1.540263127 Secondary Carnivore
## 9170          1.67147330        0.015041422   Primary Carnivore
## 9171          5.30330491        4.259772081 Secondary Carnivore
## 9172          3.64021428        1.070822001   Primary Carnivore
## 9173          1.89069942        2.075946520 Secondary Carnivore
## 9174          4.24849524        6.849625561 Secondary Carnivore
## 9175          3.97168717        4.232513096 Secondary Carnivore
## 9176          0.99694863        1.540263127   Primary Carnivore
## 9177          4.44851638        6.670778349 Secondary Carnivore
## 9178          0.00000000        0.015041422   Primary Carnivore
## 9179          2.62466859        0.004578480 Secondary Carnivore
## 9180          6.68511160        6.849625561 Secondary Carnivore
## 9181          5.30230939        6.670778349  Tertiary Carnivore
## 9182          4.50733683        2.387053327 Secondary Carnivore
## 9183          3.12236492        2.891851822 Secondary Carnivore
## 9184          6.72623340        6.942696930  Tertiary Carnivore
## 9185          1.04027671        0.116104790 Secondary Carnivore
## 9186          2.71469474        1.886232978 Secondary Carnivore
## 9187          1.30291275        0.490146528 Secondary Carnivore
## 9188          3.81771233        0.735932630 Secondary Carnivore
## 9189          2.84490938        4.259772081 Secondary Carnivore
## 9190          1.67147330        0.004578480   Primary Carnivore
## 9191          1.32441896        2.122440181 Secondary Carnivore
## 9192          1.66770682        0.490146528  Tertiary Carnivore
## 9193          1.69561561        0.009889753 Secondary Carnivore
## 9194          7.38634693        7.288251436 Secondary Carnivore
## 9195          1.45861502        0.223982763 Secondary Carnivore
## 9196          3.55820113        2.404044412 Secondary Carnivore
## 9197          3.95871573        3.473231162 Secondary Carnivore
## 9198          1.22377543        0.878396534   Primary Carnivore
## 9199          3.91800508        3.146907198  Tertiary Carnivore
## 9200          2.80336038        1.168798094 Secondary Carnivore
## 9201          1.79175947        0.878396534   Primary Carnivore
## 9202          1.75785792        0.223982763 Secondary Carnivore
## 9203          3.45568557        0.749689812   Primary Carnivore
## 9204          3.68250921        3.873611973 Secondary Carnivore
## 9205          1.42310833        1.454402431 Secondary Carnivore
## 9206          5.73979291        2.153233085   Primary Carnivore
## 9207          3.08190997        0.002059853 Secondary Carnivore
## 9208          3.23474917        1.886232978 Secondary Carnivore
## 9209          5.08140436        6.670778349   Primary Carnivore
## 9210          1.04027671        0.116104790 Secondary Carnivore
## 9211          3.91202301        0.004578480  Tertiary Carnivore
## 9212          3.92197334        6.670778349   Primary Carnivore
## 9213          2.33505228        1.886232978 Secondary Carnivore
## 9214          7.83391713        6.670778349 Secondary Carnivore
## 9215          4.52601875        2.138914945  Tertiary Carnivore
## 9216          4.56076888        1.432814265 Secondary Carnivore
## 9217          3.57632647        0.470853119 Secondary Carnivore
## 9218          2.94968834        1.307030142 Secondary Carnivore
## 9219          7.17142638        6.670778349 Secondary Carnivore
## 9220          2.37954613        0.490146528  Tertiary Carnivore
## 9221          1.80500470        1.886232978 Secondary Carnivore
## 9222          2.12584791        3.515099295 Secondary Carnivore
## 9223          4.80541352        4.094232049 Secondary Carnivore
## 9224          1.68639895        0.130455954 Secondary Carnivore
## 9225          6.91214563        6.670778349 Secondary Carnivore
## 9226          5.57473625        3.473231162   Primary Carnivore
## 9227          7.21604848        6.849625561 Secondary Carnivore
## 9228          2.43562887        2.853935439 Secondary Carnivore
## 9229          2.07693841        0.735932630 Secondary Carnivore
## 9230          1.28093385        0.130455954  Tertiary Carnivore
## 9231          1.41342303        0.413477448 Secondary Carnivore
## 9232          4.26310232        2.433189939  Tertiary Carnivore
## 9233          7.68959991        6.849625561 Secondary Carnivore
## 9234          4.26267988        7.288251436   Primary Carnivore
## 9235          3.49650756        1.168798094 Secondary Carnivore
## 9236          4.00551335        3.146907198 Secondary Carnivore
## 9237          4.20916024        1.886232978   Primary Carnivore
## 9238          7.83241093        6.942696930 Secondary Carnivore
## 9239          4.53646299        3.146907198 Secondary Carnivore
## 9240          8.53210151        6.849625561 Secondary Carnivore
## 9241          1.33500107        0.015041422 Secondary Carnivore
## 9242          2.82731362        0.002344505 Secondary Carnivore
## 9243          4.70048037        6.670778349 Secondary Carnivore
## 9244          4.35388433        1.168798094 Secondary Carnivore
## 9245          4.61541750        3.473231162  Tertiary Carnivore
## 9246          1.42069579        0.214753881 Secondary Carnivore
## 9247          1.06471074        0.305596011  Tertiary Carnivore
## 9248          5.16478597        7.288251436 Secondary Carnivore
## 9249          0.00000000        0.004578480 Secondary Carnivore
## 9250          1.09192330        1.180964506 Secondary Carnivore
## 9251          0.47000363        0.147199990 Secondary Carnivore
## 9252          0.00000000        0.004578480   Primary Carnivore
## 9253          5.39816270        7.288251436  Tertiary Carnivore
## 9254          1.19392247        1.670180746   Primary Carnivore
## 9255          5.50938834        4.094232049  Tertiary Carnivore
## 9256          1.77495235        0.490146528  Tertiary Carnivore
## 9257          3.23474917        1.670180746   Primary Carnivore
## 9258          3.06339092        0.735932630 Secondary Carnivore
## 9259          3.71843826        2.387053327 Secondary Carnivore
## 9260          1.67147330        0.856029167  Tertiary Carnivore
## 9261          4.98360662        6.849625561   Primary Carnivore
## 9262          0.00000000        0.147199990 Secondary Carnivore
## 9263          1.79175947        0.223982763 Secondary Carnivore
## 9264          1.49290410        0.823328714 Secondary Carnivore
## 9265          2.94443898        0.757060688 Secondary Carnivore
## 9266          2.60268969        0.009889753   Primary Carnivore
## 9267          1.69708242        2.122440181 Secondary Carnivore
## 9268          3.43398720        0.002344505 Secondary Carnivore
## 9269          4.80745776        1.168798094   Primary Carnivore
## 9270          1.60140574        0.281204828 Secondary Carnivore
## 9271          4.56954301        6.849625561 Secondary Carnivore
## 9272          1.85629799        0.002059853 Secondary Carnivore
## 9273          2.52652832        0.015041422   Primary Carnivore
## 9274          2.16332303        0.223982763 Secondary Carnivore
## 9275          1.66770682        2.894695819 Secondary Carnivore
## 9276          4.47960696        6.849625561 Secondary Carnivore
## 9277          0.00000000        0.015041422   Primary Carnivore
## 9278          4.85203026        6.942696930 Secondary Carnivore
## 9279          5.02388052        4.094232049   Primary Carnivore
## 9280          1.85848310        0.900183757   Primary Carnivore
## 9281          6.44730586        7.288251436 Secondary Carnivore
## 9282          0.00000000        1.315195554   Primary Carnivore
## 9283          4.79579055        7.288251436   Primary Carnivore
## 9284          2.86789890        2.387053327 Secondary Carnivore
## 9285          3.15700042        2.387053327 Secondary Carnivore
## 9286          1.09192330        0.211247175 Secondary Carnivore
## 9287          1.82454929        0.063185562 Secondary Carnivore
## 9288          1.02961942        2.894695819   Primary Carnivore
## 9289          4.59208495        2.387053327 Secondary Carnivore
## 9290          3.91657264        4.232513096   Primary Carnivore
## 9291          1.76644166        4.047182371 Secondary Carnivore
## 9292          2.74071098        3.873611973 Secondary Carnivore
## 9293          0.99325177        0.878396534   Primary Carnivore
## 9294          3.26956894        2.894695819   Primary Carnivore
## 9295          3.01944880        2.853935439 Secondary Carnivore
## 9296          7.72832775        6.670778349 Secondary Carnivore
## 9297          1.12167756        0.015041422   Primary Carnivore
## 9298          1.08180517        0.211247175 Secondary Carnivore
## 9299          0.83290912        0.470853119  Tertiary Carnivore
## 9300          4.12713439        0.004578480  Tertiary Carnivore
## 9301          0.00000000        1.126655451   Primary Carnivore
## 9302          3.58629287        6.670778349   Primary Carnivore
## 9303          0.01064316        0.305596011  Tertiary Carnivore
## 9304          1.38629436        0.020024930  Tertiary Carnivore
## 9305          1.24126859        0.561550440 Secondary Carnivore
## 9306          5.48188814        6.670778349 Secondary Carnivore
## 9307          7.34018684        6.942696930  Tertiary Carnivore
## 9308          1.32972401        0.015041422  Tertiary Carnivore
## 9309          6.06092531        2.610718759 Secondary Carnivore
## 9310          7.88615659        6.670778349 Secondary Carnivore
## 9311          4.25844557        0.002059853 Secondary Carnivore
## 9312          8.12346889        7.288251436 Secondary Carnivore
## 9313          1.14740245        0.015041422 Secondary Carnivore
## 9314          6.83936937        6.849625561 Secondary Carnivore
## 9315          6.41345896        4.094232049 Secondary Carnivore
## 9316          3.92395158        2.277308093   Primary Carnivore
## 9317          3.54673969        6.670778349 Secondary Carnivore
## 9318          3.56953270        2.387053327 Secondary Carnivore
## 9319          0.00000000        0.130455954 Secondary Carnivore
## 9320          4.41642806        6.670778349 Secondary Carnivore
## 9321          3.21112587        3.651616415 Secondary Carnivore
## 9322          3.01553490        0.015041422  Tertiary Carnivore
## 9323          4.29959566        2.153233085   Primary Carnivore
## 9324          4.83628191        6.849625561 Secondary Carnivore
## 9325          4.24769492        3.873611973 Secondary Carnivore
## 9326          3.91921707        1.506685742 Secondary Carnivore
## 9327          0.26236426        2.024989105   Primary Carnivore
## 9328          1.40609699        0.305596011  Tertiary Carnivore
## 9329          0.00000000        1.459857720   Primary Carnivore
## 9330          5.14166356        7.288251436  Tertiary Carnivore
## 9331          3.28057281        2.433189939 Secondary Carnivore
## 9332          4.45781801        7.288251436   Primary Carnivore
## 9333          4.27527626        6.670778349   Primary Carnivore
## 9334          7.52736356        7.288251436 Secondary Carnivore
## 9335          4.23555473        4.094232049 Secondary Carnivore
## 9336          0.02078254        1.180964506 Secondary Carnivore
## 9337          0.85441533        2.153233085           Herbivore
## 9338          0.00000000        0.130455954 Secondary Carnivore
## 9339          1.99877364        0.015041422  Tertiary Carnivore
## 9340          0.00000000        3.146907198   Primary Carnivore
## 9341          7.95384545        6.849625561 Secondary Carnivore
## 9342          2.64617480        0.305596011  Tertiary Carnivore
## 9343          3.12236492        3.038160131 Secondary Carnivore
## 9344          0.00000000        0.340191127   Primary Carnivore
## 9345          4.41558229        3.943759073 Secondary Carnivore
## 9346          3.70179568        0.735932630   Primary Carnivore
## 9347          4.56017282        3.146907198 Secondary Carnivore
## 9348          2.13416644        1.742111989 Secondary Carnivore
## 9349          6.77445243        6.670778349 Secondary Carnivore
## 9350          2.54160199        2.050338578   Primary Carnivore
## 9351          2.08815348        0.009889753           Herbivore
## 9352          2.89668512        2.136925014 Secondary Carnivore
## 9353          2.10413415        1.886232978 Secondary Carnivore
## 9354          4.71573613        3.304296954 Secondary Carnivore
## 9355          7.34665516        7.288251436 Secondary Carnivore
## 9356          5.22810947        1.168798094   Primary Carnivore
## 9357          2.21920348        0.223982763 Secondary Carnivore
## 9358          2.79116511        1.886232978   Primary Carnivore
## 9359          2.56240767        2.075946520   Primary Carnivore
## 9360          2.84490938        3.473231162  Tertiary Carnivore
## 9361          1.52388002        1.532760019 Secondary Carnivore
## 9362          3.63663834        3.651616415   Primary Carnivore
## 9363          2.36368019        0.015041422   Primary Carnivore
## 9364          3.92789635        6.849625561   Primary Carnivore
## 9365          2.91695959        2.433189939 Secondary Carnivore
## 9366          6.52590904        6.670778349 Secondary Carnivore
## 9367          2.45958884        0.015041422   Primary Carnivore
## 9368          2.59525471        3.473231162 Secondary Carnivore
## 9369          7.61386804        6.670778349 Secondary Carnivore
## 9370          2.27212589        1.532760019   Primary Carnivore
## 9371          3.68637632        2.153233085 Secondary Carnivore
## 9372          0.00000000        0.211247175 Secondary Carnivore
## 9373          3.33932198        2.404044412 Secondary Carnivore
## 9374          1.90389697        0.211247175 Secondary Carnivore
## 9375          3.25424297        3.515099295 Secondary Carnivore
## 9376          2.98568194        4.121930401   Primary Carnivore
## 9377          2.82137889        2.153233085 Secondary Carnivore
## 9378          3.15700042        1.168798094 Secondary Carnivore
## 9379          5.61312811        6.849625561   Primary Carnivore
## 9380          3.23080440        2.241290896   Primary Carnivore
## 9381          2.05412373        0.856029167 Secondary Carnivore
## 9382          2.47653840        0.885298676  Tertiary Carnivore
## 9383          3.24259235        0.749689812   Primary Carnivore
## 9384          3.23867845        3.146907198 Secondary Carnivore
## 9385          2.27829240        2.387053327  Tertiary Carnivore
## 9386          5.44570235        1.168798094   Primary Carnivore
## 9387          5.77455155        6.942696930  Tertiary Carnivore
## 9388          4.57367952        4.094232049 Secondary Carnivore
## 9389          6.28897318        6.670778349 Secondary Carnivore
## 9390          4.86375810        1.673740129   Primary Carnivore
## 9391          2.81367068        2.891851822  Tertiary Carnivore
## 9392          0.00000000        0.002344505 Secondary Carnivore
## 9393          1.20297230        0.015041422   Primary Carnivore
## 9394          2.83749827        2.853935439 Secondary Carnivore
## 9395          7.05142263        6.670778349 Secondary Carnivore
## 9396          3.25037449        0.020024930   Primary Carnivore
## 9397          1.00063188        1.711701702 Secondary Carnivore
## 9398          7.78130551        6.670778349 Secondary Carnivore
## 9399          7.82043952        7.288251436 Secondary Carnivore
## 9400          8.06495089        4.094232049 Secondary Carnivore
## 9401          0.79750720        0.413477448 Secondary Carnivore
## 9402          0.00000000        1.673740129           Herbivore
## 9403          4.51085951        7.288251436 Secondary Carnivore
## 9404          2.25023861        0.214753881 Secondary Carnivore
## 9405          2.82137889        0.009889753   Primary Carnivore
## 9406          8.50329709        7.288251436 Secondary Carnivore
## 9407          4.58598737        4.094232049 Secondary Carnivore
## 9408          3.79098468        1.168798094 Secondary Carnivore
## 9409          0.00000000        0.015041422   Primary Carnivore
## 9410          2.54944517        0.015041422  Tertiary Carnivore
## 9411          5.52146092        6.942696930 Secondary Carnivore
## 9412          2.94443898        2.894695819   Primary Carnivore
## 9413          1.62136648        1.180964506  Tertiary Carnivore
## 9414          3.72810017        1.673740129 Secondary Carnivore
## 9415          3.66612247        6.849625561 Secondary Carnivore
## 9416          0.83290912        0.147199990  Tertiary Carnivore
## 9417          1.66203036        0.009889753  Tertiary Carnivore
## 9418          4.30000280        6.849625561 Secondary Carnivore
## 9419          1.69009582        0.015041422 Secondary Carnivore
## 9420          3.88362353        6.849625561   Primary Carnivore
## 9421          2.54944517        0.044241443   Primary Carnivore
## 9422          0.63180355        4.047182371   Primary Carnivore
## 9423          3.87120101        1.673740129 Secondary Carnivore
## 9424          3.59731226        2.153233085 Secondary Carnivore
## 9425          4.66343909        6.849625561 Secondary Carnivore
## 9426          5.57215403        4.259772081   Primary Carnivore
## 9427          1.27256560        0.823328714 Secondary Carnivore
## 9428          0.82855182        1.877421323 Secondary Carnivore
## 9429          6.11146734        7.288251436   Primary Carnivore
## 9430          0.00000000        0.116104790 Secondary Carnivore
## 9431          4.98360662        4.094232049   Primary Carnivore
## 9432          4.46579317        3.473231162   Primary Carnivore
## 9433          5.35185813        7.288251436  Tertiary Carnivore
## 9434          1.99741771        0.490146528  Tertiary Carnivore
## 9435          3.81683282        2.153233085 Secondary Carnivore
## 9436          0.30748470        0.211247175  Tertiary Carnivore
## 9437          6.27795841        6.670778349 Secondary Carnivore
## 9438          1.22671229        0.305596011  Tertiary Carnivore
## 9439          0.69314718        0.470853119  Tertiary Carnivore
## 9440          2.91158951        1.962719022 Secondary Carnivore
## 9441          3.93573953        1.168798094 Secondary Carnivore
## 9442          2.77819796        0.015041422   Primary Carnivore
## 9443          4.29728541        4.094232049 Secondary Carnivore
## 9444          0.00000000        0.009889753  Tertiary Carnivore
## 9445          7.22875123        6.670778349 Secondary Carnivore
## 9446          5.55902642        1.168798094   Primary Carnivore
## 9447          7.02028007        6.670778349 Secondary Carnivore
## 9448          2.37861978        2.387053327 Secondary Carnivore
## 9449          4.48863637        6.670778349 Secondary Carnivore
## 9450          0.78845736        0.130455954 Secondary Carnivore
## 9451          0.40546511        2.894695819   Primary Carnivore
## 9452          7.34665516        7.288251436 Secondary Carnivore
## 9453          0.00000000        1.459857720   Primary Carnivore
## 9454          0.00000000        0.002344505 Secondary Carnivore
## 9455          4.92308559        7.288251436 Secondary Carnivore
## 9456          3.36729583        1.168798094 Secondary Carnivore
## 9457          1.78170913        0.856029167   Primary Carnivore
## 9458          6.08904488        7.288251436 Secondary Carnivore
## 9459          2.16676537        0.015041422  Tertiary Carnivore
## 9460          3.75560309        6.942696930 Secondary Carnivore
## 9461          0.83290912        4.262479896 Secondary Carnivore
## 9462          1.05779029        2.122440181 Secondary Carnivore
## 9463          4.51085951        7.288251436 Secondary Carnivore
## 9464          1.93152141        0.490146528 Secondary Carnivore
## 9465          2.03339760        1.742111989 Secondary Carnivore
## 9466          3.68135119        2.387053327 Secondary Carnivore
## 9467          2.56510319        2.254856321   Primary Carnivore
## 9468          5.64897424        4.259772081 Secondary Carnivore
## 9469          3.51868408        1.886232978 Secondary Carnivore
## 9470          2.54944517        0.281204828 Secondary Carnivore
## 9471          5.89715387        6.942696930  Tertiary Carnivore
## 9472          2.61739583        1.742111989 Secondary Carnivore
## 9473          2.24191003        6.670778349 Secondary Carnivore
## 9474          7.47363711        7.288251436 Secondary Carnivore
## 9475          1.96571278        0.856029167 Secondary Carnivore
## 9476          0.40546511        0.063185562 Secondary Carnivore
## 9477          6.19031541        6.942696930  Tertiary Carnivore
## 9478          2.28033948        1.532760019   Primary Carnivore
## 9479          2.13947776        4.047182371 Secondary Carnivore
## 9480          3.49650756        3.146907198 Secondary Carnivore
## 9481          0.53062825        0.130455954  Tertiary Carnivore
## 9482          3.95316495        6.670778349 Secondary Carnivore
## 9483          3.73050113        6.670778349 Secondary Carnivore
## 9484          3.05870707        3.038160131 Secondary Carnivore
## 9485          8.44080878        6.849625561 Secondary Carnivore
## 9486          2.32630162        2.845177164 Secondary Carnivore
## 9487          1.48160454        0.130455954 Secondary Carnivore
## 9488          3.57234564        3.168005566 Secondary Carnivore
## 9489          6.59441346        7.288251436  Tertiary Carnivore
## 9490          4.60616969        4.259772081  Tertiary Carnivore
## 9491          1.54756251        0.015041422 Secondary Carnivore
## 9492          4.22537282        1.168798094 Secondary Carnivore
## 9493          0.00000000        0.470853119  Tertiary Carnivore
## 9494          2.98061864        2.387053327 Secondary Carnivore
## 9495          3.76352300        1.168798094 Secondary Carnivore
## 9496          3.19179236        1.540263127 Secondary Carnivore
## 9497          4.01096295        6.670778349 Secondary Carnivore
## 9498          5.11198779        4.094232049  Tertiary Carnivore
## 9499          1.16315081        1.126655451   Primary Carnivore
## 9500          1.19392247        0.211247175 Secondary Carnivore
## 9501          7.39079852        7.288251436 Secondary Carnivore
## 9502          4.66861436        2.153233085 Secondary Carnivore
## 9503          1.54756251        0.009889753  Tertiary Carnivore
## 9504          6.06610809        7.288251436  Tertiary Carnivore
## 9505          4.04480412        6.942696930  Tertiary Carnivore
## 9506          4.98561830        3.304296954   Primary Carnivore
## 9507          6.77502357        6.849625561 Secondary Carnivore
## 9508          4.62497281        3.168005566 Secondary Carnivore
## 9509          2.58021683        1.532760019   Primary Carnivore
## 9510          4.98360662        4.094232049   Primary Carnivore
## 9511          2.63905733        2.153233085 Secondary Carnivore
## 9512          5.22035583        3.146907198 Secondary Carnivore
## 9513          7.13297667        6.670778349 Secondary Carnivore
## 9514          2.58776404        0.757060688 Secondary Carnivore
## 9515          2.11709853        3.515099295 Secondary Carnivore
## 9516          2.36837283        0.735932630 Secondary Carnivore
## 9517          4.18813844        6.849625561  Tertiary Carnivore
## 9518          0.00000000        0.004578480 Secondary Carnivore
## 9519          3.41444261        1.742111989 Secondary Carnivore
## 9520          5.13603370        1.673740129 Secondary Carnivore
## 9521          1.80664808        0.116104790 Secondary Carnivore
## 9522          3.39114705        1.670180746 Secondary Carnivore
## 9523          1.30019166        2.845177164 Secondary Carnivore
## 9524          3.13113691        4.259772081 Secondary Carnivore
## 9525          2.64326276        0.490146528 Secondary Carnivore
## 9526          0.00000000        0.015041422 Secondary Carnivore
## 9527          4.08260931        6.670778349 Secondary Carnivore
## 9528          5.02388052        6.942696930 Secondary Carnivore
## 9529          1.04027671        0.885298676 Secondary Carnivore
## 9530          3.94931879        7.161415474 Secondary Carnivore
## 9531          0.00000000        0.002059853 Secondary Carnivore
## 9532          2.14943391        0.735932630 Secondary Carnivore
## 9533          7.29369772        7.288251436 Secondary Carnivore
## 9534          1.53686722        0.015041422  Tertiary Carnivore
## 9535          0.00000000        0.147199990 Secondary Carnivore
## 9536          2.11142459        0.900183757 Secondary Carnivore
## 9537          1.82454929        0.490146528  Tertiary Carnivore
## 9538          0.83290912        1.831515834 Secondary Carnivore
## 9539          4.75780543        4.094232049 Secondary Carnivore
## 9540          2.74084002        1.886232978 Secondary Carnivore
## 9541          6.03954017        1.886232978 Secondary Carnivore
## 9542          0.17395331        1.532760019  Tertiary Carnivore
## 9543          3.28091122        3.146907198 Secondary Carnivore
## 9544          5.35185813        7.288251436  Tertiary Carnivore
## 9545          0.00000000        2.404044412           Herbivore
## 9546          1.19392247        0.147199990 Secondary Carnivore
## 9547          4.44968528        1.168798094  Tertiary Carnivore
## 9548          4.82807371        1.673740129   Primary Carnivore
## 9549          0.00000000        1.877421323 Secondary Carnivore
## 9550          7.68303529        6.849625561 Secondary Carnivore
## 9551          1.85207032        0.211247175 Secondary Carnivore
## 9552          0.19885086        0.305596011 Secondary Carnivore
## 9553          1.65822808        0.885298676  Tertiary Carnivore
## 9554          1.84292776        1.962719022 Secondary Carnivore
## 9555          2.58021683        2.136925014 Secondary Carnivore
## 9556          5.77299754        1.886232978   Primary Carnivore
## 9557          4.45771372        1.886232978   Primary Carnivore
## 9558          2.77102500        1.962719022  Tertiary Carnivore
## 9559          3.94352167        3.146907198  Tertiary Carnivore
## 9560          2.95491028        2.472143654   Primary Carnivore
## 9561          7.98214318        6.849625561 Secondary Carnivore
## 9562          4.79892612        2.387053327   Primary Carnivore
## 9563          0.92821930        6.942696930           Herbivore
## 9564          7.83494639        6.670778349 Secondary Carnivore
## 9565          7.03341830        6.670778349 Secondary Carnivore
## 9566          1.32175584        2.254856321 Secondary Carnivore
## 9567          6.78649119        6.670778349  Tertiary Carnivore
## 9568          0.00000000        1.670180746   Primary Carnivore
## 9569          0.00000000        2.404044412           Herbivore
## 9570          5.90511659        1.886232978   Primary Carnivore
## 9571          4.61485315        1.432814265 Secondary Carnivore
## 9572          4.22753423        1.506685742   Primary Carnivore
## 9573          7.39184671        7.288251436 Secondary Carnivore
## 9574          1.28923265        0.856029167 Secondary Carnivore
## 9575          1.51292701        0.015041422 Secondary Carnivore
## 9576          0.97455964        0.305596011  Tertiary Carnivore
## 9577          7.97968130        7.288251436 Secondary Carnivore
## 9578          1.18784342        0.561550440 Secondary Carnivore
## 9579          4.06355884        2.138914945 Secondary Carnivore
## 9580          3.19043520        2.610718759 Secondary Carnivore
## 9581          1.76985463        0.015041422  Tertiary Carnivore
## 9582          5.38587026        0.004578480  Tertiary Carnivore
## 9583          1.32441896        4.047182371 Secondary Carnivore
## 9584          0.83290912        5.169038067   Primary Carnivore
## 9585          2.56617937        1.962719022 Secondary Carnivore
## 9586          2.17815501        2.845177164 Secondary Carnivore
## 9587          4.96284463        6.670778349  Tertiary Carnivore
## 9588          2.16217294        0.009889753   Primary Carnivore
## 9589          0.90421815        0.305596011  Tertiary Carnivore
## 9590          0.00000000        1.886232978           Herbivore
## 9591          1.34547237        0.856029167 Secondary Carnivore
## 9592          0.00000000        0.004578480  Tertiary Carnivore
## 9593          3.57660621        1.432814265  Tertiary Carnivore
## 9594          0.43048287        0.856029167  Tertiary Carnivore
## 9595          7.98132323        6.670778349 Secondary Carnivore
## 9596          3.66867675        0.749689812   Primary Carnivore
## 9597          1.19392247        1.532760019  Tertiary Carnivore
## 9598          4.18801704        3.651616415   Primary Carnivore
## 9599          1.44926916        1.251683108 Secondary Carnivore
## 9600          4.50534985        4.094232049  Tertiary Carnivore
## 9601          2.44633906        0.470853119 Secondary Carnivore
## 9602          4.34510328        6.670778349 Secondary Carnivore
## 9603          4.84418709        3.146907198 Secondary Carnivore
## 9604          1.49962305        0.561550440 Secondary Carnivore
## 9605          6.67997600        6.670778349 Secondary Carnivore
## 9606          2.11384297        0.009889753 Secondary Carnivore
## 9607          3.50453585        3.873611973  Tertiary Carnivore
## 9608          8.49631679        6.849625561 Secondary Carnivore
## 9609          5.86646806        2.153233085  Tertiary Carnivore
## 9610          0.37156356        0.130455954 Secondary Carnivore
## 9611          0.00000000        1.981883583   Primary Carnivore
## 9612          4.31348009        4.259772081 Secondary Carnivore
## 9613          2.82137889        1.168798094 Secondary Carnivore
## 9614          2.65324196        0.002344505 Secondary Carnivore
## 9615          3.85014760        6.849625561 Secondary Carnivore
## 9616          3.86157146        0.015041422 Secondary Carnivore
## 9617          3.26575941        2.387053327 Secondary Carnivore
## 9618          4.62497281        4.259772081 Secondary Carnivore
## 9619          2.94443898        0.004578480  Tertiary Carnivore
## 9620          4.39444915        7.288251436 Secondary Carnivore
## 9621          0.99325177        0.130455954  Tertiary Carnivore
## 9622          4.00369019        1.307030142 Secondary Carnivore
## 9623          0.53999600        0.413477448  Tertiary Carnivore
## 9624          0.26236426        1.920179330   Primary Carnivore
## 9625          3.30310667        1.506685742 Secondary Carnivore
## 9626          0.00000000        0.130455954 Secondary Carnivore
## 9627          4.21331208        1.886232978 Secondary Carnivore
## 9628          5.75574221        1.168798094 Secondary Carnivore
## 9629          1.56024767        0.009889753   Primary Carnivore
## 9630          2.02683159        0.885298676  Tertiary Carnivore
## 9631          4.75531284        3.943759073 Secondary Carnivore
## 9632          4.99767163        4.232513096 Secondary Carnivore
## 9633          2.22354189        0.015041422 Secondary Carnivore
## 9634          3.26575941        5.169038067   Primary Carnivore
## 9635          1.71918878        0.856029167   Primary Carnivore
## 9636          1.13462273        2.136925014 Secondary Carnivore
## 9637          0.58778666        0.147199990 Secondary Carnivore
## 9638          1.84150156        1.711701702  Tertiary Carnivore
## 9639          2.97041447        2.387053327 Secondary Carnivore
## 9640          0.00000000        0.002344505 Secondary Carnivore
## 9641          0.00000000        2.404044412           Herbivore
## 9642          2.77258872        0.116104790 Secondary Carnivore
## 9643          1.85629799        0.490146528  Tertiary Carnivore
## 9644          4.59410924        3.168005566 Secondary Carnivore
## 9645          5.56452041        7.288251436  Tertiary Carnivore
## 9646          8.05360097        6.670778349 Secondary Carnivore
## 9647          3.24649099        1.307030142 Secondary Carnivore
## 9648          1.70292826        0.015041422 Secondary Carnivore
## 9649          3.88752537        0.749689812   Primary Carnivore
## 9650          0.00000000        0.015041422  Tertiary Carnivore
## 9651          5.18178355        6.849625561 Secondary Carnivore
## 9652          2.40865536        1.540263127 Secondary Carnivore
## 9653          2.90690106        3.515099295 Secondary Carnivore
## 9654          2.61739583        0.757060688  Tertiary Carnivore
## 9655          2.52572864        0.735932630 Secondary Carnivore
## 9656          3.36037539        2.891851822  Tertiary Carnivore
## 9657          3.35340672        5.169038067   Primary Carnivore
## 9658          0.00000000        1.886232978           Herbivore
## 9659          1.98787435        2.241290896   Primary Carnivore
## 9660          2.68852753        3.226603994 Secondary Carnivore
## 9661          2.58776404        2.136925014 Secondary Carnivore
## 9662          1.35325451        2.404044412 Secondary Carnivore
## 9663          4.70953020        7.288251436 Secondary Carnivore
## 9664          7.35212054        6.849625561 Secondary Carnivore
## 9665          2.56494936        1.315195554 Secondary Carnivore
## 9666          5.81889528        6.849625561 Secondary Carnivore
## 9667          1.79275897        0.116104790 Secondary Carnivore
## 9668          1.62924054        0.147199990 Secondary Carnivore
## 9669          7.75022723        6.670778349 Secondary Carnivore
## 9670          3.79773386        4.094232049 Secondary Carnivore
## 9671          0.95551145        0.490146528  Tertiary Carnivore
## 9672          1.53255687        2.075946520 Secondary Carnivore
## 9673          5.14813381        1.886232978   Primary Carnivore
## 9674          0.00000000        1.886232978           Herbivore
## 9675          0.33647224        2.894695819   Primary Carnivore
## 9676          3.28578653        0.015041422 Secondary Carnivore
## 9677          2.29253476        1.315195554   Primary Carnivore
## 9678          7.29715875        6.849625561 Secondary Carnivore
## 9679          0.26236426        2.024989105   Primary Carnivore
## 9680          0.68813464        1.251683108 Secondary Carnivore
## 9681          1.02961942        0.470853119  Tertiary Carnivore
## 9682          1.26976054        1.180964506 Secondary Carnivore
## 9683          4.04305127        6.670778349  Tertiary Carnivore
## 9684          3.96840334        2.050338578   Primary Carnivore
## 9685          5.72227706        6.849625561 Secondary Carnivore
## 9686          4.79579055        7.288251436 Secondary Carnivore
## 9687          7.40482675        6.670778349 Secondary Carnivore
## 9688          0.78845736        7.161415474   Primary Carnivore
## 9689          5.57215403        4.259772081   Primary Carnivore
## 9690          3.51452607        1.886232978 Secondary Carnivore
## 9691          1.87640694        0.885298676  Tertiary Carnivore
## 9692          2.63905733        0.002059853 Secondary Carnivore
## 9693          0.00000000        2.894695819   Primary Carnivore
## 9694          3.40452517        1.886232978 Secondary Carnivore
## 9695          0.00000000        0.002059853 Secondary Carnivore
## 9696          2.24918432        0.009889753   Primary Carnivore
## 9697          1.66392610        0.211247175 Secondary Carnivore
## 9698          0.06765865        0.305596011 Secondary Carnivore
## 9699          2.27212589        1.670180746 Secondary Carnivore
## 9700          2.77881927        0.885298676  Tertiary Carnivore
## 9701          6.58340922        4.259772081  Tertiary Carnivore
## 9702          0.00000000        1.670180746   Primary Carnivore
## 9703          1.45161383        1.532760019 Secondary Carnivore
## 9704          1.99333884        1.307030142 Secondary Carnivore
## 9705          0.00000000        0.002059853 Secondary Carnivore
## 9706          2.04122033        0.063185562 Secondary Carnivore
## 9707          2.23537634        0.015041422 Secondary Carnivore
## 9708          2.58021683        2.891851822 Secondary Carnivore
## 9709          4.25134831        1.168798094 Secondary Carnivore
## 9710          0.00000000        2.404044412           Herbivore
## 9711          1.47476301        0.900183757 Secondary Carnivore
## 9712          6.77490937        6.849625561 Secondary Carnivore
## 9713          3.42816383        0.015041422   Primary Carnivore
## 9714          1.61541998        0.009889753  Tertiary Carnivore
## 9715          6.90505163        6.849625561 Secondary Carnivore
## 9716          1.66770682        0.002344505 Secondary Carnivore
## 9717          3.03013370        3.146907198 Secondary Carnivore
## 9718          1.81156210        0.211247175 Secondary Carnivore
## 9719          1.01884732        0.223982763 Secondary Carnivore
## 9720          1.51072194        0.015041422  Tertiary Carnivore
## 9721          5.68357977        4.094232049  Tertiary Carnivore
## 9722          4.79579055        7.288251436 Secondary Carnivore
## 9723          1.19996478        0.015041422  Tertiary Carnivore
## 9724          7.45066080        7.288251436 Secondary Carnivore
## 9725          2.47863704        1.711701702   Primary Carnivore
## 9726          1.31640823        0.214753881 Secondary Carnivore
## 9727          6.08677473        4.094232049 Secondary Carnivore
## 9728          3.51443678        2.610718759 Secondary Carnivore
## 9729          2.92316158        3.473231162 Secondary Carnivore
## 9730          1.77495235        0.002344505 Secondary Carnivore
## 9731          0.00000000        1.877421323 Secondary Carnivore
## 9732          2.32727771        0.009889753           Herbivore
## 9733          1.43983513        0.305596011  Tertiary Carnivore
## 9734          5.21553341        0.735932630   Primary Carnivore
## 9735          4.19166787        2.433189939 Secondary Carnivore
## 9736          1.47796155        1.711701702  Tertiary Carnivore
## 9737          2.28238239        1.315195554 Secondary Carnivore
## 9738          2.55722731        1.315195554 Secondary Carnivore
## 9739          3.16665579        0.470853119 Secondary Carnivore
## 9740          0.00000000        0.002344505  Tertiary Carnivore
## 9741          2.79116511        0.009889753           Herbivore
## 9742          1.75958057        4.262479896 Secondary Carnivore
## 9743          1.29746315        0.413477448 Secondary Carnivore
## 9744          2.85647021        1.886232978 Secondary Carnivore
## 9745          2.85070650        0.063185562 Secondary Carnivore
## 9746          5.18505908        1.432814265 Secondary Carnivore
## 9747          1.20297230        1.831515834  Tertiary Carnivore
## 9748          3.26956894        1.886232978 Secondary Carnivore
## 9749          3.80443779        6.670778349   Primary Carnivore
## 9750          5.01727984        7.288251436  Tertiary Carnivore
## 9751          3.85227300        6.670778349 Secondary Carnivore
## 9752          3.27222700        0.735932630   Primary Carnivore
## 9753          1.08180517        0.116104790 Secondary Carnivore
## 9754          1.89611948        0.885298676 Secondary Carnivore
## 9755          1.66770682        0.490146528 Secondary Carnivore
## 9756          4.27495632        4.232513096  Tertiary Carnivore
## 9757          5.77827133        6.670778349  Tertiary Carnivore
## 9758          0.00000000        1.673740129           Herbivore
## 9759          1.48387469        0.885298676 Secondary Carnivore
## 9760          3.55820113        2.153233085           Herbivore
## 9761          0.78845736        2.145288428 Secondary Carnivore
## 9762          2.00417906        0.211247175 Secondary Carnivore
## 9763          8.42299240        6.849625561 Secondary Carnivore
## 9764          6.01859321        7.288251436  Tertiary Carnivore
## 9765          0.00000000        0.002059853 Secondary Carnivore
## 9766          1.95727391        0.004578480   Primary Carnivore
## 9767          1.62924054        0.223982763 Secondary Carnivore
## 9768          1.04027671        1.454402431 Secondary Carnivore
## 9769          5.44241771        2.153233085 Secondary Carnivore
## 9770          3.06339092        3.943759073 Secondary Carnivore
## 9771          2.53369681        1.981883583   Primary Carnivore
## 9772          4.09434456        7.288251436 Secondary Carnivore
## 9773          3.28776736        2.433189939  Tertiary Carnivore
## 9774          5.30330491        7.288251436 Secondary Carnivore
## 9775          0.00000000        0.009889753 Secondary Carnivore
## 9776          5.28826703        2.153233085  Tertiary Carnivore
## 9777          0.95551145        0.211247175 Secondary Carnivore
## 9778          1.67335124        0.735932630 Secondary Carnivore
## 9779          2.70136121        3.515099295 Secondary Carnivore
## 9780          1.18172720        2.387053327 Secondary Carnivore
## 9781          2.41126011        1.014024833 Secondary Carnivore
## 9782          2.32238772        0.223982763 Secondary Carnivore
## 9783          7.51261754        6.942696930 Secondary Carnivore
## 9784          0.00000000        0.009889753 Secondary Carnivore
## 9785          2.63905733        0.002059853 Secondary Carnivore
## 9786          0.91629073        0.063185562 Secondary Carnivore
## 9787          3.02456266        2.254856321 Secondary Carnivore
## 9788          1.41098697        0.147199990 Secondary Carnivore
## 9789          3.78940329        0.214753881  Tertiary Carnivore
## 9790          0.83290912        0.130455954 Secondary Carnivore
## 9791          7.62525355        6.849625561 Secondary Carnivore
## 9792          3.34990409        2.387053327   Primary Carnivore
## 9793          4.61512052        7.288251436  Tertiary Carnivore
## 9794          3.55010577        1.540263127 Secondary Carnivore
## 9795          1.24990174        2.241290896   Primary Carnivore
## 9796          7.22329568        7.288251436 Secondary Carnivore
## 9797          4.71849887        3.146907198 Secondary Carnivore
## 9798          3.92296295        2.138914945 Secondary Carnivore
## 9799          3.28091122        1.168798094   Primary Carnivore
## 9800          2.38139627        2.136925014 Secondary Carnivore
## 9801          1.34547237        0.885298676 Secondary Carnivore
## 9802          2.23697934        0.490146528   Primary Carnivore
## 9803          2.91463067        2.136925014 Secondary Carnivore
## 9804          4.30217141        0.002059853 Secondary Carnivore
## 9805          1.13140211        0.470853119  Tertiary Carnivore
## 9806          3.38113072        1.632888289 Secondary Carnivore
## 9807          1.53901545        2.853935439 Secondary Carnivore
## 9808          2.98061864        0.885298676  Tertiary Carnivore
## 9809          1.95868534        0.211247175 Secondary Carnivore
## 9810          1.68639895        7.161415474 Secondary Carnivore
## 9811          3.09557761        0.009889753   Primary Carnivore
## 9812          2.63991411        2.254856321   Primary Carnivore
## 9813          0.00000000        0.305596011 Secondary Carnivore
## 9814          3.36037539        1.168798094 Secondary Carnivore
## 9815          1.59533899        0.413477448 Secondary Carnivore
## 9816          3.56133013        1.886232978 Secondary Carnivore
## 9817          4.65396035        1.168798094 Secondary Carnivore
## 9818          0.00000000        1.459857720   Primary Carnivore
## 9819          7.34968088        6.849625561 Secondary Carnivore
## 9820          4.68213123        6.670778349  Tertiary Carnivore
## 9821          1.31908561        0.004578480   Primary Carnivore
## 9822          8.85237889        7.288251436 Secondary Carnivore
## 9823          0.93216408        4.094232049           Herbivore
## 9824          4.86753445        2.153233085 Secondary Carnivore
## 9825          0.00000000        0.281204828 Secondary Carnivore
## 9826          2.12823171        0.211247175 Secondary Carnivore
## 9827          5.67194775        1.886232978 Secondary Carnivore
## 9828          0.82417544        1.831515834   Primary Carnivore
## 9829          0.63657683        4.259772081           Herbivore
## 9830          6.61069604        6.942696930 Secondary Carnivore
## 9831          3.42426265        3.651616415  Tertiary Carnivore
## 9832          3.73440238        3.943759073 Secondary Carnivore
## 9833          3.66612247        0.749689812   Primary Carnivore
## 9834          2.08193842        0.004578480  Tertiary Carnivore
## 9835          0.00000000        2.145288428 Secondary Carnivore
## 9836          3.77045944        2.050338578   Primary Carnivore
## 9837          8.52734152        7.288251436 Secondary Carnivore
## 9838          3.71571611        2.433189939 Secondary Carnivore
## 9839          3.06339092        0.735932630 Secondary Carnivore
## 9840          2.61520365        3.226603994  Tertiary Carnivore
## 9841          7.20630310        6.849625561 Secondary Carnivore
## 9842          2.83321334        3.146907198 Secondary Carnivore
## 9843          2.80940270        1.420705940 Secondary Carnivore
## 9844          6.99062476        7.288251436 Secondary Carnivore
## 9845          4.47847253        1.168798094 Secondary Carnivore
## 9846          1.68639895        0.116104790 Secondary Carnivore
## 9847          0.00000000        0.009889753           Herbivore
## 9848          2.50470928        1.432814265 Secondary Carnivore
## 9849          6.66134310        6.670778349 Secondary Carnivore
## 9850          0.87546874        0.063185562 Secondary Carnivore
## 9851          3.20453346        2.610718759  Tertiary Carnivore
## 9852          1.08518927        1.180964506  Tertiary Carnivore
## 9853          3.00071982        0.214753881  Tertiary Carnivore
## 9854          2.00552586        1.307030142 Secondary Carnivore
## 9855          1.46325540        4.094232049           Herbivore
## 9856          4.53689135        1.673740129 Secondary Carnivore
## 9857          5.25227343        7.288251436   Primary Carnivore
## 9858          3.03013370        1.670180746   Primary Carnivore
## 9859          5.25017699        3.473231162   Primary Carnivore
## 9860          3.88567903        2.387053327 Secondary Carnivore
## 9861          3.89731538        0.735932630 Secondary Carnivore
## 9862          5.54126355        3.146907198 Secondary Carnivore
## 9863          4.77912349        4.094232049  Tertiary Carnivore
## 9864          1.70402055        0.211247175 Secondary Carnivore
## 9865          2.81540872        0.757060688 Secondary Carnivore
## 9866          7.84998662        6.670778349 Secondary Carnivore
## 9867          0.00000000        0.002344505  Tertiary Carnivore
## 9868          3.94158181        3.168005566 Secondary Carnivore
## 9869          1.73342389        0.015041422 Secondary Carnivore
## 9870          3.49347266        1.168798094 Secondary Carnivore
## 9871          0.26236426        2.107009466   Primary Carnivore
## 9872          0.00000000        2.107009466   Primary Carnivore
## 9873          2.84490938        0.020024930  Tertiary Carnivore
## 9874          0.74193734        2.241290896   Primary Carnivore
## 9875          1.67335124        0.490146528 Secondary Carnivore
## 9876          4.02177387        2.153233085  Tertiary Carnivore
## 9877          4.50976000        6.670778349 Secondary Carnivore
## 9878          4.07414185        3.159561805   Primary Carnivore
## 9879          2.76744803        6.670778349 Secondary Carnivore
## 9880          2.96460274        3.038160131 Secondary Carnivore
## 9881          5.17868888        2.153233085 Secondary Carnivore
## 9882          1.55180880        0.009889753  Tertiary Carnivore
## 9883          1.38629436        0.063185562 Secondary Carnivore
## 9884          4.54648119        3.146907198 Secondary Carnivore
## 9885          2.37024374        0.490146528 Secondary Carnivore
## 9886          0.30748470        4.259772081           Herbivore
## 9887          2.01089500        0.214753881 Secondary Carnivore
## 9888          3.39450839        1.479154529   Primary Carnivore
## 9889          2.68784749        0.757060688   Primary Carnivore
## 9890          2.35801980        3.515099295 Secondary Carnivore
## 9891          3.76584050        0.009889753  Tertiary Carnivore
## 9892          0.81536481        1.251683108 Secondary Carnivore
## 9893          0.00000000        1.886232978           Herbivore
## 9894          1.28923265        0.004578480 Secondary Carnivore
## 9895          2.00512201        2.853935439   Primary Carnivore
## 9896          4.74449725        3.146907198 Secondary Carnivore
## 9897          4.03777421        6.670778349   Primary Carnivore
## 9898          4.71635371        1.168798094 Secondary Carnivore
## 9899          0.36394843        0.413477448  Tertiary Carnivore
## 9900          0.00000000        0.009889753           Herbivore
## 9901          4.94875989        7.288251436 Secondary Carnivore
## 9902          3.99636415        6.670778349 Secondary Carnivore
## 9903          1.15688120        0.004578480   Primary Carnivore
## 9904          3.51452607        1.168798094 Secondary Carnivore
## 9905          8.20305762        7.288251436 Secondary Carnivore
## 9906          0.81668960        1.705681497 Secondary Carnivore
## 9907          2.55567572        0.015041422   Primary Carnivore
## 9908          1.34547237        1.962719022 Secondary Carnivore
## 9909          2.37954613        0.004578480 Secondary Carnivore
## 9910          4.85203026        6.849625561  Tertiary Carnivore
## 9911          0.95165788        1.877421323 Secondary Carnivore
## 9912          4.74701691        0.002059853 Secondary Carnivore
## 9913          0.98954119        0.116104790 Secondary Carnivore
## 9914          7.58054668        6.670778349 Secondary Carnivore
## 9915          3.03013370        2.153233085 Secondary Carnivore
## 9916          6.27476202        7.288251436   Primary Carnivore
## 9917          4.55807858        6.670778349 Secondary Carnivore
## 9918          1.06594239        2.145288428 Secondary Carnivore
## 9919          2.39059597        1.886232978   Primary Carnivore
## 9920          5.50443683        6.942696930 Secondary Carnivore
## 9921          2.01623547        1.886232978   Primary Carnivore
## 9922          1.40609699        2.136925014 Secondary Carnivore
## 9923          0.00000000        2.404044412           Herbivore
## 9924          4.99043259        6.670778349 Secondary Carnivore
## 9925          3.44998755        1.886232978 Secondary Carnivore
## 9926          1.74221902        1.831515834 Secondary Carnivore
## 9927          0.83290912        1.315195554   Primary Carnivore
## 9928          2.67414865        1.168798094 Secondary Carnivore
## 9929          3.39785848        2.153233085 Secondary Carnivore
## 9930          3.76537743        1.886232978   Primary Carnivore
## 9931          0.53062825        2.472143654   Primary Carnivore
## 9932          3.68145194        1.014024833 Secondary Carnivore
## 9933          7.71020519        7.288251436 Secondary Carnivore
## 9934          2.18941639        1.532760019   Primary Carnivore
## 9935          1.82454929        3.226603994  Tertiary Carnivore
## 9936          1.79342475        4.047182371  Tertiary Carnivore
## 9937          6.29876541        6.849625561 Secondary Carnivore
## 9938          2.60172626        0.470853119  Tertiary Carnivore
## 9939          0.40879290        2.891851822 Secondary Carnivore
## 9940          0.00000000        0.009889753  Tertiary Carnivore
## 9941          2.70951579        1.540263127 Secondary Carnivore
## 9942          1.67147330        0.015041422   Primary Carnivore
## 9943          5.30330491        4.259772081 Secondary Carnivore
## 9944          3.64021428        1.070822001   Primary Carnivore
## 9945          1.89069942        2.075946520 Secondary Carnivore
## 9946          4.24849524        6.849625561 Secondary Carnivore
## 9947          3.97168717        4.232513096 Secondary Carnivore
## 9948          0.99694863        1.540263127   Primary Carnivore
## 9949          4.44851638        6.670778349 Secondary Carnivore
## 9950          0.00000000        0.015041422   Primary Carnivore
## 9951          2.62466859        0.004578480 Secondary Carnivore
## 9952          6.68511160        6.849625561 Secondary Carnivore
## 9953          5.30230939        6.670778349  Tertiary Carnivore
## 9954          4.50733683        2.387053327 Secondary Carnivore
## 9955          3.12236492        2.891851822 Secondary Carnivore
## 9956          6.72623340        6.942696930  Tertiary Carnivore
## 9957          1.04027671        0.116104790 Secondary Carnivore
## 9958          2.71469474        1.886232978 Secondary Carnivore
## 9959          1.30291275        0.490146528 Secondary Carnivore
## 9960          3.81771233        0.735932630 Secondary Carnivore
## 9961          2.84490938        4.259772081 Secondary Carnivore
## 9962          1.67147330        0.004578480   Primary Carnivore
## 9963          1.32441896        2.122440181 Secondary Carnivore
## 9964          1.66770682        0.490146528  Tertiary Carnivore
## 9965          1.69561561        0.009889753 Secondary Carnivore
## 9966          7.38634693        7.288251436 Secondary Carnivore
## 9967          1.45861502        0.223982763 Secondary Carnivore
## 9968          3.55820113        2.404044412 Secondary Carnivore
## 9969          3.95871573        3.473231162 Secondary Carnivore
## 9970          1.22377543        0.878396534   Primary Carnivore
## 9971          3.91800508        3.146907198  Tertiary Carnivore
## 9972          2.80336038        1.168798094 Secondary Carnivore
## 9973          1.79175947        0.878396534   Primary Carnivore
## 9974          1.75785792        0.223982763 Secondary Carnivore
## 9975          3.45568557        0.749689812   Primary Carnivore
## 9976          3.68250921        3.873611973 Secondary Carnivore
## 9977          1.42310833        1.454402431 Secondary Carnivore
## 9978          5.73979291        2.153233085   Primary Carnivore
## 9979          3.08190997        0.002059853 Secondary Carnivore
## 9980          3.23474917        1.886232978 Secondary Carnivore
## 9981          5.08140436        6.670778349   Primary Carnivore
## 9982          1.04027671        0.116104790 Secondary Carnivore
## 9983          3.91202301        0.004578480  Tertiary Carnivore
## 9984          3.92197334        6.670778349   Primary Carnivore
## 9985          2.33505228        1.886232978 Secondary Carnivore
## 9986          7.83391713        6.670778349 Secondary Carnivore
## 9987          4.52601875        2.138914945  Tertiary Carnivore
## 9988          4.56076888        1.432814265 Secondary Carnivore
## 9989          3.57632647        0.470853119 Secondary Carnivore
## 9990          2.94968834        1.307030142 Secondary Carnivore
## 9991          7.17142638        6.670778349 Secondary Carnivore
## 9992          2.37954613        0.490146528  Tertiary Carnivore
## 9993          1.80500470        1.886232978 Secondary Carnivore
## 9994          2.12584791        3.515099295 Secondary Carnivore
## 9995          4.80541352        4.094232049 Secondary Carnivore
## 9996          1.68639895        0.130455954 Secondary Carnivore
## 9997          6.91214563        6.670778349 Secondary Carnivore
## 9998          5.57473625        3.473231162   Primary Carnivore
## 9999          7.21604848        6.849625561 Secondary Carnivore
## 10000         2.43562887        2.853935439 Secondary Carnivore
## 10001         2.07693841        0.735932630 Secondary Carnivore
## 10002         1.28093385        0.130455954  Tertiary Carnivore
## 10003         1.41342303        0.413477448 Secondary Carnivore
## 10004         4.26310232        2.433189939  Tertiary Carnivore
## 10005         7.68959991        6.849625561 Secondary Carnivore
## 10006         4.26267988        7.288251436   Primary Carnivore
## 10007         3.49650756        1.168798094 Secondary Carnivore
## 10008         4.00551335        3.146907198 Secondary Carnivore
## 10009         4.20916024        1.886232978   Primary Carnivore
## 10010         7.83241093        6.942696930 Secondary Carnivore
## 10011         4.53646299        3.146907198 Secondary Carnivore
## 10012         8.53210151        6.849625561 Secondary Carnivore
## 10013         1.33500107        0.015041422 Secondary Carnivore
## 10014         2.82731362        0.002344505 Secondary Carnivore
## 10015         4.70048037        6.670778349 Secondary Carnivore
## 10016         4.35388433        1.168798094 Secondary Carnivore
## 10017         4.61541750        3.473231162  Tertiary Carnivore
## 10018         1.42069579        0.214753881 Secondary Carnivore
## 10019         1.06471074        0.305596011  Tertiary Carnivore
## 10020         5.16478597        7.288251436 Secondary Carnivore
## 10021         0.00000000        0.004578480 Secondary Carnivore
## 10022         1.09192330        1.180964506 Secondary Carnivore
## 10023         0.47000363        0.147199990 Secondary Carnivore
## 10024         0.00000000        0.004578480   Primary Carnivore
## 10025         5.39816270        7.288251436  Tertiary Carnivore
## 10026         1.19392247        1.670180746   Primary Carnivore
## 10027         5.50938834        4.094232049  Tertiary Carnivore
## 10028         1.77495235        0.490146528  Tertiary Carnivore
## 10029         3.23474917        1.670180746   Primary Carnivore
## 10030         3.06339092        0.735932630 Secondary Carnivore
## 10031         3.71843826        2.387053327 Secondary Carnivore
## 10032         1.67147330        0.856029167  Tertiary Carnivore
## 10033         4.98360662        6.849625561   Primary Carnivore
## 10034         0.00000000        0.147199990 Secondary Carnivore
## 10035         1.79175947        0.223982763 Secondary Carnivore
## 10036         1.49290410        0.823328714 Secondary Carnivore
## 10037         2.94443898        0.757060688 Secondary Carnivore
## 10038         2.60268969        0.009889753   Primary Carnivore
## 10039         1.69708242        2.122440181 Secondary Carnivore
## 10040         3.43398720        0.002344505 Secondary Carnivore
## 10041         4.80745776        1.168798094   Primary Carnivore
## 10042         1.60140574        0.281204828 Secondary Carnivore
## 10043         4.56954301        6.849625561 Secondary Carnivore
## 10044         1.85629799        0.002059853 Secondary Carnivore
## 10045         2.52652832        0.015041422   Primary Carnivore
## 10046         2.16332303        0.223982763 Secondary Carnivore
## 10047         1.66770682        2.894695819 Secondary Carnivore
## 10048         4.47960696        6.849625561 Secondary Carnivore
## 10049         0.00000000        0.015041422   Primary Carnivore
## 10050         4.85203026        6.942696930 Secondary Carnivore
## 10051         5.02388052        4.094232049   Primary Carnivore
## 10052         1.85848310        0.900183757   Primary Carnivore
## 10053         6.44730586        7.288251436 Secondary Carnivore
## 10054         0.00000000        1.315195554   Primary Carnivore
## 10055         4.79579055        7.288251436   Primary Carnivore
## 10056         2.86789890        2.387053327 Secondary Carnivore
## 10057         3.15700042        2.387053327 Secondary Carnivore
## 10058         1.09192330        0.211247175 Secondary Carnivore
## 10059         1.82454929        0.063185562 Secondary Carnivore
## 10060         1.02961942        2.894695819   Primary Carnivore
## 10061         4.59208495        2.387053327 Secondary Carnivore
## 10062         3.91657264        4.232513096   Primary Carnivore
## 10063         1.76644166        4.047182371 Secondary Carnivore
## 10064         2.74071098        3.873611973 Secondary Carnivore
## 10065         0.99325177        0.878396534   Primary Carnivore
## 10066         3.26956894        2.894695819   Primary Carnivore
## 10067         3.01944880        2.853935439 Secondary Carnivore
## 10068         7.72832775        6.670778349 Secondary Carnivore
## 10069         1.12167756        0.015041422   Primary Carnivore
## 10070         1.08180517        0.211247175 Secondary Carnivore
## 10071         0.83290912        0.470853119  Tertiary Carnivore
## 10072         4.12713439        0.004578480  Tertiary Carnivore
## 10073         0.00000000        1.126655451   Primary Carnivore
## 10074         3.58629287        6.670778349   Primary Carnivore
## 10075         0.01064316        0.305596011  Tertiary Carnivore
## 10076         1.38629436        0.020024930  Tertiary Carnivore
## 10077         1.24126859        0.561550440 Secondary Carnivore
## 10078         5.48188814        6.670778349 Secondary Carnivore
## 10079         7.34018684        6.942696930  Tertiary Carnivore
## 10080         1.32972401        0.015041422  Tertiary Carnivore
## 10081         6.06092531        2.610718759 Secondary Carnivore
## 10082         7.88615659        6.670778349 Secondary Carnivore
## 10083         4.25844557        0.002059853 Secondary Carnivore
## 10084         8.12346889        7.288251436 Secondary Carnivore
## 10085         1.14740245        0.015041422 Secondary Carnivore
## 10086         6.83936937        6.849625561 Secondary Carnivore
## 10087         6.41345896        4.094232049 Secondary Carnivore
## 10088         3.92395158        2.277308093   Primary Carnivore
## 10089         3.54673969        6.670778349 Secondary Carnivore
## 10090         3.56953270        2.387053327 Secondary Carnivore
## 10091         0.00000000        0.130455954 Secondary Carnivore
## 10092         4.41642806        6.670778349 Secondary Carnivore
## 10093         3.21112587        3.651616415 Secondary Carnivore
## 10094         3.01553490        0.015041422  Tertiary Carnivore
## 10095         4.29959566        2.153233085   Primary Carnivore
## 10096         4.83628191        6.849625561 Secondary Carnivore
## 10097         4.24769492        3.873611973 Secondary Carnivore
## 10098         3.91921707        1.506685742 Secondary Carnivore
## 10099         0.26236426        2.024989105   Primary Carnivore
## 10100         1.40609699        0.305596011  Tertiary Carnivore
## 10101         0.00000000        1.459857720   Primary Carnivore
## 10102         5.14166356        7.288251436  Tertiary Carnivore
## 10103         3.28057281        2.433189939 Secondary Carnivore
## 10104         4.45781801        7.288251436   Primary Carnivore
## 10105         4.27527626        6.670778349   Primary Carnivore
## 10106         7.52736356        7.288251436 Secondary Carnivore
## 10107         4.23555473        4.094232049 Secondary Carnivore
## 10108         0.02078254        1.180964506 Secondary Carnivore
## 10109         0.85441533        2.153233085           Herbivore
## 10110         0.00000000        0.130455954 Secondary Carnivore
## 10111         1.99877364        0.015041422  Tertiary Carnivore
## 10112         0.00000000        3.146907198   Primary Carnivore
## 10113         7.95384545        6.849625561 Secondary Carnivore
## 10114         2.64617480        0.305596011  Tertiary Carnivore
## 10115         3.12236492        3.038160131 Secondary Carnivore
## 10116         0.00000000        0.340191127   Primary Carnivore
## 10117         4.41558229        3.943759073 Secondary Carnivore
## 10118         3.70179568        0.735932630   Primary Carnivore
## 10119         4.56017282        3.146907198 Secondary Carnivore
## 10120         2.13416644        1.742111989 Secondary Carnivore
## 10121         6.77445243        6.670778349 Secondary Carnivore
## 10122         2.54160199        2.050338578   Primary Carnivore
## 10123         2.08815348        0.009889753           Herbivore
## 10124         2.89668512        2.136925014 Secondary Carnivore
## 10125         2.10413415        1.886232978 Secondary Carnivore
## 10126         4.71573613        3.304296954 Secondary Carnivore
## 10127         7.34665516        7.288251436 Secondary Carnivore
## 10128         5.22810947        1.168798094   Primary Carnivore
## 10129         2.21920348        0.223982763 Secondary Carnivore
## 10130         2.79116511        1.886232978   Primary Carnivore
## 10131         2.56240767        2.075946520   Primary Carnivore
## 10132         2.84490938        3.473231162  Tertiary Carnivore
## 10133         1.52388002        1.532760019 Secondary Carnivore
## 10134         3.63663834        3.651616415   Primary Carnivore
## 10135         2.36368019        0.015041422   Primary Carnivore
## 10136         3.92789635        6.849625561   Primary Carnivore
## 10137         2.91695959        2.433189939 Secondary Carnivore
## 10138         6.52590904        6.670778349 Secondary Carnivore
## 10139         2.45958884        0.015041422   Primary Carnivore
## 10140         2.59525471        3.473231162 Secondary Carnivore
## 10141         7.61386804        6.670778349 Secondary Carnivore
## 10142         2.27212589        1.532760019   Primary Carnivore
## 10143         3.68637632        2.153233085 Secondary Carnivore
## 10144         0.00000000        0.211247175 Secondary Carnivore
## 10145         3.33932198        2.404044412 Secondary Carnivore
## 10146         1.90389697        0.211247175 Secondary Carnivore
## 10147         3.25424297        3.515099295 Secondary Carnivore
## 10148         2.98568194        4.121930401   Primary Carnivore
## 10149         2.82137889        2.153233085 Secondary Carnivore
## 10150         3.15700042        1.168798094 Secondary Carnivore
## 10151         5.61312811        6.849625561   Primary Carnivore
## 10152         3.23080440        2.241290896   Primary Carnivore
## 10153         2.05412373        0.856029167 Secondary Carnivore
## 10154         2.47653840        0.885298676  Tertiary Carnivore
## 10155         3.24259235        0.749689812   Primary Carnivore
## 10156         3.23867845        3.146907198 Secondary Carnivore
## 10157         2.27829240        2.387053327  Tertiary Carnivore
## 10158         5.44570235        1.168798094   Primary Carnivore
## 10159         5.77455155        6.942696930  Tertiary Carnivore
## 10160         4.57367952        4.094232049 Secondary Carnivore
## 10161         6.28897318        6.670778349 Secondary Carnivore
## 10162         4.86375810        1.673740129   Primary Carnivore
## 10163         2.81367068        2.891851822  Tertiary Carnivore
## 10164         0.00000000        0.002344505 Secondary Carnivore
## 10165         1.20297230        0.015041422   Primary Carnivore
## 10166         2.83749827        2.853935439 Secondary Carnivore
## 10167         7.05142263        6.670778349 Secondary Carnivore
## 10168         3.25037449        0.020024930   Primary Carnivore
## 10169         1.00063188        1.711701702 Secondary Carnivore
## 10170         7.78130551        6.670778349 Secondary Carnivore
## 10171         7.82043952        7.288251436 Secondary Carnivore
## 10172         8.06495089        4.094232049 Secondary Carnivore
## 10173         0.79750720        0.413477448 Secondary Carnivore
## 10174         0.00000000        1.673740129           Herbivore
## 10175         4.51085951        7.288251436 Secondary Carnivore
## 10176         2.25023861        0.214753881 Secondary Carnivore
## 10177         2.82137889        0.009889753   Primary Carnivore
## 10178         8.50329709        7.288251436 Secondary Carnivore
## 10179         4.58598737        4.094232049 Secondary Carnivore
## 10180         3.79098468        1.168798094 Secondary Carnivore
## 10181         0.00000000        0.015041422   Primary Carnivore
## 10182         2.54944517        0.015041422  Tertiary Carnivore
## 10183         5.52146092        6.942696930 Secondary Carnivore
## 10184         2.94443898        2.894695819   Primary Carnivore
## 10185         1.62136648        1.180964506  Tertiary Carnivore
## 10186         3.72810017        1.673740129 Secondary Carnivore
## 10187         3.66612247        6.849625561 Secondary Carnivore
## 10188         0.83290912        0.147199990  Tertiary Carnivore
## 10189         1.66203036        0.009889753  Tertiary Carnivore
## 10190         4.30000280        6.849625561 Secondary Carnivore
## 10191         1.69009582        0.015041422 Secondary Carnivore
## 10192         3.88362353        6.849625561   Primary Carnivore
## 10193         2.54944517        0.044241443   Primary Carnivore
## 10194         0.63180355        4.047182371   Primary Carnivore
## 10195         3.87120101        1.673740129 Secondary Carnivore
## 10196         3.59731226        2.153233085 Secondary Carnivore
## 10197         4.66343909        6.849625561 Secondary Carnivore
## 10198         5.57215403        4.259772081   Primary Carnivore
## 10199         1.27256560        0.823328714 Secondary Carnivore
## 10200         0.82855182        1.877421323 Secondary Carnivore
## 10201         6.11146734        7.288251436   Primary Carnivore
## 10202         0.00000000        0.116104790 Secondary Carnivore
## 10203         4.98360662        4.094232049   Primary Carnivore
## 10204         4.46579317        3.473231162   Primary Carnivore
## 10205         5.35185813        7.288251436  Tertiary Carnivore
## 10206         1.99741771        0.490146528  Tertiary Carnivore
## 10207         3.81683282        2.153233085 Secondary Carnivore
## 10208         0.30748470        0.211247175  Tertiary Carnivore
## 10209         6.27795841        6.670778349 Secondary Carnivore
## 10210         1.22671229        0.305596011  Tertiary Carnivore
## 10211         0.69314718        0.470853119  Tertiary Carnivore
## 10212         2.91158951        1.962719022 Secondary Carnivore
## 10213         3.93573953        1.168798094 Secondary Carnivore
## 10214         2.77819796        0.015041422   Primary Carnivore
## 10215         4.29728541        4.094232049 Secondary Carnivore
## 10216         0.00000000        0.009889753  Tertiary Carnivore
## 10217         7.22875123        6.670778349 Secondary Carnivore
## 10218         5.55902642        1.168798094   Primary Carnivore
## 10219         7.02028007        6.670778349 Secondary Carnivore
## 10220         2.37861978        2.387053327 Secondary Carnivore
## 10221         4.48863637        6.670778349 Secondary Carnivore
## 10222         0.78845736        0.130455954 Secondary Carnivore
## 10223         0.40546511        2.894695819   Primary Carnivore
## 10224         7.34665516        7.288251436 Secondary Carnivore
## 10225         0.00000000        1.459857720   Primary Carnivore
## 10226         0.00000000        0.002344505 Secondary Carnivore
## 10227         4.92308559        7.288251436 Secondary Carnivore
## 10228         3.36729583        1.168798094 Secondary Carnivore
## 10229         1.78170913        0.856029167   Primary Carnivore
## 10230         6.08904488        7.288251436 Secondary Carnivore
## 10231         2.16676537        0.015041422  Tertiary Carnivore
## 10232         3.75560309        6.942696930 Secondary Carnivore
## 10233         0.83290912        4.262479896 Secondary Carnivore
## 10234         1.05779029        2.122440181 Secondary Carnivore
## 10235         4.51085951        7.288251436 Secondary Carnivore
## 10236         1.93152141        0.490146528 Secondary Carnivore
## 10237         2.03339760        1.742111989 Secondary Carnivore
## 10238         3.68135119        2.387053327 Secondary Carnivore
## 10239         2.56510319        2.254856321   Primary Carnivore
## 10240         5.64897424        4.259772081 Secondary Carnivore
## 10241         3.51868408        1.886232978 Secondary Carnivore
## 10242         2.54944517        0.281204828 Secondary Carnivore
## 10243         5.89715387        6.942696930  Tertiary Carnivore
## 10244         2.61739583        1.742111989 Secondary Carnivore
## 10245         2.24191003        6.670778349 Secondary Carnivore
## 10246         7.47363711        7.288251436 Secondary Carnivore
## 10247         1.96571278        0.856029167 Secondary Carnivore
## 10248         0.40546511        0.063185562 Secondary Carnivore
## 10249         6.19031541        6.942696930  Tertiary Carnivore
## 10250         2.28033948        1.532760019   Primary Carnivore
## 10251         2.13947776        4.047182371 Secondary Carnivore
## 10252         3.49650756        3.146907198 Secondary Carnivore
## 10253         0.53062825        0.130455954  Tertiary Carnivore
## 10254         3.95316495        6.670778349 Secondary Carnivore
## 10255         3.73050113        6.670778349 Secondary Carnivore
## 10256         3.05870707        3.038160131 Secondary Carnivore
## 10257         8.44080878        6.849625561 Secondary Carnivore
## 10258         2.32630162        2.845177164 Secondary Carnivore
## 10259         1.48160454        0.130455954 Secondary Carnivore
## 10260         3.57234564        3.168005566 Secondary Carnivore
## 10261         6.59441346        7.288251436  Tertiary Carnivore
## 10262         4.60616969        4.259772081  Tertiary Carnivore
## 10263         1.54756251        0.015041422 Secondary Carnivore
## 10264         4.22537282        1.168798094 Secondary Carnivore
## 10265         0.00000000        0.470853119  Tertiary Carnivore
## 10266         2.98061864        2.387053327 Secondary Carnivore
## 10267         3.76352300        1.168798094 Secondary Carnivore
## 10268         3.19179236        1.540263127 Secondary Carnivore
## 10269         4.01096295        6.670778349 Secondary Carnivore
## 10270         5.11198779        4.094232049  Tertiary Carnivore
## 10271         1.16315081        1.126655451   Primary Carnivore
## 10272         1.19392247        0.211247175 Secondary Carnivore
## 10273         7.39079852        7.288251436 Secondary Carnivore
## 10274         4.66861436        2.153233085 Secondary Carnivore
## 10275         1.54756251        0.009889753  Tertiary Carnivore
## 10276         6.06610809        7.288251436  Tertiary Carnivore
## 10277         4.04480412        6.942696930  Tertiary Carnivore
## 10278         4.98561830        3.304296954   Primary Carnivore
## 10279         6.77502357        6.849625561 Secondary Carnivore
## 10280         4.62497281        3.168005566 Secondary Carnivore
## 10281         2.58021683        1.532760019   Primary Carnivore
## 10282         4.98360662        4.094232049   Primary Carnivore
## 10283         2.63905733        2.153233085 Secondary Carnivore
## 10284         5.22035583        3.146907198 Secondary Carnivore
## 10285         7.13297667        6.670778349 Secondary Carnivore
## 10286         2.58776404        0.757060688 Secondary Carnivore
## 10287         2.11709853        3.515099295 Secondary Carnivore
## 10288         2.36837283        0.735932630 Secondary Carnivore
## 10289         4.18813844        6.849625561  Tertiary Carnivore
## 10290         0.00000000        0.004578480 Secondary Carnivore
## 10291         3.41444261        1.742111989 Secondary Carnivore
## 10292         5.13603370        1.673740129 Secondary Carnivore
## 10293         1.80664808        0.116104790 Secondary Carnivore
## 10294         3.39114705        1.670180746 Secondary Carnivore
## 10295         1.30019166        2.845177164 Secondary Carnivore
## 10296         3.13113691        4.259772081 Secondary Carnivore
## 10297         2.64326276        0.490146528 Secondary Carnivore
## 10298         0.00000000        0.015041422 Secondary Carnivore
## 10299         4.08260931        6.670778349 Secondary Carnivore
## 10300         5.02388052        6.942696930 Secondary Carnivore
## 10301         1.04027671        0.885298676 Secondary Carnivore
## 10302         3.94931879        7.161415474 Secondary Carnivore
## 10303         0.00000000        0.002059853 Secondary Carnivore
## 10304         2.14943391        0.735932630 Secondary Carnivore
## 10305         7.29369772        7.288251436 Secondary Carnivore
## 10306         1.53686722        0.015041422  Tertiary Carnivore
## 10307         0.00000000        0.147199990 Secondary Carnivore
## 10308         2.11142459        0.900183757 Secondary Carnivore
## 10309         1.82454929        0.490146528  Tertiary Carnivore
## 10310         0.83290912        1.831515834 Secondary Carnivore
## 10311         4.75780543        4.094232049 Secondary Carnivore
## 10312         2.74084002        1.886232978 Secondary Carnivore
## 10313         6.03954017        1.886232978 Secondary Carnivore
## 10314         0.17395331        1.532760019  Tertiary Carnivore
## 10315         3.28091122        3.146907198 Secondary Carnivore
## 10316         5.35185813        7.288251436  Tertiary Carnivore
## 10317         0.00000000        2.404044412           Herbivore
## 10318         1.19392247        0.147199990 Secondary Carnivore
## 10319         4.44968528        1.168798094  Tertiary Carnivore
## 10320         4.82807371        1.673740129   Primary Carnivore
## 10321         0.00000000        1.877421323 Secondary Carnivore
## 10322         7.68303529        6.849625561 Secondary Carnivore
## 10323         1.85207032        0.211247175 Secondary Carnivore
## 10324         0.19885086        0.305596011 Secondary Carnivore
## 10325         1.65822808        0.885298676  Tertiary Carnivore
## 10326         1.84292776        1.962719022 Secondary Carnivore
## 10327         2.58021683        2.136925014 Secondary Carnivore
## 10328         5.77299754        1.886232978   Primary Carnivore
## 10329         4.45771372        1.886232978   Primary Carnivore
## 10330         2.77102500        1.962719022  Tertiary Carnivore
## 10331         3.94352167        3.146907198  Tertiary Carnivore
## 10332         2.95491028        2.472143654   Primary Carnivore
## 10333         7.98214318        6.849625561 Secondary Carnivore
## 10334         4.79892612        2.387053327   Primary Carnivore
## 10335         0.92821930        6.942696930           Herbivore
## 10336         7.83494639        6.670778349 Secondary Carnivore
## 10337         7.03341830        6.670778349 Secondary Carnivore
## 10338         1.32175584        2.254856321 Secondary Carnivore
## 10339         6.78649119        6.670778349  Tertiary Carnivore
## 10340         0.00000000        1.670180746   Primary Carnivore
## 10341         0.00000000        2.404044412           Herbivore
## 10342         5.90511659        1.886232978   Primary Carnivore
## 10343         4.61485315        1.432814265 Secondary Carnivore
## 10344         4.22753423        1.506685742   Primary Carnivore
## 10345         7.39184671        7.288251436 Secondary Carnivore
## 10346         1.28923265        0.856029167 Secondary Carnivore
## 10347         1.51292701        0.015041422 Secondary Carnivore
## 10348         0.97455964        0.305596011  Tertiary Carnivore
## 10349         7.97968130        7.288251436 Secondary Carnivore
## 10350         1.18784342        0.561550440 Secondary Carnivore
## 10351         4.06355884        2.138914945 Secondary Carnivore
## 10352         3.19043520        2.610718759 Secondary Carnivore
## 10353         1.76985463        0.015041422  Tertiary Carnivore
## 10354         5.38587026        0.004578480  Tertiary Carnivore
## 10355         1.32441896        4.047182371 Secondary Carnivore
## 10356         0.83290912        5.169038067   Primary Carnivore
## 10357         2.56617937        1.962719022 Secondary Carnivore
## 10358         2.17815501        2.845177164 Secondary Carnivore
## 10359         4.96284463        6.670778349  Tertiary Carnivore
## 10360         2.16217294        0.009889753   Primary Carnivore
## 10361         0.90421815        0.305596011  Tertiary Carnivore
## 10362         0.00000000        1.886232978           Herbivore
## 10363         1.34547237        0.856029167 Secondary Carnivore
## 10364         0.00000000        0.004578480  Tertiary Carnivore
## 10365         3.57660621        1.432814265  Tertiary Carnivore
## 10366         0.43048287        0.856029167  Tertiary Carnivore
## 10367         7.98132323        6.670778349 Secondary Carnivore
## 10368         3.66867675        0.749689812   Primary Carnivore
## 10369         1.19392247        1.532760019  Tertiary Carnivore
## 10370         4.18801704        3.651616415   Primary Carnivore
## 10371         1.44926916        1.251683108 Secondary Carnivore
## 10372         4.50534985        4.094232049  Tertiary Carnivore
## 10373         2.44633906        0.470853119 Secondary Carnivore
## 10374         4.34510328        6.670778349 Secondary Carnivore
## 10375         4.84418709        3.146907198 Secondary Carnivore
## 10376         1.49962305        0.561550440 Secondary Carnivore
## 10377         6.67997600        6.670778349 Secondary Carnivore
## 10378         2.11384297        0.009889753 Secondary Carnivore
## 10379         3.50453585        3.873611973  Tertiary Carnivore
## 10380         8.49631679        6.849625561 Secondary Carnivore
## 10381         5.86646806        2.153233085  Tertiary Carnivore
## 10382         0.37156356        0.130455954 Secondary Carnivore
## 10383         0.00000000        1.981883583   Primary Carnivore
## 10384         4.31348009        4.259772081 Secondary Carnivore
## 10385         2.82137889        1.168798094 Secondary Carnivore
## 10386         2.65324196        0.002344505 Secondary Carnivore
## 10387         3.85014760        6.849625561 Secondary Carnivore
## 10388         3.86157146        0.015041422 Secondary Carnivore
## 10389         3.26575941        2.387053327 Secondary Carnivore
## 10390         4.62497281        4.259772081 Secondary Carnivore
## 10391         2.94443898        0.004578480  Tertiary Carnivore
## 10392         4.39444915        7.288251436 Secondary Carnivore
## 10393         0.99325177        0.130455954  Tertiary Carnivore
## 10394         4.00369019        1.307030142 Secondary Carnivore
## 10395         0.53999600        0.413477448  Tertiary Carnivore
## 10396         0.26236426        1.920179330   Primary Carnivore
## 10397         3.30310667        1.506685742 Secondary Carnivore
## 10398         0.00000000        0.130455954 Secondary Carnivore
## 10399         4.21331208        1.886232978 Secondary Carnivore
## 10400         5.75574221        1.168798094 Secondary Carnivore
## 10401         1.56024767        0.009889753   Primary Carnivore
## 10402         2.02683159        0.885298676  Tertiary Carnivore
## 10403         4.75531284        3.943759073 Secondary Carnivore
## 10404         4.99767163        4.232513096 Secondary Carnivore
## 10405         2.22354189        0.015041422 Secondary Carnivore
## 10406         3.26575941        5.169038067   Primary Carnivore
## 10407         1.71918878        0.856029167   Primary Carnivore
## 10408         1.13462273        2.136925014 Secondary Carnivore
## 10409         0.58778666        0.147199990 Secondary Carnivore
## 10410         1.84150156        1.711701702  Tertiary Carnivore
## 10411         2.97041447        2.387053327 Secondary Carnivore
## 10412         0.00000000        0.002344505 Secondary Carnivore
## 10413         0.00000000        2.404044412           Herbivore
## 10414         2.77258872        0.116104790 Secondary Carnivore
## 10415         1.85629799        0.490146528  Tertiary Carnivore
## 10416         4.59410924        3.168005566 Secondary Carnivore
## 10417         5.56452041        7.288251436  Tertiary Carnivore
## 10418         8.05360097        6.670778349 Secondary Carnivore
## 10419         3.24649099        1.307030142 Secondary Carnivore
## 10420         1.70292826        0.015041422 Secondary Carnivore
## 10421         3.88752537        0.749689812   Primary Carnivore
## 10422         0.00000000        0.015041422  Tertiary Carnivore
## 10423         5.18178355        6.849625561 Secondary Carnivore
## 10424         2.40865536        1.540263127 Secondary Carnivore
## 10425         2.90690106        3.515099295 Secondary Carnivore
## 10426         2.61739583        0.757060688  Tertiary Carnivore
## 10427         2.52572864        0.735932630 Secondary Carnivore
## 10428         3.36037539        2.891851822  Tertiary Carnivore
## 10429         3.35340672        5.169038067   Primary Carnivore
## 10430         0.00000000        1.886232978           Herbivore
## 10431         1.98787435        2.241290896   Primary Carnivore
## 10432         2.68852753        3.226603994 Secondary Carnivore
## 10433         2.58776404        2.136925014 Secondary Carnivore
## 10434         1.35325451        2.404044412 Secondary Carnivore
## 10435         4.70953020        7.288251436 Secondary Carnivore
## 10436         7.35212054        6.849625561 Secondary Carnivore
## 10437         2.56494936        1.315195554 Secondary Carnivore
## 10438         5.81889528        6.849625561 Secondary Carnivore
## 10439         1.79275897        0.116104790 Secondary Carnivore
## 10440         1.62924054        0.147199990 Secondary Carnivore
## 10441         7.75022723        6.670778349 Secondary Carnivore
## 10442         3.79773386        4.094232049 Secondary Carnivore
## 10443         0.95551145        0.490146528  Tertiary Carnivore
## 10444         1.53255687        2.075946520 Secondary Carnivore
## 10445         5.14813381        1.886232978   Primary Carnivore
## 10446         0.00000000        1.886232978           Herbivore
## 10447         0.33647224        2.894695819   Primary Carnivore
## 10448         3.28578653        0.015041422 Secondary Carnivore
## 10449         2.29253476        1.315195554   Primary Carnivore
## 10450         7.29715875        6.849625561 Secondary Carnivore
## 10451         0.26236426        2.024989105   Primary Carnivore
## 10452         0.68813464        1.251683108 Secondary Carnivore
## 10453         1.02961942        0.470853119  Tertiary Carnivore
## 10454         1.26976054        1.180964506 Secondary Carnivore
## 10455         4.04305127        6.670778349  Tertiary Carnivore
## 10456         3.96840334        2.050338578   Primary Carnivore
## 10457         5.72227706        6.849625561 Secondary Carnivore
## 10458         4.79579055        7.288251436 Secondary Carnivore
## 10459         7.40482675        6.670778349 Secondary Carnivore
## 10460         0.78845736        7.161415474   Primary Carnivore
## 10461         5.57215403        4.259772081   Primary Carnivore
## 10462         3.51452607        1.886232978 Secondary Carnivore
## 10463         1.87640694        0.885298676  Tertiary Carnivore
## 10464         2.63905733        0.002059853 Secondary Carnivore
## 10465         0.00000000        2.894695819   Primary Carnivore
## 10466         3.40452517        1.886232978 Secondary Carnivore
## 10467         0.00000000        0.002059853 Secondary Carnivore
## 10468         2.24918432        0.009889753   Primary Carnivore
## 10469         1.66392610        0.211247175 Secondary Carnivore
## 10470         0.06765865        0.305596011 Secondary Carnivore
## 10471         2.27212589        1.670180746 Secondary Carnivore
## 10472         2.77881927        0.885298676  Tertiary Carnivore
## 10473         6.58340922        4.259772081  Tertiary Carnivore
## 10474         0.00000000        1.670180746   Primary Carnivore
## 10475         1.45161383        1.532760019 Secondary Carnivore
## 10476         1.99333884        1.307030142 Secondary Carnivore
## 10477         0.00000000        0.002059853 Secondary Carnivore
## 10478         2.04122033        0.063185562 Secondary Carnivore
## 10479         2.23537634        0.015041422 Secondary Carnivore
## 10480         2.58021683        2.891851822 Secondary Carnivore
## 10481         4.25134831        1.168798094 Secondary Carnivore
## 10482         0.00000000        2.404044412           Herbivore
## 10483         1.47476301        0.900183757 Secondary Carnivore
## 10484         6.77490937        6.849625561 Secondary Carnivore
## 10485         3.42816383        0.015041422   Primary Carnivore
## 10486         1.61541998        0.009889753  Tertiary Carnivore
## 10487         6.90505163        6.849625561 Secondary Carnivore
## 10488         1.66770682        0.002344505 Secondary Carnivore
## 10489         3.03013370        3.146907198 Secondary Carnivore
## 10490         1.81156210        0.211247175 Secondary Carnivore
## 10491         1.01884732        0.223982763 Secondary Carnivore
## 10492         1.51072194        0.015041422  Tertiary Carnivore
## 10493         5.68357977        4.094232049  Tertiary Carnivore
## 10494         4.79579055        7.288251436 Secondary Carnivore
## 10495         1.19996478        0.015041422  Tertiary Carnivore
## 10496         7.45066080        7.288251436 Secondary Carnivore
## 10497         2.47863704        1.711701702   Primary Carnivore
## 10498         1.31640823        0.214753881 Secondary Carnivore
## 10499         6.08677473        4.094232049 Secondary Carnivore
## 10500         3.51443678        2.610718759 Secondary Carnivore
## 10501         2.92316158        3.473231162 Secondary Carnivore
## 10502         1.77495235        0.002344505 Secondary Carnivore
## 10503         0.00000000        1.877421323 Secondary Carnivore
## 10504         2.32727771        0.009889753           Herbivore
## 10505         1.43983513        0.305596011  Tertiary Carnivore
## 10506         5.21553341        0.735932630   Primary Carnivore
## 10507         4.19166787        2.433189939 Secondary Carnivore
## 10508         1.47796155        1.711701702  Tertiary Carnivore
## 10509         2.28238239        1.315195554 Secondary Carnivore
## 10510         2.55722731        1.315195554 Secondary Carnivore
## 10511         3.16665579        0.470853119 Secondary Carnivore
## 10512         0.00000000        0.002344505  Tertiary Carnivore
## 10513         2.79116511        0.009889753           Herbivore
## 10514         1.75958057        4.262479896 Secondary Carnivore
## 10515         1.29746315        0.413477448 Secondary Carnivore
## 10516         2.85647021        1.886232978 Secondary Carnivore
## 10517         2.85070650        0.063185562 Secondary Carnivore
## 10518         5.18505908        1.432814265 Secondary Carnivore
## 10519         1.20297230        1.831515834  Tertiary Carnivore
## 10520         3.26956894        1.886232978 Secondary Carnivore
## 10521         3.80443779        6.670778349   Primary Carnivore
## 10522         5.01727984        7.288251436  Tertiary Carnivore
## 10523         3.85227300        6.670778349 Secondary Carnivore
## 10524         3.27222700        0.735932630   Primary Carnivore
## 10525         1.08180517        0.116104790 Secondary Carnivore
## 10526         1.89611948        0.885298676 Secondary Carnivore
## 10527         1.66770682        0.490146528 Secondary Carnivore
## 10528         4.27495632        4.232513096  Tertiary Carnivore
## 10529         5.77827133        6.670778349  Tertiary Carnivore
## 10530         0.00000000        1.673740129           Herbivore
## 10531         1.48387469        0.885298676 Secondary Carnivore
## 10532         3.55820113        2.153233085           Herbivore
## 10533         0.78845736        2.145288428 Secondary Carnivore
## 10534         2.00417906        0.211247175 Secondary Carnivore
## 10535         8.42299240        6.849625561 Secondary Carnivore
## 10536         6.01859321        7.288251436  Tertiary Carnivore
## 10537         0.00000000        0.002059853 Secondary Carnivore
## 10538         1.95727391        0.004578480   Primary Carnivore
## 10539         1.62924054        0.223982763 Secondary Carnivore
## 10540         1.04027671        1.454402431 Secondary Carnivore
## 10541         5.44241771        2.153233085 Secondary Carnivore
## 10542         3.06339092        3.943759073 Secondary Carnivore
## 10543         2.53369681        1.981883583   Primary Carnivore
## 10544         4.09434456        7.288251436 Secondary Carnivore
## 10545         3.28776736        2.433189939  Tertiary Carnivore
## 10546         5.30330491        7.288251436 Secondary Carnivore
## 10547         0.00000000        0.009889753 Secondary Carnivore
## 10548         5.28826703        2.153233085  Tertiary Carnivore
## 10549         0.95551145        0.211247175 Secondary Carnivore
## 10550         1.67335124        0.735932630 Secondary Carnivore
## 10551         2.70136121        3.515099295 Secondary Carnivore
## 10552         1.18172720        2.387053327 Secondary Carnivore
## 10553         2.41126011        1.014024833 Secondary Carnivore
## 10554         2.32238772        0.223982763 Secondary Carnivore
## 10555         7.51261754        6.942696930 Secondary Carnivore
## 10556         0.00000000        0.009889753 Secondary Carnivore
## 10557         2.63905733        0.002059853 Secondary Carnivore
## 10558         0.91629073        0.063185562 Secondary Carnivore
## 10559         3.02456266        2.254856321 Secondary Carnivore
## 10560         1.41098697        0.147199990 Secondary Carnivore
## 10561         3.78940329        0.214753881  Tertiary Carnivore
## 10562         0.83290912        0.130455954 Secondary Carnivore
## 10563         7.62525355        6.849625561 Secondary Carnivore
## 10564         3.34990409        2.387053327   Primary Carnivore
## 10565         4.61512052        7.288251436  Tertiary Carnivore
## 10566         3.55010577        1.540263127 Secondary Carnivore
## 10567         1.24990174        2.241290896   Primary Carnivore
## 10568         7.22329568        7.288251436 Secondary Carnivore
## 10569         4.71849887        3.146907198 Secondary Carnivore
## 10570         3.92296295        2.138914945 Secondary Carnivore
## 10571         3.28091122        1.168798094   Primary Carnivore
## 10572         2.38139627        2.136925014 Secondary Carnivore
## 10573         1.34547237        0.885298676 Secondary Carnivore
## 10574         2.23697934        0.490146528   Primary Carnivore
## 10575         2.91463067        2.136925014 Secondary Carnivore
## 10576         4.30217141        0.002059853 Secondary Carnivore
## 10577         1.13140211        0.470853119  Tertiary Carnivore
## 10578         3.38113072        1.632888289 Secondary Carnivore
## 10579         1.53901545        2.853935439 Secondary Carnivore
## 10580         2.98061864        0.885298676  Tertiary Carnivore
## 10581         1.95868534        0.211247175 Secondary Carnivore
## 10582         1.68639895        7.161415474 Secondary Carnivore
## 10583         3.09557761        0.009889753   Primary Carnivore
## 10584         2.63991411        2.254856321   Primary Carnivore
## 10585         0.00000000        0.305596011 Secondary Carnivore
## 10586         3.36037539        1.168798094 Secondary Carnivore
## 10587         1.59533899        0.413477448 Secondary Carnivore
## 10588         3.56133013        1.886232978 Secondary Carnivore
## 10589         4.65396035        1.168798094 Secondary Carnivore
## 10590         0.00000000        1.459857720   Primary Carnivore
## 10591         7.34968088        6.849625561 Secondary Carnivore
## 10592         4.68213123        6.670778349  Tertiary Carnivore
## 10593         1.31908561        0.004578480   Primary Carnivore
## 10594         8.85237889        7.288251436 Secondary Carnivore
## 10595         0.93216408        4.094232049           Herbivore
## 10596         4.86753445        2.153233085 Secondary Carnivore
## 10597         0.00000000        0.281204828 Secondary Carnivore
## 10598         2.12823171        0.211247175 Secondary Carnivore
## 10599         5.67194775        1.886232978 Secondary Carnivore
## 10600         0.82417544        1.831515834   Primary Carnivore
## 10601         0.63657683        4.259772081           Herbivore
## 10602         6.61069604        6.942696930 Secondary Carnivore
## 10603         3.42426265        3.651616415  Tertiary Carnivore
## 10604         3.73440238        3.943759073 Secondary Carnivore
## 10605         3.66612247        0.749689812   Primary Carnivore
## 10606         2.08193842        0.004578480  Tertiary Carnivore
## 10607         0.00000000        2.145288428 Secondary Carnivore
## 10608         3.77045944        2.050338578   Primary Carnivore
## 10609         8.52734152        7.288251436 Secondary Carnivore
## 10610         3.71571611        2.433189939 Secondary Carnivore
## 10611         3.06339092        0.735932630 Secondary Carnivore
## 10612         2.61520365        3.226603994  Tertiary Carnivore
## 10613         7.20630310        6.849625561 Secondary Carnivore
## 10614         2.83321334        3.146907198 Secondary Carnivore
## 10615         2.80940270        1.420705940 Secondary Carnivore
## 10616         6.99062476        7.288251436 Secondary Carnivore
## 10617         4.47847253        1.168798094 Secondary Carnivore
## 10618         1.68639895        0.116104790 Secondary Carnivore
## 10619         0.00000000        0.009889753           Herbivore
## 10620         2.50470928        1.432814265 Secondary Carnivore
## 10621         6.66134310        6.670778349 Secondary Carnivore
## 10622         0.87546874        0.063185562 Secondary Carnivore
## 10623         3.20453346        2.610718759  Tertiary Carnivore
## 10624         1.08518927        1.180964506  Tertiary Carnivore
## 10625         3.00071982        0.214753881  Tertiary Carnivore
## 10626         2.00552586        1.307030142 Secondary Carnivore
## 10627         1.46325540        4.094232049           Herbivore
## 10628         4.53689135        1.673740129 Secondary Carnivore
## 10629         5.25227343        7.288251436   Primary Carnivore
## 10630         3.03013370        1.670180746   Primary Carnivore
## 10631         5.25017699        3.473231162   Primary Carnivore
## 10632         3.88567903        2.387053327 Secondary Carnivore
## 10633         3.89731538        0.735932630 Secondary Carnivore
## 10634         5.54126355        3.146907198 Secondary Carnivore
## 10635         4.77912349        4.094232049  Tertiary Carnivore
## 10636         1.70402055        0.211247175 Secondary Carnivore
## 10637         2.81540872        0.757060688 Secondary Carnivore
## 10638         7.84998662        6.670778349 Secondary Carnivore
## 10639         0.00000000        0.002344505  Tertiary Carnivore
## 10640         3.94158181        3.168005566 Secondary Carnivore
## 10641         1.73342389        0.015041422 Secondary Carnivore
## 10642         3.49347266        1.168798094 Secondary Carnivore
## 10643         0.26236426        2.107009466   Primary Carnivore
## 10644         0.00000000        2.107009466   Primary Carnivore
## 10645         2.84490938        0.020024930  Tertiary Carnivore
## 10646         0.74193734        2.241290896   Primary Carnivore
## 10647         1.67335124        0.490146528 Secondary Carnivore
## 10648         4.02177387        2.153233085  Tertiary Carnivore
## 10649         4.50976000        6.670778349 Secondary Carnivore
## 10650         4.07414185        3.159561805   Primary Carnivore
## 10651         2.76744803        6.670778349 Secondary Carnivore
## 10652         2.96460274        3.038160131 Secondary Carnivore
## 10653         5.17868888        2.153233085 Secondary Carnivore
## 10654         1.55180880        0.009889753  Tertiary Carnivore
## 10655         1.38629436        0.063185562 Secondary Carnivore
## 10656         4.54648119        3.146907198 Secondary Carnivore
## 10657         2.37024374        0.490146528 Secondary Carnivore
## 10658         0.30748470        4.259772081           Herbivore
## 10659         2.01089500        0.214753881 Secondary Carnivore
## 10660         3.39450839        1.479154529   Primary Carnivore
## 10661         2.68784749        0.757060688   Primary Carnivore
## 10662         2.35801980        3.515099295 Secondary Carnivore
## 10663         3.76584050        0.009889753  Tertiary Carnivore
## 10664         0.81536481        1.251683108 Secondary Carnivore
## 10665         0.00000000        1.886232978           Herbivore
## 10666         1.28923265        0.004578480 Secondary Carnivore
## 10667         2.00512201        2.853935439   Primary Carnivore
## 10668         4.74449725        3.146907198 Secondary Carnivore
## 10669         4.03777421        6.670778349   Primary Carnivore
## 10670         4.71635371        1.168798094 Secondary Carnivore
## 10671         0.36394843        0.413477448  Tertiary Carnivore
## 10672         0.00000000        0.009889753           Herbivore
## 10673         4.94875989        7.288251436 Secondary Carnivore
## 10674         3.99636415        6.670778349 Secondary Carnivore
## 10675         1.15688120        0.004578480   Primary Carnivore
## 10676         3.51452607        1.168798094 Secondary Carnivore
## 10677         8.20305762        7.288251436 Secondary Carnivore
## 10678         0.81668960        1.705681497 Secondary Carnivore
## 10679         2.55567572        0.015041422   Primary Carnivore
## 10680         1.34547237        1.962719022 Secondary Carnivore
## 10681         2.37954613        0.004578480 Secondary Carnivore
## 10682         4.85203026        6.849625561  Tertiary Carnivore
## 10683         0.95165788        1.877421323 Secondary Carnivore
## 10684         4.74701691        0.002059853 Secondary Carnivore
## 10685         0.98954119        0.116104790 Secondary Carnivore
## 10686         7.58054668        6.670778349 Secondary Carnivore
## 10687         3.03013370        2.153233085 Secondary Carnivore
## 10688         6.27476202        7.288251436   Primary Carnivore
## 10689         4.55807858        6.670778349 Secondary Carnivore
## 10690         1.06594239        2.145288428 Secondary Carnivore
## 10691         2.39059597        1.886232978   Primary Carnivore
## 10692         5.50443683        6.942696930 Secondary Carnivore
## 10693         2.01623547        1.886232978   Primary Carnivore
## 10694         1.40609699        2.136925014 Secondary Carnivore
## 10695         0.00000000        2.404044412           Herbivore
## 10696         4.99043259        6.670778349 Secondary Carnivore
## 10697         3.44998755        1.886232978 Secondary Carnivore
## 10698         1.74221902        1.831515834 Secondary Carnivore
## 10699         0.83290912        1.315195554   Primary Carnivore
## 10700         2.67414865        1.168798094 Secondary Carnivore
## 10701         3.39785848        2.153233085 Secondary Carnivore
## 10702         3.76537743        1.886232978   Primary Carnivore
## 10703         0.53062825        2.472143654   Primary Carnivore
## 10704         3.68145194        1.014024833 Secondary Carnivore
## 10705         7.71020519        7.288251436 Secondary Carnivore
## 10706         2.18941639        1.532760019   Primary Carnivore
## 10707         1.82454929        3.226603994  Tertiary Carnivore
## 10708         1.79342475        4.047182371  Tertiary Carnivore
## 10709         6.29876541        6.849625561 Secondary Carnivore
## 10710         2.60172626        0.470853119  Tertiary Carnivore
## 10711         0.40879290        2.891851822 Secondary Carnivore
## 10712         0.00000000        0.009889753  Tertiary Carnivore
## 10713         2.70951579        1.540263127 Secondary Carnivore
## 10714         1.67147330        0.015041422   Primary Carnivore
## 10715         5.30330491        4.259772081 Secondary Carnivore
## 10716         3.64021428        1.070822001   Primary Carnivore
## 10717         1.89069942        2.075946520 Secondary Carnivore
## 10718         4.24849524        6.849625561 Secondary Carnivore
## 10719         3.97168717        4.232513096 Secondary Carnivore
## 10720         0.99694863        1.540263127   Primary Carnivore
## 10721         4.44851638        6.670778349 Secondary Carnivore
## 10722         0.00000000        0.015041422   Primary Carnivore
## 10723         2.62466859        0.004578480 Secondary Carnivore
## 10724         6.68511160        6.849625561 Secondary Carnivore
## 10725         5.30230939        6.670778349  Tertiary Carnivore
## 10726         4.50733683        2.387053327 Secondary Carnivore
## 10727         3.12236492        2.891851822 Secondary Carnivore
## 10728         6.72623340        6.942696930  Tertiary Carnivore
## 10729         1.04027671        0.116104790 Secondary Carnivore
## 10730         2.71469474        1.886232978 Secondary Carnivore
## 10731         1.30291275        0.490146528 Secondary Carnivore
## 10732         3.81771233        0.735932630 Secondary Carnivore
## 10733         2.84490938        4.259772081 Secondary Carnivore
## 10734         1.67147330        0.004578480   Primary Carnivore
## 10735         1.32441896        2.122440181 Secondary Carnivore
## 10736         1.66770682        0.490146528  Tertiary Carnivore
## 10737         1.69561561        0.009889753 Secondary Carnivore
## 10738         7.38634693        7.288251436 Secondary Carnivore
## 10739         1.45861502        0.223982763 Secondary Carnivore
## 10740         3.55820113        2.404044412 Secondary Carnivore
## 10741         3.95871573        3.473231162 Secondary Carnivore
## 10742         1.22377543        0.878396534   Primary Carnivore
## 10743         3.91800508        3.146907198  Tertiary Carnivore
## 10744         2.80336038        1.168798094 Secondary Carnivore
## 10745         1.79175947        0.878396534   Primary Carnivore
## 10746         1.75785792        0.223982763 Secondary Carnivore
## 10747         3.45568557        0.749689812   Primary Carnivore
## 10748         3.68250921        3.873611973 Secondary Carnivore
## 10749         1.42310833        1.454402431 Secondary Carnivore
## 10750         5.73979291        2.153233085   Primary Carnivore
## 10751         3.08190997        0.002059853 Secondary Carnivore
## 10752         3.23474917        1.886232978 Secondary Carnivore
## 10753         5.08140436        6.670778349   Primary Carnivore
## 10754         1.04027671        0.116104790 Secondary Carnivore
## 10755         3.91202301        0.004578480  Tertiary Carnivore
## 10756         3.92197334        6.670778349   Primary Carnivore
## 10757         2.33505228        1.886232978 Secondary Carnivore
## 10758         7.83391713        6.670778349 Secondary Carnivore
## 10759         4.52601875        2.138914945  Tertiary Carnivore
## 10760         4.56076888        1.432814265 Secondary Carnivore
## 10761         3.57632647        0.470853119 Secondary Carnivore
## 10762         2.94968834        1.307030142 Secondary Carnivore
## 10763         7.17142638        6.670778349 Secondary Carnivore
## 10764         2.37954613        0.490146528  Tertiary Carnivore
## 10765         1.80500470        1.886232978 Secondary Carnivore
## 10766         2.12584791        3.515099295 Secondary Carnivore
## 10767         4.80541352        4.094232049 Secondary Carnivore
## 10768         1.68639895        0.130455954 Secondary Carnivore
## 10769         6.91214563        6.670778349 Secondary Carnivore
## 10770         5.57473625        3.473231162   Primary Carnivore
## 10771         7.21604848        6.849625561 Secondary Carnivore
## 10772         2.43562887        2.853935439 Secondary Carnivore
## 10773         2.07693841        0.735932630 Secondary Carnivore
## 10774         1.28093385        0.130455954  Tertiary Carnivore
## 10775         1.41342303        0.413477448 Secondary Carnivore
## 10776         4.26310232        2.433189939  Tertiary Carnivore
## 10777         7.68959991        6.849625561 Secondary Carnivore
## 10778         4.26267988        7.288251436   Primary Carnivore
## 10779         3.49650756        1.168798094 Secondary Carnivore
## 10780         4.00551335        3.146907198 Secondary Carnivore
## 10781         4.20916024        1.886232978   Primary Carnivore
## 10782         7.83241093        6.942696930 Secondary Carnivore
## 10783         4.53646299        3.146907198 Secondary Carnivore
## 10784         8.53210151        6.849625561 Secondary Carnivore
## 10785         1.33500107        0.015041422 Secondary Carnivore
## 10786         2.82731362        0.002344505 Secondary Carnivore
## 10787         4.70048037        6.670778349 Secondary Carnivore
## 10788         4.35388433        1.168798094 Secondary Carnivore
## 10789         4.61541750        3.473231162  Tertiary Carnivore
## 10790         1.42069579        0.214753881 Secondary Carnivore
## 10791         1.06471074        0.305596011  Tertiary Carnivore
## 10792         5.16478597        7.288251436 Secondary Carnivore
## 10793         0.00000000        0.004578480 Secondary Carnivore
## 10794         1.09192330        1.180964506 Secondary Carnivore
## 10795         0.47000363        0.147199990 Secondary Carnivore
## 10796         0.00000000        0.004578480   Primary Carnivore
## 10797         5.39816270        7.288251436  Tertiary Carnivore
## 10798         1.19392247        1.670180746   Primary Carnivore
## 10799         5.50938834        4.094232049  Tertiary Carnivore
## 10800         1.77495235        0.490146528  Tertiary Carnivore
## 10801         3.23474917        1.670180746   Primary Carnivore
## 10802         3.06339092        0.735932630 Secondary Carnivore
## 10803         3.71843826        2.387053327 Secondary Carnivore
## 10804         1.67147330        0.856029167  Tertiary Carnivore
## 10805         4.98360662        6.849625561   Primary Carnivore
## 10806         0.00000000        0.147199990 Secondary Carnivore
## 10807         1.79175947        0.223982763 Secondary Carnivore
## 10808         1.49290410        0.823328714 Secondary Carnivore
## 10809         2.94443898        0.757060688 Secondary Carnivore
## 10810         2.60268969        0.009889753   Primary Carnivore
## 10811         1.69708242        2.122440181 Secondary Carnivore
## 10812         3.43398720        0.002344505 Secondary Carnivore
## 10813         4.80745776        1.168798094   Primary Carnivore
## 10814         1.60140574        0.281204828 Secondary Carnivore
## 10815         4.56954301        6.849625561 Secondary Carnivore
## 10816         1.85629799        0.002059853 Secondary Carnivore
## 10817         2.52652832        0.015041422   Primary Carnivore
## 10818         2.16332303        0.223982763 Secondary Carnivore
## 10819         1.66770682        2.894695819 Secondary Carnivore
## 10820         4.47960696        6.849625561 Secondary Carnivore
## 10821         0.00000000        0.015041422   Primary Carnivore
## 10822         4.85203026        6.942696930 Secondary Carnivore
## 10823         5.02388052        4.094232049   Primary Carnivore
## 10824         1.85848310        0.900183757   Primary Carnivore
## 10825         6.44730586        7.288251436 Secondary Carnivore
## 10826         0.00000000        1.315195554   Primary Carnivore
## 10827         4.79579055        7.288251436   Primary Carnivore
## 10828         2.86789890        2.387053327 Secondary Carnivore
## 10829         3.15700042        2.387053327 Secondary Carnivore
## 10830         1.09192330        0.211247175 Secondary Carnivore
## 10831         1.82454929        0.063185562 Secondary Carnivore
## 10832         1.02961942        2.894695819   Primary Carnivore
## 10833         4.59208495        2.387053327 Secondary Carnivore
## 10834         3.91657264        4.232513096   Primary Carnivore
## 10835         1.76644166        4.047182371 Secondary Carnivore
## 10836         2.74071098        3.873611973 Secondary Carnivore
## 10837         0.99325177        0.878396534   Primary Carnivore
## 10838         3.26956894        2.894695819   Primary Carnivore
## 10839         3.01944880        2.853935439 Secondary Carnivore
## 10840         7.72832775        6.670778349 Secondary Carnivore
## 10841         1.12167756        0.015041422   Primary Carnivore
## 10842         1.08180517        0.211247175 Secondary Carnivore
## 10843         0.83290912        0.470853119  Tertiary Carnivore
## 10844         4.12713439        0.004578480  Tertiary Carnivore
## 10845         0.00000000        1.126655451   Primary Carnivore
## 10846         3.58629287        6.670778349   Primary Carnivore
## 10847         0.01064316        0.305596011  Tertiary Carnivore
## 10848         1.38629436        0.020024930  Tertiary Carnivore
## 10849         1.24126859        0.561550440 Secondary Carnivore
## 10850         5.48188814        6.670778349 Secondary Carnivore
## 10851         7.34018684        6.942696930  Tertiary Carnivore
## 10852         1.32972401        0.015041422  Tertiary Carnivore
## 10853         6.06092531        2.610718759 Secondary Carnivore
## 10854         7.88615659        6.670778349 Secondary Carnivore
## 10855         4.25844557        0.002059853 Secondary Carnivore
## 10856         8.12346889        7.288251436 Secondary Carnivore
## 10857         1.14740245        0.015041422 Secondary Carnivore
## 10858         6.83936937        6.849625561 Secondary Carnivore
## 10859         6.41345896        4.094232049 Secondary Carnivore
## 10860         3.92395158        2.277308093   Primary Carnivore
## 10861         3.54673969        6.670778349 Secondary Carnivore
## 10862         3.56953270        2.387053327 Secondary Carnivore
## 10863         0.00000000        0.130455954 Secondary Carnivore
## 10864         4.41642806        6.670778349 Secondary Carnivore
## 10865         3.21112587        3.651616415 Secondary Carnivore
## 10866         3.01553490        0.015041422  Tertiary Carnivore
## 10867         4.29959566        2.153233085   Primary Carnivore
## 10868         4.83628191        6.849625561 Secondary Carnivore
## 10869         4.24769492        3.873611973 Secondary Carnivore
## 10870         3.91921707        1.506685742 Secondary Carnivore
## 10871         0.26236426        2.024989105   Primary Carnivore
## 10872         1.40609699        0.305596011  Tertiary Carnivore
## 10873         0.00000000        1.459857720   Primary Carnivore
## 10874         5.14166356        7.288251436  Tertiary Carnivore
## 10875         3.28057281        2.433189939 Secondary Carnivore
## 10876         4.45781801        7.288251436   Primary Carnivore
## 10877         4.27527626        6.670778349   Primary Carnivore
## 10878         7.52736356        7.288251436 Secondary Carnivore
## 10879         4.23555473        4.094232049 Secondary Carnivore
## 10880         0.02078254        1.180964506 Secondary Carnivore
## 10881         0.85441533        2.153233085           Herbivore
## 10882         0.00000000        0.130455954 Secondary Carnivore
## 10883         1.99877364        0.015041422  Tertiary Carnivore
## 10884         0.00000000        3.146907198   Primary Carnivore
## 10885         7.95384545        6.849625561 Secondary Carnivore
## 10886         2.64617480        0.305596011  Tertiary Carnivore
## 10887         3.12236492        3.038160131 Secondary Carnivore
## 10888         0.00000000        0.340191127   Primary Carnivore
## 10889         4.41558229        3.943759073 Secondary Carnivore
## 10890         3.70179568        0.735932630   Primary Carnivore
## 10891         4.56017282        3.146907198 Secondary Carnivore
## 10892         2.13416644        1.742111989 Secondary Carnivore
## 10893         6.77445243        6.670778349 Secondary Carnivore
## 10894         2.54160199        2.050338578   Primary Carnivore
## 10895         2.08815348        0.009889753           Herbivore
## 10896         2.89668512        2.136925014 Secondary Carnivore
## 10897         2.10413415        1.886232978 Secondary Carnivore
## 10898         4.71573613        3.304296954 Secondary Carnivore
## 10899         7.34665516        7.288251436 Secondary Carnivore
## 10900         5.22810947        1.168798094   Primary Carnivore
## 10901         2.21920348        0.223982763 Secondary Carnivore
## 10902         2.79116511        1.886232978   Primary Carnivore
## 10903         2.56240767        2.075946520   Primary Carnivore
## 10904         2.84490938        3.473231162  Tertiary Carnivore
## 10905         1.52388002        1.532760019 Secondary Carnivore
## 10906         3.63663834        3.651616415   Primary Carnivore
## 10907         2.36368019        0.015041422   Primary Carnivore
## 10908         3.92789635        6.849625561   Primary Carnivore
## 10909         2.91695959        2.433189939 Secondary Carnivore
## 10910         6.52590904        6.670778349 Secondary Carnivore
## 10911         2.45958884        0.015041422   Primary Carnivore
## 10912         2.59525471        3.473231162 Secondary Carnivore
## 10913         7.61386804        6.670778349 Secondary Carnivore
## 10914         2.27212589        1.532760019   Primary Carnivore
## 10915         3.68637632        2.153233085 Secondary Carnivore
## 10916         0.00000000        0.211247175 Secondary Carnivore
## 10917         3.33932198        2.404044412 Secondary Carnivore
## 10918         1.90389697        0.211247175 Secondary Carnivore
## 10919         3.25424297        3.515099295 Secondary Carnivore
## 10920         2.98568194        4.121930401   Primary Carnivore
## 10921         2.82137889        2.153233085 Secondary Carnivore
## 10922         3.15700042        1.168798094 Secondary Carnivore
## 10923         5.61312811        6.849625561   Primary Carnivore
## 10924         3.23080440        2.241290896   Primary Carnivore
## 10925         2.05412373        0.856029167 Secondary Carnivore
## 10926         2.47653840        0.885298676  Tertiary Carnivore
## 10927         3.24259235        0.749689812   Primary Carnivore
## 10928         3.23867845        3.146907198 Secondary Carnivore
## 10929         2.27829240        2.387053327  Tertiary Carnivore
## 10930         5.44570235        1.168798094   Primary Carnivore
## 10931         5.77455155        6.942696930  Tertiary Carnivore
## 10932         4.57367952        4.094232049 Secondary Carnivore
## 10933         6.28897318        6.670778349 Secondary Carnivore
## 10934         4.86375810        1.673740129   Primary Carnivore
## 10935         2.81367068        2.891851822  Tertiary Carnivore
## 10936         0.00000000        0.002344505 Secondary Carnivore
## 10937         1.20297230        0.015041422   Primary Carnivore
## 10938         2.83749827        2.853935439 Secondary Carnivore
## 10939         7.05142263        6.670778349 Secondary Carnivore
## 10940         3.25037449        0.020024930   Primary Carnivore
## 10941         1.00063188        1.711701702 Secondary Carnivore
## 10942         7.78130551        6.670778349 Secondary Carnivore
## 10943         7.82043952        7.288251436 Secondary Carnivore
## 10944         8.06495089        4.094232049 Secondary Carnivore
## 10945         0.79750720        0.413477448 Secondary Carnivore
## 10946         0.00000000        1.673740129           Herbivore
## 10947         4.51085951        7.288251436 Secondary Carnivore
## 10948         2.25023861        0.214753881 Secondary Carnivore
## 10949         2.82137889        0.009889753   Primary Carnivore
## 10950         8.50329709        7.288251436 Secondary Carnivore
## 10951         4.58598737        4.094232049 Secondary Carnivore
## 10952         3.79098468        1.168798094 Secondary Carnivore
## 10953         0.00000000        0.015041422   Primary Carnivore
## 10954         2.54944517        0.015041422  Tertiary Carnivore
## 10955         5.52146092        6.942696930 Secondary Carnivore
## 10956         2.94443898        2.894695819   Primary Carnivore
## 10957         1.62136648        1.180964506  Tertiary Carnivore
## 10958         3.72810017        1.673740129 Secondary Carnivore
## 10959         3.66612247        6.849625561 Secondary Carnivore
## 10960         0.83290912        0.147199990  Tertiary Carnivore
## 10961         1.66203036        0.009889753  Tertiary Carnivore
## 10962         4.30000280        6.849625561 Secondary Carnivore
## 10963         1.69009582        0.015041422 Secondary Carnivore
## 10964         3.88362353        6.849625561   Primary Carnivore
## 10965         2.54944517        0.044241443   Primary Carnivore
## 10966         0.63180355        4.047182371   Primary Carnivore
## 10967         3.87120101        1.673740129 Secondary Carnivore
## 10968         3.59731226        2.153233085 Secondary Carnivore
## 10969         4.66343909        6.849625561 Secondary Carnivore
## 10970         5.57215403        4.259772081   Primary Carnivore
## 10971         1.27256560        0.823328714 Secondary Carnivore
## 10972         0.82855182        1.877421323 Secondary Carnivore
## 10973         6.11146734        7.288251436   Primary Carnivore
## 10974         0.00000000        0.116104790 Secondary Carnivore
## 10975         4.98360662        4.094232049   Primary Carnivore
## 10976         4.46579317        3.473231162   Primary Carnivore
## 10977         5.35185813        7.288251436  Tertiary Carnivore
## 10978         1.99741771        0.490146528  Tertiary Carnivore
## 10979         3.81683282        2.153233085 Secondary Carnivore
## 10980         0.30748470        0.211247175  Tertiary Carnivore
## 10981         6.27795841        6.670778349 Secondary Carnivore
## 10982         1.22671229        0.305596011  Tertiary Carnivore
## 10983         0.69314718        0.470853119  Tertiary Carnivore
## 10984         2.91158951        1.962719022 Secondary Carnivore
## 10985         3.93573953        1.168798094 Secondary Carnivore
## 10986         2.77819796        0.015041422   Primary Carnivore
## 10987         4.29728541        4.094232049 Secondary Carnivore
## 10988         0.00000000        0.009889753  Tertiary Carnivore
## 10989         7.22875123        6.670778349 Secondary Carnivore
## 10990         5.55902642        1.168798094   Primary Carnivore
## 10991         7.02028007        6.670778349 Secondary Carnivore
## 10992         2.37861978        2.387053327 Secondary Carnivore
## 10993         4.48863637        6.670778349 Secondary Carnivore
## 10994         0.78845736        0.130455954 Secondary Carnivore
## 10995         0.40546511        2.894695819   Primary Carnivore
## 10996         7.34665516        7.288251436 Secondary Carnivore
## 10997         0.00000000        1.459857720   Primary Carnivore
## 10998         0.00000000        0.002344505 Secondary Carnivore
## 10999         4.92308559        7.288251436 Secondary Carnivore
## 11000         3.36729583        1.168798094 Secondary Carnivore
## 11001         1.78170913        0.856029167   Primary Carnivore
## 11002         6.08904488        7.288251436 Secondary Carnivore
## 11003         2.16676537        0.015041422  Tertiary Carnivore
## 11004         3.75560309        6.942696930 Secondary Carnivore
## 11005         0.83290912        4.262479896 Secondary Carnivore
## 11006         1.05779029        2.122440181 Secondary Carnivore
## 11007         4.51085951        7.288251436 Secondary Carnivore
## 11008         1.93152141        0.490146528 Secondary Carnivore
## 11009         2.03339760        1.742111989 Secondary Carnivore
## 11010         3.68135119        2.387053327 Secondary Carnivore
## 11011         2.56510319        2.254856321   Primary Carnivore
## 11012         5.64897424        4.259772081 Secondary Carnivore
## 11013         3.51868408        1.886232978 Secondary Carnivore
## 11014         2.54944517        0.281204828 Secondary Carnivore
## 11015         5.89715387        6.942696930  Tertiary Carnivore
## 11016         2.61739583        1.742111989 Secondary Carnivore
## 11017         2.24191003        6.670778349 Secondary Carnivore
## 11018         7.47363711        7.288251436 Secondary Carnivore
## 11019         1.96571278        0.856029167 Secondary Carnivore
## 11020         0.40546511        0.063185562 Secondary Carnivore
## 11021         6.19031541        6.942696930  Tertiary Carnivore
## 11022         2.28033948        1.532760019   Primary Carnivore
## 11023         2.13947776        4.047182371 Secondary Carnivore
## 11024         3.49650756        3.146907198 Secondary Carnivore
## 11025         0.53062825        0.130455954  Tertiary Carnivore
## 11026         3.95316495        6.670778349 Secondary Carnivore
## 11027         3.73050113        6.670778349 Secondary Carnivore
## 11028         3.05870707        3.038160131 Secondary Carnivore
## 11029         8.44080878        6.849625561 Secondary Carnivore
## 11030         2.32630162        2.845177164 Secondary Carnivore
## 11031         1.48160454        0.130455954 Secondary Carnivore
## 11032         3.57234564        3.168005566 Secondary Carnivore
## 11033         6.59441346        7.288251436  Tertiary Carnivore
## 11034         4.60616969        4.259772081  Tertiary Carnivore
## 11035         1.54756251        0.015041422 Secondary Carnivore
## 11036         4.22537282        1.168798094 Secondary Carnivore
## 11037         0.00000000        0.470853119  Tertiary Carnivore
## 11038         2.98061864        2.387053327 Secondary Carnivore
## 11039         3.76352300        1.168798094 Secondary Carnivore
## 11040         3.19179236        1.540263127 Secondary Carnivore
## 11041         4.01096295        6.670778349 Secondary Carnivore
## 11042         5.11198779        4.094232049  Tertiary Carnivore
## 11043         1.16315081        1.126655451   Primary Carnivore
## 11044         1.19392247        0.211247175 Secondary Carnivore
## 11045         7.39079852        7.288251436 Secondary Carnivore
## 11046         4.66861436        2.153233085 Secondary Carnivore
## 11047         1.54756251        0.009889753  Tertiary Carnivore
## 11048         6.06610809        7.288251436  Tertiary Carnivore
## 11049         4.04480412        6.942696930  Tertiary Carnivore
## 11050         4.98561830        3.304296954   Primary Carnivore
## 11051         6.77502357        6.849625561 Secondary Carnivore
## 11052         4.62497281        3.168005566 Secondary Carnivore
## 11053         2.58021683        1.532760019   Primary Carnivore
## 11054         4.98360662        4.094232049   Primary Carnivore
## 11055         2.63905733        2.153233085 Secondary Carnivore
## 11056         5.22035583        3.146907198 Secondary Carnivore
## 11057         7.13297667        6.670778349 Secondary Carnivore
## 11058         2.58776404        0.757060688 Secondary Carnivore
## 11059         2.11709853        3.515099295 Secondary Carnivore
## 11060         2.36837283        0.735932630 Secondary Carnivore
## 11061         4.18813844        6.849625561  Tertiary Carnivore
## 11062         0.00000000        0.004578480 Secondary Carnivore
## 11063         3.41444261        1.742111989 Secondary Carnivore
## 11064         5.13603370        1.673740129 Secondary Carnivore
## 11065         1.80664808        0.116104790 Secondary Carnivore
## 11066         3.39114705        1.670180746 Secondary Carnivore
## 11067         1.30019166        2.845177164 Secondary Carnivore
## 11068         3.13113691        4.259772081 Secondary Carnivore
## 11069         2.64326276        0.490146528 Secondary Carnivore
## 11070         0.00000000        0.015041422 Secondary Carnivore
## 11071         4.08260931        6.670778349 Secondary Carnivore
## 11072         5.02388052        6.942696930 Secondary Carnivore
## 11073         1.04027671        0.885298676 Secondary Carnivore
## 11074         3.94931879        7.161415474 Secondary Carnivore
## 11075         0.00000000        0.002059853 Secondary Carnivore
## 11076         2.14943391        0.735932630 Secondary Carnivore
## 11077         7.29369772        7.288251436 Secondary Carnivore
## 11078         1.53686722        0.015041422  Tertiary Carnivore
## 11079         0.00000000        0.147199990 Secondary Carnivore
## 11080         2.11142459        0.900183757 Secondary Carnivore
## 11081         1.82454929        0.490146528  Tertiary Carnivore
## 11082         0.83290912        1.831515834 Secondary Carnivore
## 11083         4.75780543        4.094232049 Secondary Carnivore
## 11084         2.74084002        1.886232978 Secondary Carnivore
## 11085         6.03954017        1.886232978 Secondary Carnivore
## 11086         0.17395331        1.532760019  Tertiary Carnivore
## 11087         3.28091122        3.146907198 Secondary Carnivore
## 11088         5.35185813        7.288251436  Tertiary Carnivore
## 11089         0.00000000        2.404044412           Herbivore
## 11090         1.19392247        0.147199990 Secondary Carnivore
## 11091         4.44968528        1.168798094  Tertiary Carnivore
## 11092         4.82807371        1.673740129   Primary Carnivore
## 11093         0.00000000        1.877421323 Secondary Carnivore
## 11094         7.68303529        6.849625561 Secondary Carnivore
## 11095         1.85207032        0.211247175 Secondary Carnivore
## 11096         0.19885086        0.305596011 Secondary Carnivore
## 11097         1.65822808        0.885298676  Tertiary Carnivore
## 11098         1.84292776        1.962719022 Secondary Carnivore
## 11099         2.58021683        2.136925014 Secondary Carnivore
## 11100         5.77299754        1.886232978   Primary Carnivore
## 11101         4.45771372        1.886232978   Primary Carnivore
## 11102         2.77102500        1.962719022  Tertiary Carnivore
## 11103         3.94352167        3.146907198  Tertiary Carnivore
## 11104         2.95491028        2.472143654   Primary Carnivore
## 11105         7.98214318        6.849625561 Secondary Carnivore
## 11106         4.79892612        2.387053327   Primary Carnivore
## 11107         0.92821930        6.942696930           Herbivore
## 11108         7.83494639        6.670778349 Secondary Carnivore
## 11109         7.03341830        6.670778349 Secondary Carnivore
## 11110         1.32175584        2.254856321 Secondary Carnivore
## 11111         6.78649119        6.670778349  Tertiary Carnivore
## 11112         0.00000000        1.670180746   Primary Carnivore
## 11113         0.00000000        2.404044412           Herbivore
## 11114         5.90511659        1.886232978   Primary Carnivore
## 11115         4.61485315        1.432814265 Secondary Carnivore
## 11116         4.22753423        1.506685742   Primary Carnivore
## 11117         7.39184671        7.288251436 Secondary Carnivore
## 11118         1.28923265        0.856029167 Secondary Carnivore
## 11119         1.51292701        0.015041422 Secondary Carnivore
## 11120         0.97455964        0.305596011  Tertiary Carnivore
## 11121         7.97968130        7.288251436 Secondary Carnivore
## 11122         1.18784342        0.561550440 Secondary Carnivore
## 11123         4.06355884        2.138914945 Secondary Carnivore
## 11124         3.19043520        2.610718759 Secondary Carnivore
## 11125         1.76985463        0.015041422  Tertiary Carnivore
## 11126         5.38587026        0.004578480  Tertiary Carnivore
## 11127         1.32441896        4.047182371 Secondary Carnivore
## 11128         0.83290912        5.169038067   Primary Carnivore
## 11129         2.56617937        1.962719022 Secondary Carnivore
## 11130         2.17815501        2.845177164 Secondary Carnivore
## 11131         4.96284463        6.670778349  Tertiary Carnivore
## 11132         2.16217294        0.009889753   Primary Carnivore
## 11133         0.90421815        0.305596011  Tertiary Carnivore
## 11134         0.00000000        1.886232978           Herbivore
## 11135         1.34547237        0.856029167 Secondary Carnivore
## 11136         0.00000000        0.004578480  Tertiary Carnivore
## 11137         3.57660621        1.432814265  Tertiary Carnivore
## 11138         0.43048287        0.856029167  Tertiary Carnivore
## 11139         7.98132323        6.670778349 Secondary Carnivore
## 11140         3.66867675        0.749689812   Primary Carnivore
## 11141         1.19392247        1.532760019  Tertiary Carnivore
## 11142         4.18801704        3.651616415   Primary Carnivore
## 11143         1.44926916        1.251683108 Secondary Carnivore
## 11144         4.50534985        4.094232049  Tertiary Carnivore
## 11145         2.44633906        0.470853119 Secondary Carnivore
## 11146         4.34510328        6.670778349 Secondary Carnivore
## 11147         4.84418709        3.146907198 Secondary Carnivore
## 11148         1.49962305        0.561550440 Secondary Carnivore
## 11149         6.67997600        6.670778349 Secondary Carnivore
## 11150         2.11384297        0.009889753 Secondary Carnivore
## 11151         3.50453585        3.873611973  Tertiary Carnivore
## 11152         8.49631679        6.849625561 Secondary Carnivore
## 11153         5.86646806        2.153233085  Tertiary Carnivore
## 11154         0.37156356        0.130455954 Secondary Carnivore
## 11155         0.00000000        1.981883583   Primary Carnivore
## 11156         4.31348009        4.259772081 Secondary Carnivore
## 11157         2.82137889        1.168798094 Secondary Carnivore
## 11158         2.65324196        0.002344505 Secondary Carnivore
## 11159         3.85014760        6.849625561 Secondary Carnivore
## 11160         3.86157146        0.015041422 Secondary Carnivore
## 11161         3.26575941        2.387053327 Secondary Carnivore
## 11162         4.62497281        4.259772081 Secondary Carnivore
## 11163         2.94443898        0.004578480  Tertiary Carnivore
## 11164         4.39444915        7.288251436 Secondary Carnivore
## 11165         0.99325177        0.130455954  Tertiary Carnivore
## 11166         4.00369019        1.307030142 Secondary Carnivore
## 11167         0.53999600        0.413477448  Tertiary Carnivore
## 11168         0.26236426        1.920179330   Primary Carnivore
## 11169         3.30310667        1.506685742 Secondary Carnivore
## 11170         0.00000000        0.130455954 Secondary Carnivore
## 11171         4.21331208        1.886232978 Secondary Carnivore
## 11172         5.75574221        1.168798094 Secondary Carnivore
## 11173         1.56024767        0.009889753   Primary Carnivore
## 11174         2.02683159        0.885298676  Tertiary Carnivore
## 11175         4.75531284        3.943759073 Secondary Carnivore
## 11176         4.99767163        4.232513096 Secondary Carnivore
## 11177         2.22354189        0.015041422 Secondary Carnivore
## 11178         3.26575941        5.169038067   Primary Carnivore
## 11179         1.71918878        0.856029167   Primary Carnivore
## 11180         1.13462273        2.136925014 Secondary Carnivore
## 11181         0.58778666        0.147199990 Secondary Carnivore
## 11182         1.84150156        1.711701702  Tertiary Carnivore
## 11183         2.97041447        2.387053327 Secondary Carnivore
## 11184         0.00000000        0.002344505 Secondary Carnivore
## 11185         0.00000000        2.404044412           Herbivore
## 11186         2.77258872        0.116104790 Secondary Carnivore
## 11187         1.85629799        0.490146528  Tertiary Carnivore
## 11188         4.59410924        3.168005566 Secondary Carnivore
## 11189         5.56452041        7.288251436  Tertiary Carnivore
## 11190         8.05360097        6.670778349 Secondary Carnivore
## 11191         3.24649099        1.307030142 Secondary Carnivore
## 11192         1.70292826        0.015041422 Secondary Carnivore
## 11193         3.88752537        0.749689812   Primary Carnivore
## 11194         0.00000000        0.015041422  Tertiary Carnivore
## 11195         5.18178355        6.849625561 Secondary Carnivore
## 11196         2.40865536        1.540263127 Secondary Carnivore
## 11197         2.90690106        3.515099295 Secondary Carnivore
## 11198         2.61739583        0.757060688  Tertiary Carnivore
## 11199         2.52572864        0.735932630 Secondary Carnivore
## 11200         3.36037539        2.891851822  Tertiary Carnivore
## 11201         3.35340672        5.169038067   Primary Carnivore
## 11202         0.00000000        1.886232978           Herbivore
## 11203         1.98787435        2.241290896   Primary Carnivore
## 11204         2.68852753        3.226603994 Secondary Carnivore
## 11205         2.58776404        2.136925014 Secondary Carnivore
## 11206         1.35325451        2.404044412 Secondary Carnivore
## 11207         4.70953020        7.288251436 Secondary Carnivore
## 11208         7.35212054        6.849625561 Secondary Carnivore
## 11209         2.56494936        1.315195554 Secondary Carnivore
## 11210         5.81889528        6.849625561 Secondary Carnivore
## 11211         1.79275897        0.116104790 Secondary Carnivore
## 11212         1.62924054        0.147199990 Secondary Carnivore
## 11213         7.75022723        6.670778349 Secondary Carnivore
## 11214         3.79773386        4.094232049 Secondary Carnivore
## 11215         0.95551145        0.490146528  Tertiary Carnivore
## 11216         1.53255687        2.075946520 Secondary Carnivore
## 11217         5.14813381        1.886232978   Primary Carnivore
## 11218         0.00000000        1.886232978           Herbivore
## 11219         0.33647224        2.894695819   Primary Carnivore
## 11220         3.28578653        0.015041422 Secondary Carnivore
## 11221         2.29253476        1.315195554   Primary Carnivore
## 11222         7.29715875        6.849625561 Secondary Carnivore
## 11223         0.26236426        2.024989105   Primary Carnivore
## 11224         0.68813464        1.251683108 Secondary Carnivore
## 11225         1.02961942        0.470853119  Tertiary Carnivore
## 11226         1.26976054        1.180964506 Secondary Carnivore
## 11227         4.04305127        6.670778349  Tertiary Carnivore
## 11228         3.96840334        2.050338578   Primary Carnivore
## 11229         5.72227706        6.849625561 Secondary Carnivore
## 11230         4.79579055        7.288251436 Secondary Carnivore
## 11231         7.40482675        6.670778349 Secondary Carnivore
## 11232         0.78845736        7.161415474   Primary Carnivore
## 11233         5.57215403        4.259772081   Primary Carnivore
## 11234         3.51452607        1.886232978 Secondary Carnivore
## 11235         1.87640694        0.885298676  Tertiary Carnivore
## 11236         2.63905733        0.002059853 Secondary Carnivore
## 11237         0.00000000        2.894695819   Primary Carnivore
## 11238         3.40452517        1.886232978 Secondary Carnivore
## 11239         0.00000000        0.002059853 Secondary Carnivore
## 11240         2.24918432        0.009889753   Primary Carnivore
## 11241         1.66392610        0.211247175 Secondary Carnivore
## 11242         0.06765865        0.305596011 Secondary Carnivore
## 11243         2.27212589        1.670180746 Secondary Carnivore
## 11244         2.77881927        0.885298676  Tertiary Carnivore
## 11245         6.58340922        4.259772081  Tertiary Carnivore
## 11246         0.00000000        1.670180746   Primary Carnivore
## 11247         1.45161383        1.532760019 Secondary Carnivore
## 11248         1.99333884        1.307030142 Secondary Carnivore
## 11249         0.00000000        0.002059853 Secondary Carnivore
## 11250         2.04122033        0.063185562 Secondary Carnivore
## 11251         2.23537634        0.015041422 Secondary Carnivore
## 11252         2.58021683        2.891851822 Secondary Carnivore
## 11253         4.25134831        1.168798094 Secondary Carnivore
## 11254         0.00000000        2.404044412           Herbivore
## 11255         1.47476301        0.900183757 Secondary Carnivore
## 11256         6.77490937        6.849625561 Secondary Carnivore
## 11257         3.42816383        0.015041422   Primary Carnivore
## 11258         1.61541998        0.009889753  Tertiary Carnivore
## 11259         6.90505163        6.849625561 Secondary Carnivore
## 11260         1.66770682        0.002344505 Secondary Carnivore
## 11261         3.03013370        3.146907198 Secondary Carnivore
## 11262         1.81156210        0.211247175 Secondary Carnivore
## 11263         1.01884732        0.223982763 Secondary Carnivore
## 11264         1.51072194        0.015041422  Tertiary Carnivore
## 11265         5.68357977        4.094232049  Tertiary Carnivore
## 11266         4.79579055        7.288251436 Secondary Carnivore
## 11267         1.19996478        0.015041422  Tertiary Carnivore
## 11268         7.45066080        7.288251436 Secondary Carnivore
## 11269         2.47863704        1.711701702   Primary Carnivore
## 11270         1.31640823        0.214753881 Secondary Carnivore
## 11271         6.08677473        4.094232049 Secondary Carnivore
## 11272         3.51443678        2.610718759 Secondary Carnivore
## 11273         2.92316158        3.473231162 Secondary Carnivore
## 11274         1.77495235        0.002344505 Secondary Carnivore
## 11275         0.00000000        1.877421323 Secondary Carnivore
## 11276         2.32727771        0.009889753           Herbivore
## 11277         1.43983513        0.305596011  Tertiary Carnivore
## 11278         5.21553341        0.735932630   Primary Carnivore
## 11279         4.19166787        2.433189939 Secondary Carnivore
## 11280         1.47796155        1.711701702  Tertiary Carnivore
## 11281         2.28238239        1.315195554 Secondary Carnivore
## 11282         2.55722731        1.315195554 Secondary Carnivore
## 11283         3.16665579        0.470853119 Secondary Carnivore
## 11284         0.00000000        0.002344505  Tertiary Carnivore
## 11285         2.79116511        0.009889753           Herbivore
## 11286         1.75958057        4.262479896 Secondary Carnivore
## 11287         1.29746315        0.413477448 Secondary Carnivore
## 11288         2.85647021        1.886232978 Secondary Carnivore
## 11289         2.85070650        0.063185562 Secondary Carnivore
## 11290         5.18505908        1.432814265 Secondary Carnivore
## 11291         1.20297230        1.831515834  Tertiary Carnivore
## 11292         3.26956894        1.886232978 Secondary Carnivore
## 11293         3.80443779        6.670778349   Primary Carnivore
## 11294         5.01727984        7.288251436  Tertiary Carnivore
## 11295         3.85227300        6.670778349 Secondary Carnivore
## 11296         3.27222700        0.735932630   Primary Carnivore
## 11297         1.08180517        0.116104790 Secondary Carnivore
## 11298         1.89611948        0.885298676 Secondary Carnivore
## 11299         1.66770682        0.490146528 Secondary Carnivore
## 11300         4.27495632        4.232513096  Tertiary Carnivore
## 11301         5.77827133        6.670778349  Tertiary Carnivore
## 11302         0.00000000        1.673740129           Herbivore
## 11303         1.48387469        0.885298676 Secondary Carnivore
## 11304         3.55820113        2.153233085           Herbivore
## 11305         0.78845736        2.145288428 Secondary Carnivore
## 11306         2.00417906        0.211247175 Secondary Carnivore
## 11307         8.42299240        6.849625561 Secondary Carnivore
## 11308         6.01859321        7.288251436  Tertiary Carnivore
## 11309         0.00000000        0.002059853 Secondary Carnivore
## 11310         1.95727391        0.004578480   Primary Carnivore
## 11311         1.62924054        0.223982763 Secondary Carnivore
## 11312         1.04027671        1.454402431 Secondary Carnivore
## 11313         5.44241771        2.153233085 Secondary Carnivore
## 11314         3.06339092        3.943759073 Secondary Carnivore
## 11315         2.53369681        1.981883583   Primary Carnivore
## 11316         4.09434456        7.288251436 Secondary Carnivore
## 11317         3.28776736        2.433189939  Tertiary Carnivore
## 11318         5.30330491        7.288251436 Secondary Carnivore
## 11319         0.00000000        0.009889753 Secondary Carnivore
## 11320         5.28826703        2.153233085  Tertiary Carnivore
## 11321         0.95551145        0.211247175 Secondary Carnivore
## 11322         1.67335124        0.735932630 Secondary Carnivore
## 11323         2.70136121        3.515099295 Secondary Carnivore
## 11324         1.18172720        2.387053327 Secondary Carnivore
## 11325         2.41126011        1.014024833 Secondary Carnivore
## 11326         2.32238772        0.223982763 Secondary Carnivore
## 11327         7.51261754        6.942696930 Secondary Carnivore
## 11328         0.00000000        0.009889753 Secondary Carnivore
## 11329         2.63905733        0.002059853 Secondary Carnivore
## 11330         0.91629073        0.063185562 Secondary Carnivore
## 11331         3.02456266        2.254856321 Secondary Carnivore
## 11332         1.41098697        0.147199990 Secondary Carnivore
## 11333         3.78940329        0.214753881  Tertiary Carnivore
## 11334         0.83290912        0.130455954 Secondary Carnivore
## 11335         7.62525355        6.849625561 Secondary Carnivore
## 11336         3.34990409        2.387053327   Primary Carnivore
## 11337         4.61512052        7.288251436  Tertiary Carnivore
## 11338         3.55010577        1.540263127 Secondary Carnivore
## 11339         1.24990174        2.241290896   Primary Carnivore
## 11340         7.22329568        7.288251436 Secondary Carnivore
## 11341         4.71849887        3.146907198 Secondary Carnivore
## 11342         3.92296295        2.138914945 Secondary Carnivore
## 11343         3.28091122        1.168798094   Primary Carnivore
## 11344         2.38139627        2.136925014 Secondary Carnivore
## 11345         1.34547237        0.885298676 Secondary Carnivore
## 11346         2.23697934        0.490146528   Primary Carnivore
## 11347         2.91463067        2.136925014 Secondary Carnivore
## 11348         4.30217141        0.002059853 Secondary Carnivore
## 11349         1.13140211        0.470853119  Tertiary Carnivore
## 11350         3.38113072        1.632888289 Secondary Carnivore
## 11351         1.53901545        2.853935439 Secondary Carnivore
## 11352         2.98061864        0.885298676  Tertiary Carnivore
## 11353         1.95868534        0.211247175 Secondary Carnivore
## 11354         1.68639895        7.161415474 Secondary Carnivore
## 11355         3.09557761        0.009889753   Primary Carnivore
## 11356         2.63991411        2.254856321   Primary Carnivore
## 11357         0.00000000        0.305596011 Secondary Carnivore
## 11358         3.36037539        1.168798094 Secondary Carnivore
## 11359         1.59533899        0.413477448 Secondary Carnivore
## 11360         3.56133013        1.886232978 Secondary Carnivore
## 11361         4.65396035        1.168798094 Secondary Carnivore
## 11362         0.00000000        1.459857720   Primary Carnivore
## 11363         7.34968088        6.849625561 Secondary Carnivore
## 11364         4.68213123        6.670778349  Tertiary Carnivore
## 11365         1.31908561        0.004578480   Primary Carnivore
## 11366         8.85237889        7.288251436 Secondary Carnivore
## 11367         0.93216408        4.094232049           Herbivore
## 11368         4.86753445        2.153233085 Secondary Carnivore
## 11369         0.00000000        0.281204828 Secondary Carnivore
## 11370         2.12823171        0.211247175 Secondary Carnivore
## 11371         5.67194775        1.886232978 Secondary Carnivore
## 11372         0.82417544        1.831515834   Primary Carnivore
## 11373         0.63657683        4.259772081           Herbivore
## 11374         6.61069604        6.942696930 Secondary Carnivore
## 11375         3.42426265        3.651616415  Tertiary Carnivore
## 11376         3.73440238        3.943759073 Secondary Carnivore
## 11377         3.66612247        0.749689812   Primary Carnivore
## 11378         2.08193842        0.004578480  Tertiary Carnivore
## 11379         0.00000000        2.145288428 Secondary Carnivore
## 11380         3.77045944        2.050338578   Primary Carnivore
## 11381         8.52734152        7.288251436 Secondary Carnivore
## 11382         3.71571611        2.433189939 Secondary Carnivore
## 11383         3.06339092        0.735932630 Secondary Carnivore
## 11384         2.61520365        3.226603994  Tertiary Carnivore
## 11385         7.20630310        6.849625561 Secondary Carnivore
## 11386         2.83321334        3.146907198 Secondary Carnivore
## 11387         2.80940270        1.420705940 Secondary Carnivore
## 11388         6.99062476        7.288251436 Secondary Carnivore
## 11389         4.47847253        1.168798094 Secondary Carnivore
## 11390         1.68639895        0.116104790 Secondary Carnivore
## 11391         0.00000000        0.009889753           Herbivore
## 11392         2.50470928        1.432814265 Secondary Carnivore
## 11393         6.66134310        6.670778349 Secondary Carnivore
## 11394         0.87546874        0.063185562 Secondary Carnivore
## 11395         3.20453346        2.610718759  Tertiary Carnivore
## 11396         1.08518927        1.180964506  Tertiary Carnivore
## 11397         3.00071982        0.214753881  Tertiary Carnivore
## 11398         2.00552586        1.307030142 Secondary Carnivore
## 11399         1.46325540        4.094232049           Herbivore
## 11400         4.53689135        1.673740129 Secondary Carnivore
## 11401         5.25227343        7.288251436   Primary Carnivore
## 11402         3.03013370        1.670180746   Primary Carnivore
## 11403         5.25017699        3.473231162   Primary Carnivore
## 11404         3.88567903        2.387053327 Secondary Carnivore
## 11405         3.89731538        0.735932630 Secondary Carnivore
## 11406         5.54126355        3.146907198 Secondary Carnivore
## 11407         4.77912349        4.094232049  Tertiary Carnivore
## 11408         1.70402055        0.211247175 Secondary Carnivore
## 11409         2.81540872        0.757060688 Secondary Carnivore
## 11410         7.84998662        6.670778349 Secondary Carnivore
## 11411         0.00000000        0.002344505  Tertiary Carnivore
## 11412         3.94158181        3.168005566 Secondary Carnivore
## 11413         1.73342389        0.015041422 Secondary Carnivore
## 11414         3.49347266        1.168798094 Secondary Carnivore
## 11415         0.26236426        2.107009466   Primary Carnivore
## 11416         0.00000000        2.107009466   Primary Carnivore
## 11417         2.84490938        0.020024930  Tertiary Carnivore
## 11418         0.74193734        2.241290896   Primary Carnivore
## 11419         1.67335124        0.490146528 Secondary Carnivore
## 11420         4.02177387        2.153233085  Tertiary Carnivore
## 11421         4.50976000        6.670778349 Secondary Carnivore
## 11422         4.07414185        3.159561805   Primary Carnivore
## 11423         2.76744803        6.670778349 Secondary Carnivore
## 11424         2.96460274        3.038160131 Secondary Carnivore
## 11425         5.17868888        2.153233085 Secondary Carnivore
## 11426         1.55180880        0.009889753  Tertiary Carnivore
## 11427         1.38629436        0.063185562 Secondary Carnivore
## 11428         4.54648119        3.146907198 Secondary Carnivore
## 11429         2.37024374        0.490146528 Secondary Carnivore
## 11430         0.30748470        4.259772081           Herbivore
## 11431         2.01089500        0.214753881 Secondary Carnivore
## 11432         3.39450839        1.479154529   Primary Carnivore
## 11433         2.68784749        0.757060688   Primary Carnivore
## 11434         2.35801980        3.515099295 Secondary Carnivore
## 11435         3.76584050        0.009889753  Tertiary Carnivore
## 11436         0.81536481        1.251683108 Secondary Carnivore
## 11437         0.00000000        1.886232978           Herbivore
## 11438         1.28923265        0.004578480 Secondary Carnivore
## 11439         2.00512201        2.853935439   Primary Carnivore
## 11440         4.74449725        3.146907198 Secondary Carnivore
## 11441         4.03777421        6.670778349   Primary Carnivore
## 11442         4.71635371        1.168798094 Secondary Carnivore
## 11443         0.36394843        0.413477448  Tertiary Carnivore
## 11444         0.00000000        0.009889753           Herbivore
## 11445         4.94875989        7.288251436 Secondary Carnivore
## 11446         3.99636415        6.670778349 Secondary Carnivore
## 11447         1.15688120        0.004578480   Primary Carnivore
## 11448         3.51452607        1.168798094 Secondary Carnivore
## 11449         8.20305762        7.288251436 Secondary Carnivore
## 11450         0.81668960        1.705681497 Secondary Carnivore
## 11451         2.55567572        0.015041422   Primary Carnivore
## 11452         1.34547237        1.962719022 Secondary Carnivore
## 11453         2.37954613        0.004578480 Secondary Carnivore
## 11454         4.85203026        6.849625561  Tertiary Carnivore
## 11455         0.95165788        1.877421323 Secondary Carnivore
## 11456         4.74701691        0.002059853 Secondary Carnivore
## 11457         0.98954119        0.116104790 Secondary Carnivore
## 11458         7.58054668        6.670778349 Secondary Carnivore
## 11459         3.03013370        2.153233085 Secondary Carnivore
## 11460         6.27476202        7.288251436   Primary Carnivore
## 11461         4.55807858        6.670778349 Secondary Carnivore
## 11462         1.06594239        2.145288428 Secondary Carnivore
## 11463         2.39059597        1.886232978   Primary Carnivore
## 11464         5.50443683        6.942696930 Secondary Carnivore
## 11465         2.01623547        1.886232978   Primary Carnivore
## 11466         1.40609699        2.136925014 Secondary Carnivore
## 11467         0.00000000        2.404044412           Herbivore
## 11468         4.99043259        6.670778349 Secondary Carnivore
## 11469         3.44998755        1.886232978 Secondary Carnivore
## 11470         1.74221902        1.831515834 Secondary Carnivore
## 11471         0.83290912        1.315195554   Primary Carnivore
## 11472         2.67414865        1.168798094 Secondary Carnivore
## 11473         3.39785848        2.153233085 Secondary Carnivore
## 11474         3.76537743        1.886232978   Primary Carnivore
## 11475         0.53062825        2.472143654   Primary Carnivore
## 11476         3.68145194        1.014024833 Secondary Carnivore
## 11477         7.71020519        7.288251436 Secondary Carnivore
## 11478         2.18941639        1.532760019   Primary Carnivore
## 11479         1.82454929        3.226603994  Tertiary Carnivore
## 11480         1.79342475        4.047182371  Tertiary Carnivore
## 11481         6.29876541        6.849625561 Secondary Carnivore
## 11482         2.60172626        0.470853119  Tertiary Carnivore
## 11483         0.40879290        2.891851822 Secondary Carnivore
## 11484         0.00000000        0.009889753  Tertiary Carnivore
## 11485         2.70951579        1.540263127 Secondary Carnivore
## 11486         1.67147330        0.015041422   Primary Carnivore
## 11487         5.30330491        4.259772081 Secondary Carnivore
## 11488         3.64021428        1.070822001   Primary Carnivore
## 11489         1.89069942        2.075946520 Secondary Carnivore
## 11490         4.24849524        6.849625561 Secondary Carnivore
## 11491         3.97168717        4.232513096 Secondary Carnivore
## 11492         0.99694863        1.540263127   Primary Carnivore
## 11493         4.44851638        6.670778349 Secondary Carnivore
## 11494         0.00000000        0.015041422   Primary Carnivore
## 11495         2.62466859        0.004578480 Secondary Carnivore
## 11496         6.68511160        6.849625561 Secondary Carnivore
## 11497         5.30230939        6.670778349  Tertiary Carnivore
## 11498         4.50733683        2.387053327 Secondary Carnivore
## 11499         3.12236492        2.891851822 Secondary Carnivore
## 11500         6.72623340        6.942696930  Tertiary Carnivore
## 11501         1.04027671        0.116104790 Secondary Carnivore
## 11502         2.71469474        1.886232978 Secondary Carnivore
## 11503         1.30291275        0.490146528 Secondary Carnivore
## 11504         3.81771233        0.735932630 Secondary Carnivore
## 11505         2.84490938        4.259772081 Secondary Carnivore
## 11506         1.67147330        0.004578480   Primary Carnivore
## 11507         1.32441896        2.122440181 Secondary Carnivore
## 11508         1.66770682        0.490146528  Tertiary Carnivore
## 11509         1.69561561        0.009889753 Secondary Carnivore
## 11510         7.38634693        7.288251436 Secondary Carnivore
## 11511         1.45861502        0.223982763 Secondary Carnivore
## 11512         3.55820113        2.404044412 Secondary Carnivore
## 11513         3.95871573        3.473231162 Secondary Carnivore
## 11514         1.22377543        0.878396534   Primary Carnivore
## 11515         3.91800508        3.146907198  Tertiary Carnivore
## 11516         2.80336038        1.168798094 Secondary Carnivore
## 11517         1.79175947        0.878396534   Primary Carnivore
## 11518         1.75785792        0.223982763 Secondary Carnivore
## 11519         3.45568557        0.749689812   Primary Carnivore
## 11520         3.68250921        3.873611973 Secondary Carnivore
## 11521         1.42310833        1.454402431 Secondary Carnivore
## 11522         5.73979291        2.153233085   Primary Carnivore
## 11523         3.08190997        0.002059853 Secondary Carnivore
## 11524         3.23474917        1.886232978 Secondary Carnivore
## 11525         5.08140436        6.670778349   Primary Carnivore
## 11526         1.04027671        0.116104790 Secondary Carnivore
## 11527         3.91202301        0.004578480  Tertiary Carnivore
## 11528         3.92197334        6.670778349   Primary Carnivore
## 11529         2.33505228        1.886232978 Secondary Carnivore
## 11530         7.83391713        6.670778349 Secondary Carnivore
## 11531         4.52601875        2.138914945  Tertiary Carnivore
## 11532         4.56076888        1.432814265 Secondary Carnivore
## 11533         3.57632647        0.470853119 Secondary Carnivore
## 11534         2.94968834        1.307030142 Secondary Carnivore
## 11535         7.17142638        6.670778349 Secondary Carnivore
## 11536         2.37954613        0.490146528  Tertiary Carnivore
## 11537         1.80500470        1.886232978 Secondary Carnivore
## 11538         2.12584791        3.515099295 Secondary Carnivore
## 11539         4.80541352        4.094232049 Secondary Carnivore
## 11540         1.68639895        0.130455954 Secondary Carnivore
## 11541         6.91214563        6.670778349 Secondary Carnivore
## 11542         5.57473625        3.473231162   Primary Carnivore
## 11543         7.21604848        6.849625561 Secondary Carnivore
## 11544         2.43562887        2.853935439 Secondary Carnivore
## 11545         2.07693841        0.735932630 Secondary Carnivore
## 11546         1.28093385        0.130455954  Tertiary Carnivore
## 11547         1.41342303        0.413477448 Secondary Carnivore
## 11548         4.26310232        2.433189939  Tertiary Carnivore
## 11549         7.68959991        6.849625561 Secondary Carnivore
## 11550         4.26267988        7.288251436   Primary Carnivore
## 11551         3.49650756        1.168798094 Secondary Carnivore
## 11552         4.00551335        3.146907198 Secondary Carnivore
## 11553         4.20916024        1.886232978   Primary Carnivore
## 11554         7.83241093        6.942696930 Secondary Carnivore
## 11555         4.53646299        3.146907198 Secondary Carnivore
## 11556         8.53210151        6.849625561 Secondary Carnivore
## 11557         1.33500107        0.015041422 Secondary Carnivore
## 11558         2.82731362        0.002344505 Secondary Carnivore
## 11559         4.70048037        6.670778349 Secondary Carnivore
## 11560         4.35388433        1.168798094 Secondary Carnivore
## 11561         4.61541750        3.473231162  Tertiary Carnivore
## 11562         1.42069579        0.214753881 Secondary Carnivore
## 11563         1.06471074        0.305596011  Tertiary Carnivore
## 11564         5.16478597        7.288251436 Secondary Carnivore
## 11565         0.00000000        0.004578480 Secondary Carnivore
## 11566         1.09192330        1.180964506 Secondary Carnivore
## 11567         0.47000363        0.147199990 Secondary Carnivore
## 11568         0.00000000        0.004578480   Primary Carnivore
## 11569         5.39816270        7.288251436  Tertiary Carnivore
## 11570         1.19392247        1.670180746   Primary Carnivore
## 11571         5.50938834        4.094232049  Tertiary Carnivore
## 11572         1.77495235        0.490146528  Tertiary Carnivore
## 11573         3.23474917        1.670180746   Primary Carnivore
## 11574         3.06339092        0.735932630 Secondary Carnivore
## 11575         3.71843826        2.387053327 Secondary Carnivore
## 11576         1.67147330        0.856029167  Tertiary Carnivore
## 11577         4.98360662        6.849625561   Primary Carnivore
## 11578         0.00000000        0.147199990 Secondary Carnivore
## 11579         1.79175947        0.223982763 Secondary Carnivore
## 11580         1.49290410        0.823328714 Secondary Carnivore
## 11581         2.94443898        0.757060688 Secondary Carnivore
## 11582         2.60268969        0.009889753   Primary Carnivore
## 11583         1.69708242        2.122440181 Secondary Carnivore
## 11584         3.43398720        0.002344505 Secondary Carnivore
## 11585         4.80745776        1.168798094   Primary Carnivore
## 11586         1.60140574        0.281204828 Secondary Carnivore
## 11587         4.56954301        6.849625561 Secondary Carnivore
## 11588         1.85629799        0.002059853 Secondary Carnivore
## 11589         2.52652832        0.015041422   Primary Carnivore
## 11590         2.16332303        0.223982763 Secondary Carnivore
## 11591         1.66770682        2.894695819 Secondary Carnivore
## 11592         4.47960696        6.849625561 Secondary Carnivore
## 11593         0.00000000        0.015041422   Primary Carnivore
## 11594         4.85203026        6.942696930 Secondary Carnivore
## 11595         5.02388052        4.094232049   Primary Carnivore
## 11596         1.85848310        0.900183757   Primary Carnivore
## 11597         6.44730586        7.288251436 Secondary Carnivore
## 11598         0.00000000        1.315195554   Primary Carnivore
## 11599         4.79579055        7.288251436   Primary Carnivore
## 11600         2.86789890        2.387053327 Secondary Carnivore
## 11601         3.15700042        2.387053327 Secondary Carnivore
## 11602         1.09192330        0.211247175 Secondary Carnivore
## 11603         1.82454929        0.063185562 Secondary Carnivore
## 11604         1.02961942        2.894695819   Primary Carnivore
## 11605         4.59208495        2.387053327 Secondary Carnivore
## 11606         3.91657264        4.232513096   Primary Carnivore
## 11607         1.76644166        4.047182371 Secondary Carnivore
## 11608         2.74071098        3.873611973 Secondary Carnivore
## 11609         0.99325177        0.878396534   Primary Carnivore
## 11610         3.26956894        2.894695819   Primary Carnivore
## 11611         3.01944880        2.853935439 Secondary Carnivore
## 11612         7.72832775        6.670778349 Secondary Carnivore
## 11613         1.12167756        0.015041422   Primary Carnivore
## 11614         1.08180517        0.211247175 Secondary Carnivore
## 11615         0.83290912        0.470853119  Tertiary Carnivore
## 11616         4.12713439        0.004578480  Tertiary Carnivore
## 11617         0.00000000        1.126655451   Primary Carnivore
## 11618         3.58629287        6.670778349   Primary Carnivore
## 11619         0.01064316        0.305596011  Tertiary Carnivore
## 11620         1.38629436        0.020024930  Tertiary Carnivore
## 11621         1.24126859        0.561550440 Secondary Carnivore
## 11622         5.48188814        6.670778349 Secondary Carnivore
## 11623         7.34018684        6.942696930  Tertiary Carnivore
## 11624         1.32972401        0.015041422  Tertiary Carnivore
## 11625         6.06092531        2.610718759 Secondary Carnivore
## 11626         7.88615659        6.670778349 Secondary Carnivore
## 11627         4.25844557        0.002059853 Secondary Carnivore
## 11628         8.12346889        7.288251436 Secondary Carnivore
## 11629         1.14740245        0.015041422 Secondary Carnivore
## 11630         6.83936937        6.849625561 Secondary Carnivore
## 11631         6.41345896        4.094232049 Secondary Carnivore
## 11632         3.92395158        2.277308093   Primary Carnivore
## 11633         3.54673969        6.670778349 Secondary Carnivore
## 11634         3.56953270        2.387053327 Secondary Carnivore
## 11635         0.00000000        0.130455954 Secondary Carnivore
## 11636         4.41642806        6.670778349 Secondary Carnivore
## 11637         3.21112587        3.651616415 Secondary Carnivore
## 11638         3.01553490        0.015041422  Tertiary Carnivore
## 11639         4.29959566        2.153233085   Primary Carnivore
## 11640         4.83628191        6.849625561 Secondary Carnivore
## 11641         4.24769492        3.873611973 Secondary Carnivore
## 11642         3.91921707        1.506685742 Secondary Carnivore
## 11643         0.26236426        2.024989105   Primary Carnivore
## 11644         1.40609699        0.305596011  Tertiary Carnivore
## 11645         0.00000000        1.459857720   Primary Carnivore
## 11646         5.14166356        7.288251436  Tertiary Carnivore
## 11647         3.28057281        2.433189939 Secondary Carnivore
## 11648         4.45781801        7.288251436   Primary Carnivore
## 11649         4.27527626        6.670778349   Primary Carnivore
## 11650         7.52736356        7.288251436 Secondary Carnivore
## 11651         4.23555473        4.094232049 Secondary Carnivore
## 11652         0.02078254        1.180964506 Secondary Carnivore
## 11653         0.85441533        2.153233085           Herbivore
## 11654         0.00000000        0.130455954 Secondary Carnivore
## 11655         1.99877364        0.015041422  Tertiary Carnivore
## 11656         0.00000000        3.146907198   Primary Carnivore
## 11657         7.95384545        6.849625561 Secondary Carnivore
## 11658         2.64617480        0.305596011  Tertiary Carnivore
## 11659         3.12236492        3.038160131 Secondary Carnivore
## 11660         0.00000000        0.340191127   Primary Carnivore
## 11661         4.41558229        3.943759073 Secondary Carnivore
## 11662         3.70179568        0.735932630   Primary Carnivore
## 11663         4.56017282        3.146907198 Secondary Carnivore
## 11664         2.13416644        1.742111989 Secondary Carnivore
## 11665         6.77445243        6.670778349 Secondary Carnivore
## 11666         2.54160199        2.050338578   Primary Carnivore
## 11667         2.08815348        0.009889753           Herbivore
## 11668         2.89668512        2.136925014 Secondary Carnivore
## 11669         2.10413415        1.886232978 Secondary Carnivore
## 11670         4.71573613        3.304296954 Secondary Carnivore
## 11671         7.34665516        7.288251436 Secondary Carnivore
## 11672         5.22810947        1.168798094   Primary Carnivore
## 11673         2.21920348        0.223982763 Secondary Carnivore
## 11674         2.79116511        1.886232978   Primary Carnivore
## 11675         2.56240767        2.075946520   Primary Carnivore
## 11676         2.84490938        3.473231162  Tertiary Carnivore
## 11677         1.52388002        1.532760019 Secondary Carnivore
## 11678         3.63663834        3.651616415   Primary Carnivore
## 11679         2.36368019        0.015041422   Primary Carnivore
## 11680         3.92789635        6.849625561   Primary Carnivore
## 11681         2.91695959        2.433189939 Secondary Carnivore
## 11682         6.52590904        6.670778349 Secondary Carnivore
## 11683         2.45958884        0.015041422   Primary Carnivore
## 11684         2.59525471        3.473231162 Secondary Carnivore
## 11685         7.61386804        6.670778349 Secondary Carnivore
## 11686         2.27212589        1.532760019   Primary Carnivore
## 11687         3.68637632        2.153233085 Secondary Carnivore
## 11688         0.00000000        0.211247175 Secondary Carnivore
## 11689         3.33932198        2.404044412 Secondary Carnivore
## 11690         1.90389697        0.211247175 Secondary Carnivore
## 11691         3.25424297        3.515099295 Secondary Carnivore
## 11692         2.98568194        4.121930401   Primary Carnivore
## 11693         2.82137889        2.153233085 Secondary Carnivore
## 11694         3.15700042        1.168798094 Secondary Carnivore
## 11695         5.61312811        6.849625561   Primary Carnivore
## 11696         3.23080440        2.241290896   Primary Carnivore
## 11697         2.05412373        0.856029167 Secondary Carnivore
## 11698         2.47653840        0.885298676  Tertiary Carnivore
## 11699         3.24259235        0.749689812   Primary Carnivore
## 11700         3.23867845        3.146907198 Secondary Carnivore
## 11701         2.27829240        2.387053327  Tertiary Carnivore
## 11702         5.44570235        1.168798094   Primary Carnivore
## 11703         5.77455155        6.942696930  Tertiary Carnivore
## 11704         4.57367952        4.094232049 Secondary Carnivore
## 11705         6.28897318        6.670778349 Secondary Carnivore
## 11706         4.86375810        1.673740129   Primary Carnivore
## 11707         2.81367068        2.891851822  Tertiary Carnivore
## 11708         0.00000000        0.002344505 Secondary Carnivore
## 11709         1.20297230        0.015041422   Primary Carnivore
## 11710         2.83749827        2.853935439 Secondary Carnivore
## 11711         7.05142263        6.670778349 Secondary Carnivore
## 11712         3.25037449        0.020024930   Primary Carnivore
## 11713         1.00063188        1.711701702 Secondary Carnivore
## 11714         7.78130551        6.670778349 Secondary Carnivore
## 11715         7.82043952        7.288251436 Secondary Carnivore
## 11716         8.06495089        4.094232049 Secondary Carnivore
## 11717         0.79750720        0.413477448 Secondary Carnivore
## 11718         0.00000000        1.673740129           Herbivore
## 11719         4.51085951        7.288251436 Secondary Carnivore
## 11720         2.25023861        0.214753881 Secondary Carnivore
## 11721         2.82137889        0.009889753   Primary Carnivore
## 11722         8.50329709        7.288251436 Secondary Carnivore
## 11723         4.58598737        4.094232049 Secondary Carnivore
## 11724         3.79098468        1.168798094 Secondary Carnivore
## 11725         0.00000000        0.015041422   Primary Carnivore
## 11726         2.54944517        0.015041422  Tertiary Carnivore
## 11727         5.52146092        6.942696930 Secondary Carnivore
## 11728         2.94443898        2.894695819   Primary Carnivore
## 11729         1.62136648        1.180964506  Tertiary Carnivore
## 11730         3.72810017        1.673740129 Secondary Carnivore
## 11731         3.66612247        6.849625561 Secondary Carnivore
## 11732         0.83290912        0.147199990  Tertiary Carnivore
## 11733         1.66203036        0.009889753  Tertiary Carnivore
## 11734         4.30000280        6.849625561 Secondary Carnivore
## 11735         1.69009582        0.015041422 Secondary Carnivore
## 11736         3.88362353        6.849625561   Primary Carnivore
## 11737         2.54944517        0.044241443   Primary Carnivore
## 11738         0.63180355        4.047182371   Primary Carnivore
## 11739         3.87120101        1.673740129 Secondary Carnivore
## 11740         3.59731226        2.153233085 Secondary Carnivore
## 11741         4.66343909        6.849625561 Secondary Carnivore
## 11742         5.57215403        4.259772081   Primary Carnivore
## 11743         1.27256560        0.823328714 Secondary Carnivore
## 11744         0.82855182        1.877421323 Secondary Carnivore
## 11745         6.11146734        7.288251436   Primary Carnivore
## 11746         0.00000000        0.116104790 Secondary Carnivore
## 11747         4.98360662        4.094232049   Primary Carnivore
## 11748         4.46579317        3.473231162   Primary Carnivore
## 11749         5.35185813        7.288251436  Tertiary Carnivore
## 11750         1.99741771        0.490146528  Tertiary Carnivore
## 11751         3.81683282        2.153233085 Secondary Carnivore
## 11752         0.30748470        0.211247175  Tertiary Carnivore
## 11753         6.27795841        6.670778349 Secondary Carnivore
## 11754         1.22671229        0.305596011  Tertiary Carnivore
## 11755         0.69314718        0.470853119  Tertiary Carnivore
## 11756         2.91158951        1.962719022 Secondary Carnivore
## 11757         3.93573953        1.168798094 Secondary Carnivore
## 11758         2.77819796        0.015041422   Primary Carnivore
## 11759         4.29728541        4.094232049 Secondary Carnivore
## 11760         0.00000000        0.009889753  Tertiary Carnivore
## 11761         7.22875123        6.670778349 Secondary Carnivore
## 11762         5.55902642        1.168798094   Primary Carnivore
## 11763         7.02028007        6.670778349 Secondary Carnivore
## 11764         2.37861978        2.387053327 Secondary Carnivore
## 11765         4.48863637        6.670778349 Secondary Carnivore
## 11766         0.78845736        0.130455954 Secondary Carnivore
## 11767         0.40546511        2.894695819   Primary Carnivore
## 11768         7.34665516        7.288251436 Secondary Carnivore
## 11769         0.00000000        1.459857720   Primary Carnivore
## 11770         0.00000000        0.002344505 Secondary Carnivore
## 11771         4.92308559        7.288251436 Secondary Carnivore
## 11772         3.36729583        1.168798094 Secondary Carnivore
## 11773         1.78170913        0.856029167   Primary Carnivore
## 11774         6.08904488        7.288251436 Secondary Carnivore
## 11775         2.16676537        0.015041422  Tertiary Carnivore
## 11776         3.75560309        6.942696930 Secondary Carnivore
## 11777         0.83290912        4.262479896 Secondary Carnivore
## 11778         1.05779029        2.122440181 Secondary Carnivore
## 11779         4.51085951        7.288251436 Secondary Carnivore
## 11780         1.93152141        0.490146528 Secondary Carnivore
## 11781         2.03339760        1.742111989 Secondary Carnivore
## 11782         3.68135119        2.387053327 Secondary Carnivore
## 11783         2.56510319        2.254856321   Primary Carnivore
## 11784         5.64897424        4.259772081 Secondary Carnivore
## 11785         3.51868408        1.886232978 Secondary Carnivore
## 11786         2.54944517        0.281204828 Secondary Carnivore
## 11787         5.89715387        6.942696930  Tertiary Carnivore
## 11788         2.61739583        1.742111989 Secondary Carnivore
## 11789         2.24191003        6.670778349 Secondary Carnivore
## 11790         7.47363711        7.288251436 Secondary Carnivore
## 11791         1.96571278        0.856029167 Secondary Carnivore
## 11792         0.40546511        0.063185562 Secondary Carnivore
## 11793         6.19031541        6.942696930  Tertiary Carnivore
## 11794         2.28033948        1.532760019   Primary Carnivore
## 11795         2.13947776        4.047182371 Secondary Carnivore
## 11796         3.49650756        3.146907198 Secondary Carnivore
## 11797         0.53062825        0.130455954  Tertiary Carnivore
## 11798         3.95316495        6.670778349 Secondary Carnivore
## 11799         3.73050113        6.670778349 Secondary Carnivore
## 11800         3.05870707        3.038160131 Secondary Carnivore
## 11801         8.44080878        6.849625561 Secondary Carnivore
## 11802         2.32630162        2.845177164 Secondary Carnivore
## 11803         1.48160454        0.130455954 Secondary Carnivore
## 11804         3.57234564        3.168005566 Secondary Carnivore
## 11805         6.59441346        7.288251436  Tertiary Carnivore
## 11806         4.60616969        4.259772081  Tertiary Carnivore
## 11807         1.54756251        0.015041422 Secondary Carnivore
## 11808         4.22537282        1.168798094 Secondary Carnivore
## 11809         0.00000000        0.470853119  Tertiary Carnivore
## 11810         2.98061864        2.387053327 Secondary Carnivore
## 11811         3.76352300        1.168798094 Secondary Carnivore
## 11812         3.19179236        1.540263127 Secondary Carnivore
## 11813         4.01096295        6.670778349 Secondary Carnivore
## 11814         5.11198779        4.094232049  Tertiary Carnivore
## 11815         1.16315081        1.126655451   Primary Carnivore
## 11816         1.19392247        0.211247175 Secondary Carnivore
## 11817         7.39079852        7.288251436 Secondary Carnivore
## 11818         4.66861436        2.153233085 Secondary Carnivore
## 11819         1.54756251        0.009889753  Tertiary Carnivore
## 11820         6.06610809        7.288251436  Tertiary Carnivore
## 11821         4.04480412        6.942696930  Tertiary Carnivore
## 11822         4.98561830        3.304296954   Primary Carnivore
## 11823         6.77502357        6.849625561 Secondary Carnivore
## 11824         4.62497281        3.168005566 Secondary Carnivore
## 11825         2.58021683        1.532760019   Primary Carnivore
## 11826         4.98360662        4.094232049   Primary Carnivore
## 11827         2.63905733        2.153233085 Secondary Carnivore
## 11828         5.22035583        3.146907198 Secondary Carnivore
## 11829         7.13297667        6.670778349 Secondary Carnivore
## 11830         2.58776404        0.757060688 Secondary Carnivore
## 11831         2.11709853        3.515099295 Secondary Carnivore
## 11832         2.36837283        0.735932630 Secondary Carnivore
## 11833         4.18813844        6.849625561  Tertiary Carnivore
## 11834         0.00000000        0.004578480 Secondary Carnivore
## 11835         3.41444261        1.742111989 Secondary Carnivore
## 11836         5.13603370        1.673740129 Secondary Carnivore
## 11837         1.80664808        0.116104790 Secondary Carnivore
## 11838         3.39114705        1.670180746 Secondary Carnivore
## 11839         1.30019166        2.845177164 Secondary Carnivore
## 11840         3.13113691        4.259772081 Secondary Carnivore
## 11841         2.64326276        0.490146528 Secondary Carnivore
## 11842         0.00000000        0.015041422 Secondary Carnivore
## 11843         4.08260931        6.670778349 Secondary Carnivore
## 11844         5.02388052        6.942696930 Secondary Carnivore
## 11845         1.04027671        0.885298676 Secondary Carnivore
## 11846         3.94931879        7.161415474 Secondary Carnivore
## 11847         0.00000000        0.002059853 Secondary Carnivore
## 11848         2.14943391        0.735932630 Secondary Carnivore
## 11849         7.29369772        7.288251436 Secondary Carnivore
## 11850         1.53686722        0.015041422  Tertiary Carnivore
## 11851         0.00000000        0.147199990 Secondary Carnivore
## 11852         2.11142459        0.900183757 Secondary Carnivore
## 11853         1.82454929        0.490146528  Tertiary Carnivore
## 11854         0.83290912        1.831515834 Secondary Carnivore
## 11855         4.75780543        4.094232049 Secondary Carnivore
## 11856         2.74084002        1.886232978 Secondary Carnivore
## 11857         6.03954017        1.886232978 Secondary Carnivore
## 11858         0.17395331        1.532760019  Tertiary Carnivore
## 11859         3.28091122        3.146907198 Secondary Carnivore
## 11860         5.35185813        7.288251436  Tertiary Carnivore
## 11861         0.00000000        2.404044412           Herbivore
## 11862         1.19392247        0.147199990 Secondary Carnivore
## 11863         4.44968528        1.168798094  Tertiary Carnivore
## 11864         4.82807371        1.673740129   Primary Carnivore
## 11865         0.00000000        1.877421323 Secondary Carnivore
## 11866         7.68303529        6.849625561 Secondary Carnivore
## 11867         1.85207032        0.211247175 Secondary Carnivore
## 11868         0.19885086        0.305596011 Secondary Carnivore
## 11869         1.65822808        0.885298676  Tertiary Carnivore
## 11870         1.84292776        1.962719022 Secondary Carnivore
## 11871         2.58021683        2.136925014 Secondary Carnivore
## 11872         5.77299754        1.886232978   Primary Carnivore
## 11873         4.45771372        1.886232978   Primary Carnivore
## 11874         2.77102500        1.962719022  Tertiary Carnivore
## 11875         3.94352167        3.146907198  Tertiary Carnivore
## 11876         2.95491028        2.472143654   Primary Carnivore
## 11877         7.98214318        6.849625561 Secondary Carnivore
## 11878         4.79892612        2.387053327   Primary Carnivore
## 11879         0.92821930        6.942696930           Herbivore
## 11880         7.83494639        6.670778349 Secondary Carnivore
## 11881         7.03341830        6.670778349 Secondary Carnivore
## 11882         1.32175584        2.254856321 Secondary Carnivore
## 11883         6.78649119        6.670778349  Tertiary Carnivore
## 11884         0.00000000        1.670180746   Primary Carnivore
## 11885         0.00000000        2.404044412           Herbivore
## 11886         5.90511659        1.886232978   Primary Carnivore
## 11887         4.61485315        1.432814265 Secondary Carnivore
## 11888         4.22753423        1.506685742   Primary Carnivore
## 11889         7.39184671        7.288251436 Secondary Carnivore
## 11890         1.28923265        0.856029167 Secondary Carnivore
## 11891         1.51292701        0.015041422 Secondary Carnivore
## 11892         0.97455964        0.305596011  Tertiary Carnivore
## 11893         7.97968130        7.288251436 Secondary Carnivore
## 11894         1.18784342        0.561550440 Secondary Carnivore
## 11895         4.06355884        2.138914945 Secondary Carnivore
## 11896         3.19043520        2.610718759 Secondary Carnivore
## 11897         1.76985463        0.015041422  Tertiary Carnivore
## 11898         5.38587026        0.004578480  Tertiary Carnivore
## 11899         1.32441896        4.047182371 Secondary Carnivore
## 11900         0.83290912        5.169038067   Primary Carnivore
## 11901         2.56617937        1.962719022 Secondary Carnivore
## 11902         2.17815501        2.845177164 Secondary Carnivore
## 11903         4.96284463        6.670778349  Tertiary Carnivore
## 11904         2.16217294        0.009889753   Primary Carnivore
## 11905         0.90421815        0.305596011  Tertiary Carnivore
## 11906         0.00000000        1.886232978           Herbivore
## 11907         1.34547237        0.856029167 Secondary Carnivore
## 11908         0.00000000        0.004578480  Tertiary Carnivore
## 11909         3.57660621        1.432814265  Tertiary Carnivore
## 11910         0.43048287        0.856029167  Tertiary Carnivore
## 11911         7.98132323        6.670778349 Secondary Carnivore
## 11912         3.66867675        0.749689812   Primary Carnivore
## 11913         1.19392247        1.532760019  Tertiary Carnivore
## 11914         4.18801704        3.651616415   Primary Carnivore
## 11915         1.44926916        1.251683108 Secondary Carnivore
## 11916         4.50534985        4.094232049  Tertiary Carnivore
## 11917         2.44633906        0.470853119 Secondary Carnivore
## 11918         4.34510328        6.670778349 Secondary Carnivore
## 11919         4.84418709        3.146907198 Secondary Carnivore
## 11920         1.49962305        0.561550440 Secondary Carnivore
## 11921         6.67997600        6.670778349 Secondary Carnivore
## 11922         2.11384297        0.009889753 Secondary Carnivore
## 11923         3.50453585        3.873611973  Tertiary Carnivore
## 11924         8.49631679        6.849625561 Secondary Carnivore
## 11925         5.86646806        2.153233085  Tertiary Carnivore
## 11926         0.37156356        0.130455954 Secondary Carnivore
## 11927         0.00000000        1.981883583   Primary Carnivore
## 11928         4.31348009        4.259772081 Secondary Carnivore
## 11929         2.82137889        1.168798094 Secondary Carnivore
## 11930         2.65324196        0.002344505 Secondary Carnivore
## 11931         3.85014760        6.849625561 Secondary Carnivore
## 11932         3.86157146        0.015041422 Secondary Carnivore
## 11933         3.26575941        2.387053327 Secondary Carnivore
## 11934         4.62497281        4.259772081 Secondary Carnivore
## 11935         2.94443898        0.004578480  Tertiary Carnivore
## 11936         4.39444915        7.288251436 Secondary Carnivore
## 11937         0.99325177        0.130455954  Tertiary Carnivore
## 11938         4.00369019        1.307030142 Secondary Carnivore
## 11939         0.53999600        0.413477448  Tertiary Carnivore
## 11940         0.26236426        1.920179330   Primary Carnivore
## 11941         3.30310667        1.506685742 Secondary Carnivore
## 11942         0.00000000        0.130455954 Secondary Carnivore
## 11943         4.21331208        1.886232978 Secondary Carnivore
## 11944         5.75574221        1.168798094 Secondary Carnivore
## 11945         1.56024767        0.009889753   Primary Carnivore
## 11946         2.02683159        0.885298676  Tertiary Carnivore
## 11947         4.75531284        3.943759073 Secondary Carnivore
## 11948         4.99767163        4.232513096 Secondary Carnivore
## 11949         2.22354189        0.015041422 Secondary Carnivore
## 11950         3.26575941        5.169038067   Primary Carnivore
## 11951         1.71918878        0.856029167   Primary Carnivore
## 11952         1.13462273        2.136925014 Secondary Carnivore
## 11953         0.58778666        0.147199990 Secondary Carnivore
## 11954         1.84150156        1.711701702  Tertiary Carnivore
## 11955         2.97041447        2.387053327 Secondary Carnivore
## 11956         0.00000000        0.002344505 Secondary Carnivore
## 11957         0.00000000        2.404044412           Herbivore
## 11958         2.77258872        0.116104790 Secondary Carnivore
## 11959         1.85629799        0.490146528  Tertiary Carnivore
## 11960         4.59410924        3.168005566 Secondary Carnivore
## 11961         5.56452041        7.288251436  Tertiary Carnivore
## 11962         8.05360097        6.670778349 Secondary Carnivore
## 11963         3.24649099        1.307030142 Secondary Carnivore
## 11964         1.70292826        0.015041422 Secondary Carnivore
## 11965         3.88752537        0.749689812   Primary Carnivore
## 11966         0.00000000        0.015041422  Tertiary Carnivore
## 11967         5.18178355        6.849625561 Secondary Carnivore
## 11968         2.40865536        1.540263127 Secondary Carnivore
## 11969         2.90690106        3.515099295 Secondary Carnivore
## 11970         2.61739583        0.757060688  Tertiary Carnivore
## 11971         2.52572864        0.735932630 Secondary Carnivore
## 11972         3.36037539        2.891851822  Tertiary Carnivore
## 11973         3.35340672        5.169038067   Primary Carnivore
## 11974         0.00000000        1.886232978           Herbivore
## 11975         1.98787435        2.241290896   Primary Carnivore
## 11976         2.68852753        3.226603994 Secondary Carnivore
## 11977         2.58776404        2.136925014 Secondary Carnivore
## 11978         1.35325451        2.404044412 Secondary Carnivore
## 11979         4.70953020        7.288251436 Secondary Carnivore
## 11980         7.35212054        6.849625561 Secondary Carnivore
## 11981         2.56494936        1.315195554 Secondary Carnivore
## 11982         5.81889528        6.849625561 Secondary Carnivore
## 11983         1.79275897        0.116104790 Secondary Carnivore
## 11984         1.62924054        0.147199990 Secondary Carnivore
## 11985         7.75022723        6.670778349 Secondary Carnivore
## 11986         3.79773386        4.094232049 Secondary Carnivore
## 11987         0.95551145        0.490146528  Tertiary Carnivore
## 11988         1.53255687        2.075946520 Secondary Carnivore
## 11989         5.14813381        1.886232978   Primary Carnivore
## 11990         0.00000000        1.886232978           Herbivore
## 11991         0.33647224        2.894695819   Primary Carnivore
## 11992         3.28578653        0.015041422 Secondary Carnivore
## 11993         2.29253476        1.315195554   Primary Carnivore
## 11994         7.29715875        6.849625561 Secondary Carnivore
## 11995         0.26236426        2.024989105   Primary Carnivore
## 11996         0.68813464        1.251683108 Secondary Carnivore
## 11997         1.02961942        0.470853119  Tertiary Carnivore
## 11998         1.26976054        1.180964506 Secondary Carnivore
## 11999         4.04305127        6.670778349  Tertiary Carnivore
## 12000         3.96840334        2.050338578   Primary Carnivore
## 12001         5.72227706        6.849625561 Secondary Carnivore
## 12002         4.79579055        7.288251436 Secondary Carnivore
## 12003         7.40482675        6.670778349 Secondary Carnivore
## 12004         0.78845736        7.161415474   Primary Carnivore
## 12005         5.57215403        4.259772081   Primary Carnivore
## 12006         3.51452607        1.886232978 Secondary Carnivore
## 12007         1.87640694        0.885298676  Tertiary Carnivore
## 12008         2.63905733        0.002059853 Secondary Carnivore
## 12009         0.00000000        2.894695819   Primary Carnivore
## 12010         3.40452517        1.886232978 Secondary Carnivore
## 12011         0.00000000        0.002059853 Secondary Carnivore
## 12012         2.24918432        0.009889753   Primary Carnivore
## 12013         1.66392610        0.211247175 Secondary Carnivore
## 12014         0.06765865        0.305596011 Secondary Carnivore
## 12015         2.27212589        1.670180746 Secondary Carnivore
## 12016         2.77881927        0.885298676  Tertiary Carnivore
## 12017         6.58340922        4.259772081  Tertiary Carnivore
## 12018         0.00000000        1.670180746   Primary Carnivore
## 12019         1.45161383        1.532760019 Secondary Carnivore
## 12020         1.99333884        1.307030142 Secondary Carnivore
## 12021         0.00000000        0.002059853 Secondary Carnivore
## 12022         2.04122033        0.063185562 Secondary Carnivore
## 12023         2.23537634        0.015041422 Secondary Carnivore
## 12024         2.58021683        2.891851822 Secondary Carnivore
## 12025         4.25134831        1.168798094 Secondary Carnivore
## 12026         0.00000000        2.404044412           Herbivore
## 12027         1.47476301        0.900183757 Secondary Carnivore
## 12028         6.77490937        6.849625561 Secondary Carnivore
## 12029         3.42816383        0.015041422   Primary Carnivore
## 12030         1.61541998        0.009889753  Tertiary Carnivore
## 12031         6.90505163        6.849625561 Secondary Carnivore
## 12032         1.66770682        0.002344505 Secondary Carnivore
## 12033         3.03013370        3.146907198 Secondary Carnivore
## 12034         1.81156210        0.211247175 Secondary Carnivore
## 12035         1.01884732        0.223982763 Secondary Carnivore
## 12036         1.51072194        0.015041422  Tertiary Carnivore
## 12037         5.68357977        4.094232049  Tertiary Carnivore
## 12038         4.79579055        7.288251436 Secondary Carnivore
## 12039         1.19996478        0.015041422  Tertiary Carnivore
## 12040         7.45066080        7.288251436 Secondary Carnivore
## 12041         2.47863704        1.711701702   Primary Carnivore
## 12042         1.31640823        0.214753881 Secondary Carnivore
## 12043         6.08677473        4.094232049 Secondary Carnivore
## 12044         3.51443678        2.610718759 Secondary Carnivore
## 12045         2.92316158        3.473231162 Secondary Carnivore
## 12046         1.77495235        0.002344505 Secondary Carnivore
## 12047         0.00000000        1.877421323 Secondary Carnivore
## 12048         2.32727771        0.009889753           Herbivore
## 12049         1.43983513        0.305596011  Tertiary Carnivore
## 12050         5.21553341        0.735932630   Primary Carnivore
## 12051         4.19166787        2.433189939 Secondary Carnivore
## 12052         1.47796155        1.711701702  Tertiary Carnivore
## 12053         2.28238239        1.315195554 Secondary Carnivore
## 12054         2.55722731        1.315195554 Secondary Carnivore
## 12055         3.16665579        0.470853119 Secondary Carnivore
## 12056         0.00000000        0.002344505  Tertiary Carnivore
## 12057         2.79116511        0.009889753           Herbivore
## 12058         1.75958057        4.262479896 Secondary Carnivore
## 12059         1.29746315        0.413477448 Secondary Carnivore
## 12060         2.85647021        1.886232978 Secondary Carnivore
## 12061         2.85070650        0.063185562 Secondary Carnivore
## 12062         5.18505908        1.432814265 Secondary Carnivore
## 12063         1.20297230        1.831515834  Tertiary Carnivore
## 12064         3.26956894        1.886232978 Secondary Carnivore
## 12065         3.80443779        6.670778349   Primary Carnivore
## 12066         5.01727984        7.288251436  Tertiary Carnivore
## 12067         3.85227300        6.670778349 Secondary Carnivore
## 12068         3.27222700        0.735932630   Primary Carnivore
## 12069         1.08180517        0.116104790 Secondary Carnivore
## 12070         1.89611948        0.885298676 Secondary Carnivore
## 12071         1.66770682        0.490146528 Secondary Carnivore
## 12072         4.27495632        4.232513096  Tertiary Carnivore
## 12073         5.77827133        6.670778349  Tertiary Carnivore
## 12074         0.00000000        1.673740129           Herbivore
## 12075         1.48387469        0.885298676 Secondary Carnivore
## 12076         3.55820113        2.153233085           Herbivore
## 12077         0.78845736        2.145288428 Secondary Carnivore
## 12078         2.00417906        0.211247175 Secondary Carnivore
## 12079         8.42299240        6.849625561 Secondary Carnivore
## 12080         6.01859321        7.288251436  Tertiary Carnivore
## 12081         0.00000000        0.002059853 Secondary Carnivore
## 12082         1.95727391        0.004578480   Primary Carnivore
## 12083         1.62924054        0.223982763 Secondary Carnivore
## 12084         1.04027671        1.454402431 Secondary Carnivore
## 12085         5.44241771        2.153233085 Secondary Carnivore
## 12086         3.06339092        3.943759073 Secondary Carnivore
## 12087         2.53369681        1.981883583   Primary Carnivore
## 12088         4.09434456        7.288251436 Secondary Carnivore
## 12089         3.28776736        2.433189939  Tertiary Carnivore
## 12090         5.30330491        7.288251436 Secondary Carnivore
## 12091         0.00000000        0.009889753 Secondary Carnivore
## 12092         5.28826703        2.153233085  Tertiary Carnivore
## 12093         0.95551145        0.211247175 Secondary Carnivore
## 12094         1.67335124        0.735932630 Secondary Carnivore
## 12095         2.70136121        3.515099295 Secondary Carnivore
## 12096         1.18172720        2.387053327 Secondary Carnivore
## 12097         2.41126011        1.014024833 Secondary Carnivore
## 12098         2.32238772        0.223982763 Secondary Carnivore
## 12099         7.51261754        6.942696930 Secondary Carnivore
## 12100         0.00000000        0.009889753 Secondary Carnivore
## 12101         2.63905733        0.002059853 Secondary Carnivore
## 12102         0.91629073        0.063185562 Secondary Carnivore
## 12103         3.02456266        2.254856321 Secondary Carnivore
## 12104         1.41098697        0.147199990 Secondary Carnivore
## 12105         3.78940329        0.214753881  Tertiary Carnivore
## 12106         0.83290912        0.130455954 Secondary Carnivore
## 12107         7.62525355        6.849625561 Secondary Carnivore
## 12108         3.34990409        2.387053327   Primary Carnivore
## 12109         4.61512052        7.288251436  Tertiary Carnivore
## 12110         3.55010577        1.540263127 Secondary Carnivore
## 12111         1.24990174        2.241290896   Primary Carnivore
## 12112         7.22329568        7.288251436 Secondary Carnivore
## 12113         4.71849887        3.146907198 Secondary Carnivore
## 12114         3.92296295        2.138914945 Secondary Carnivore
## 12115         3.28091122        1.168798094   Primary Carnivore
## 12116         2.38139627        2.136925014 Secondary Carnivore
## 12117         1.34547237        0.885298676 Secondary Carnivore
## 12118         2.23697934        0.490146528   Primary Carnivore
## 12119         2.91463067        2.136925014 Secondary Carnivore
## 12120         4.30217141        0.002059853 Secondary Carnivore
## 12121         1.13140211        0.470853119  Tertiary Carnivore
## 12122         3.38113072        1.632888289 Secondary Carnivore
## 12123         1.53901545        2.853935439 Secondary Carnivore
## 12124         2.98061864        0.885298676  Tertiary Carnivore
## 12125         1.95868534        0.211247175 Secondary Carnivore
## 12126         1.68639895        7.161415474 Secondary Carnivore
## 12127         3.09557761        0.009889753   Primary Carnivore
## 12128         2.63991411        2.254856321   Primary Carnivore
## 12129         0.00000000        0.305596011 Secondary Carnivore
## 12130         3.36037539        1.168798094 Secondary Carnivore
## 12131         1.59533899        0.413477448 Secondary Carnivore
## 12132         3.56133013        1.886232978 Secondary Carnivore
## 12133         4.65396035        1.168798094 Secondary Carnivore
## 12134         0.00000000        1.459857720   Primary Carnivore
## 12135         7.34968088        6.849625561 Secondary Carnivore
## 12136         4.68213123        6.670778349  Tertiary Carnivore
## 12137         1.31908561        0.004578480   Primary Carnivore
## 12138         8.85237889        7.288251436 Secondary Carnivore
## 12139         0.93216408        4.094232049           Herbivore
## 12140         4.86753445        2.153233085 Secondary Carnivore
## 12141         0.00000000        0.281204828 Secondary Carnivore
## 12142         2.12823171        0.211247175 Secondary Carnivore
## 12143         5.67194775        1.886232978 Secondary Carnivore
## 12144         0.82417544        1.831515834   Primary Carnivore
## 12145         0.63657683        4.259772081           Herbivore
## 12146         6.61069604        6.942696930 Secondary Carnivore
## 12147         3.42426265        3.651616415  Tertiary Carnivore
## 12148         3.73440238        3.943759073 Secondary Carnivore
## 12149         3.66612247        0.749689812   Primary Carnivore
## 12150         2.08193842        0.004578480  Tertiary Carnivore
## 12151         0.00000000        2.145288428 Secondary Carnivore
## 12152         3.77045944        2.050338578   Primary Carnivore
## 12153         8.52734152        7.288251436 Secondary Carnivore
## 12154         3.71571611        2.433189939 Secondary Carnivore
## 12155         3.06339092        0.735932630 Secondary Carnivore
## 12156         2.61520365        3.226603994  Tertiary Carnivore
## 12157         7.20630310        6.849625561 Secondary Carnivore
## 12158         2.83321334        3.146907198 Secondary Carnivore
## 12159         2.80940270        1.420705940 Secondary Carnivore
## 12160         6.99062476        7.288251436 Secondary Carnivore
## 12161         4.47847253        1.168798094 Secondary Carnivore
## 12162         1.68639895        0.116104790 Secondary Carnivore
## 12163         0.00000000        0.009889753           Herbivore
## 12164         2.50470928        1.432814265 Secondary Carnivore
## 12165         6.66134310        6.670778349 Secondary Carnivore
## 12166         0.87546874        0.063185562 Secondary Carnivore
## 12167         3.20453346        2.610718759  Tertiary Carnivore
## 12168         1.08518927        1.180964506  Tertiary Carnivore
## 12169         3.00071982        0.214753881  Tertiary Carnivore
## 12170         2.00552586        1.307030142 Secondary Carnivore
## 12171         1.46325540        4.094232049           Herbivore
## 12172         4.53689135        1.673740129 Secondary Carnivore
## 12173         5.25227343        7.288251436   Primary Carnivore
## 12174         3.03013370        1.670180746   Primary Carnivore
## 12175         5.25017699        3.473231162   Primary Carnivore
## 12176         3.88567903        2.387053327 Secondary Carnivore
## 12177         3.89731538        0.735932630 Secondary Carnivore
## 12178         5.54126355        3.146907198 Secondary Carnivore
## 12179         4.77912349        4.094232049  Tertiary Carnivore
## 12180         1.70402055        0.211247175 Secondary Carnivore
## 12181         2.81540872        0.757060688 Secondary Carnivore
## 12182         7.84998662        6.670778349 Secondary Carnivore
## 12183         0.00000000        0.002344505  Tertiary Carnivore
## 12184         3.94158181        3.168005566 Secondary Carnivore
## 12185         1.73342389        0.015041422 Secondary Carnivore
## 12186         3.49347266        1.168798094 Secondary Carnivore
## 12187         0.26236426        2.107009466   Primary Carnivore
## 12188         0.00000000        2.107009466   Primary Carnivore
## 12189         2.84490938        0.020024930  Tertiary Carnivore
## 12190         0.74193734        2.241290896   Primary Carnivore
## 12191         1.67335124        0.490146528 Secondary Carnivore
## 12192         4.02177387        2.153233085  Tertiary Carnivore
## 12193         4.50976000        6.670778349 Secondary Carnivore
## 12194         4.07414185        3.159561805   Primary Carnivore
## 12195         2.76744803        6.670778349 Secondary Carnivore
## 12196         2.96460274        3.038160131 Secondary Carnivore
## 12197         5.17868888        2.153233085 Secondary Carnivore
## 12198         1.55180880        0.009889753  Tertiary Carnivore
## 12199         1.38629436        0.063185562 Secondary Carnivore
## 12200         4.54648119        3.146907198 Secondary Carnivore
## 12201         2.37024374        0.490146528 Secondary Carnivore
## 12202         0.30748470        4.259772081           Herbivore
## 12203         2.01089500        0.214753881 Secondary Carnivore
## 12204         3.39450839        1.479154529   Primary Carnivore
## 12205         2.68784749        0.757060688   Primary Carnivore
## 12206         2.35801980        3.515099295 Secondary Carnivore
## 12207         3.76584050        0.009889753  Tertiary Carnivore
## 12208         0.81536481        1.251683108 Secondary Carnivore
## 12209         0.00000000        1.886232978           Herbivore
## 12210         1.28923265        0.004578480 Secondary Carnivore
## 12211         2.00512201        2.853935439   Primary Carnivore
## 12212         4.74449725        3.146907198 Secondary Carnivore
## 12213         4.03777421        6.670778349   Primary Carnivore
## 12214         4.71635371        1.168798094 Secondary Carnivore
## 12215         0.36394843        0.413477448  Tertiary Carnivore
## 12216         0.00000000        0.009889753           Herbivore
## 12217         4.94875989        7.288251436 Secondary Carnivore
## 12218         3.99636415        6.670778349 Secondary Carnivore
## 12219         1.15688120        0.004578480   Primary Carnivore
## 12220         3.51452607        1.168798094 Secondary Carnivore
## 12221         8.20305762        7.288251436 Secondary Carnivore
## 12222         0.81668960        1.705681497 Secondary Carnivore
## 12223         2.55567572        0.015041422   Primary Carnivore
## 12224         1.34547237        1.962719022 Secondary Carnivore
## 12225         2.37954613        0.004578480 Secondary Carnivore
## 12226         4.85203026        6.849625561  Tertiary Carnivore
## 12227         0.95165788        1.877421323 Secondary Carnivore
## 12228         4.74701691        0.002059853 Secondary Carnivore
## 12229         0.98954119        0.116104790 Secondary Carnivore
## 12230         7.58054668        6.670778349 Secondary Carnivore
## 12231         3.03013370        2.153233085 Secondary Carnivore
## 12232         6.27476202        7.288251436   Primary Carnivore
## 12233         4.55807858        6.670778349 Secondary Carnivore
## 12234         1.06594239        2.145288428 Secondary Carnivore
## 12235         2.39059597        1.886232978   Primary Carnivore
## 12236         5.50443683        6.942696930 Secondary Carnivore
## 12237         2.01623547        1.886232978   Primary Carnivore
## 12238         1.40609699        2.136925014 Secondary Carnivore
## 12239         0.00000000        2.404044412           Herbivore
## 12240         4.99043259        6.670778349 Secondary Carnivore
## 12241         3.44998755        1.886232978 Secondary Carnivore
## 12242         1.74221902        1.831515834 Secondary Carnivore
## 12243         0.83290912        1.315195554   Primary Carnivore
## 12244         2.67414865        1.168798094 Secondary Carnivore
## 12245         3.39785848        2.153233085 Secondary Carnivore
## 12246         3.76537743        1.886232978   Primary Carnivore
## 12247         0.53062825        2.472143654   Primary Carnivore
## 12248         3.68145194        1.014024833 Secondary Carnivore
## 12249         7.71020519        7.288251436 Secondary Carnivore
## 12250         2.18941639        1.532760019   Primary Carnivore
## 12251         1.82454929        3.226603994  Tertiary Carnivore
## 12252         1.79342475        4.047182371  Tertiary Carnivore
## 12253         6.29876541        6.849625561 Secondary Carnivore
## 12254         2.60172626        0.470853119  Tertiary Carnivore
## 12255         0.40879290        2.891851822 Secondary Carnivore
## 12256         0.00000000        0.009889753  Tertiary Carnivore
## 12257         2.70951579        1.540263127 Secondary Carnivore
## 12258         1.67147330        0.015041422   Primary Carnivore
## 12259         5.30330491        4.259772081 Secondary Carnivore
## 12260         3.64021428        1.070822001   Primary Carnivore
## 12261         1.89069942        2.075946520 Secondary Carnivore
## 12262         4.24849524        6.849625561 Secondary Carnivore
## 12263         3.97168717        4.232513096 Secondary Carnivore
## 12264         0.99694863        1.540263127   Primary Carnivore
## 12265         4.44851638        6.670778349 Secondary Carnivore
## 12266         0.00000000        0.015041422   Primary Carnivore
## 12267         2.62466859        0.004578480 Secondary Carnivore
## 12268         6.68511160        6.849625561 Secondary Carnivore
## 12269         5.30230939        6.670778349  Tertiary Carnivore
## 12270         4.50733683        2.387053327 Secondary Carnivore
## 12271         3.12236492        2.891851822 Secondary Carnivore
## 12272         6.72623340        6.942696930  Tertiary Carnivore
## 12273         1.04027671        0.116104790 Secondary Carnivore
## 12274         2.71469474        1.886232978 Secondary Carnivore
## 12275         1.30291275        0.490146528 Secondary Carnivore
## 12276         3.81771233        0.735932630 Secondary Carnivore
## 12277         2.84490938        4.259772081 Secondary Carnivore
## 12278         1.67147330        0.004578480   Primary Carnivore
## 12279         1.32441896        2.122440181 Secondary Carnivore
## 12280         1.66770682        0.490146528  Tertiary Carnivore
## 12281         1.69561561        0.009889753 Secondary Carnivore
## 12282         7.38634693        7.288251436 Secondary Carnivore
## 12283         1.45861502        0.223982763 Secondary Carnivore
## 12284         3.55820113        2.404044412 Secondary Carnivore
## 12285         3.95871573        3.473231162 Secondary Carnivore
## 12286         1.22377543        0.878396534   Primary Carnivore
## 12287         3.91800508        3.146907198  Tertiary Carnivore
## 12288         2.80336038        1.168798094 Secondary Carnivore
## 12289         1.79175947        0.878396534   Primary Carnivore
## 12290         1.75785792        0.223982763 Secondary Carnivore
## 12291         3.45568557        0.749689812   Primary Carnivore
## 12292         3.68250921        3.873611973 Secondary Carnivore
## 12293         1.42310833        1.454402431 Secondary Carnivore
## 12294         5.73979291        2.153233085   Primary Carnivore
## 12295         3.08190997        0.002059853 Secondary Carnivore
## 12296         3.23474917        1.886232978 Secondary Carnivore
## 12297         5.08140436        6.670778349   Primary Carnivore
## 12298         1.04027671        0.116104790 Secondary Carnivore
## 12299         3.91202301        0.004578480  Tertiary Carnivore
## 12300         3.92197334        6.670778349   Primary Carnivore
## 12301         2.33505228        1.886232978 Secondary Carnivore
## 12302         7.83391713        6.670778349 Secondary Carnivore
## 12303         4.52601875        2.138914945  Tertiary Carnivore
## 12304         4.56076888        1.432814265 Secondary Carnivore
## 12305         3.57632647        0.470853119 Secondary Carnivore
## 12306         2.94968834        1.307030142 Secondary Carnivore
## 12307         7.17142638        6.670778349 Secondary Carnivore
## 12308         2.37954613        0.490146528  Tertiary Carnivore
## 12309         1.80500470        1.886232978 Secondary Carnivore
## 12310         2.12584791        3.515099295 Secondary Carnivore
## 12311         4.80541352        4.094232049 Secondary Carnivore
## 12312         1.68639895        0.130455954 Secondary Carnivore
## 12313         6.91214563        6.670778349 Secondary Carnivore
## 12314         5.57473625        3.473231162   Primary Carnivore
## 12315         7.21604848        6.849625561 Secondary Carnivore
## 12316         2.43562887        2.853935439 Secondary Carnivore
## 12317         2.07693841        0.735932630 Secondary Carnivore
## 12318         1.28093385        0.130455954  Tertiary Carnivore
## 12319         1.41342303        0.413477448 Secondary Carnivore
## 12320         4.26310232        2.433189939  Tertiary Carnivore
## 12321         7.68959991        6.849625561 Secondary Carnivore
## 12322         4.26267988        7.288251436   Primary Carnivore
## 12323         3.49650756        1.168798094 Secondary Carnivore
## 12324         4.00551335        3.146907198 Secondary Carnivore
## 12325         4.20916024        1.886232978   Primary Carnivore
## 12326         7.83241093        6.942696930 Secondary Carnivore
## 12327         4.53646299        3.146907198 Secondary Carnivore
## 12328         8.53210151        6.849625561 Secondary Carnivore
## 12329         1.33500107        0.015041422 Secondary Carnivore
## 12330         2.82731362        0.002344505 Secondary Carnivore
## 12331         4.70048037        6.670778349 Secondary Carnivore
## 12332         4.35388433        1.168798094 Secondary Carnivore
## 12333         4.61541750        3.473231162  Tertiary Carnivore
## 12334         1.42069579        0.214753881 Secondary Carnivore
## 12335         1.06471074        0.305596011  Tertiary Carnivore
## 12336         5.16478597        7.288251436 Secondary Carnivore
## 12337         0.00000000        0.004578480 Secondary Carnivore
## 12338         1.09192330        1.180964506 Secondary Carnivore
## 12339         0.47000363        0.147199990 Secondary Carnivore
## 12340         0.00000000        0.004578480   Primary Carnivore
## 12341         5.39816270        7.288251436  Tertiary Carnivore
## 12342         1.19392247        1.670180746   Primary Carnivore
## 12343         5.50938834        4.094232049  Tertiary Carnivore
## 12344         1.77495235        0.490146528  Tertiary Carnivore
## 12345         3.23474917        1.670180746   Primary Carnivore
## 12346         3.06339092        0.735932630 Secondary Carnivore
## 12347         3.71843826        2.387053327 Secondary Carnivore
## 12348         1.67147330        0.856029167  Tertiary Carnivore
## 12349         4.98360662        6.849625561   Primary Carnivore
## 12350         0.00000000        0.147199990 Secondary Carnivore
## 12351         1.79175947        0.223982763 Secondary Carnivore
## 12352         1.49290410        0.823328714 Secondary Carnivore
## 12353         2.94443898        0.757060688 Secondary Carnivore
## 12354         2.60268969        0.009889753   Primary Carnivore
## 12355         1.69708242        2.122440181 Secondary Carnivore
## 12356         3.43398720        0.002344505 Secondary Carnivore
## 12357         4.80745776        1.168798094   Primary Carnivore
## 12358         1.60140574        0.281204828 Secondary Carnivore
## 12359         4.56954301        6.849625561 Secondary Carnivore
## 12360         1.85629799        0.002059853 Secondary Carnivore
## 12361         2.52652832        0.015041422   Primary Carnivore
## 12362         2.16332303        0.223982763 Secondary Carnivore
## 12363         1.66770682        2.894695819 Secondary Carnivore
## 12364         4.47960696        6.849625561 Secondary Carnivore
## 12365         0.00000000        0.015041422   Primary Carnivore
## 12366         4.85203026        6.942696930 Secondary Carnivore
## 12367         5.02388052        4.094232049   Primary Carnivore
## 12368         1.85848310        0.900183757   Primary Carnivore
## 12369         6.44730586        7.288251436 Secondary Carnivore
## 12370         0.00000000        1.315195554   Primary Carnivore
## 12371         4.79579055        7.288251436   Primary Carnivore
## 12372         2.86789890        2.387053327 Secondary Carnivore
## 12373         3.15700042        2.387053327 Secondary Carnivore
## 12374         1.09192330        0.211247175 Secondary Carnivore
## 12375         1.82454929        0.063185562 Secondary Carnivore
## 12376         1.02961942        2.894695819   Primary Carnivore
## 12377         4.59208495        2.387053327 Secondary Carnivore
## 12378         3.91657264        4.232513096   Primary Carnivore
## 12379         1.76644166        4.047182371 Secondary Carnivore
## 12380         2.74071098        3.873611973 Secondary Carnivore
## 12381         0.99325177        0.878396534   Primary Carnivore
## 12382         3.26956894        2.894695819   Primary Carnivore
## 12383         3.01944880        2.853935439 Secondary Carnivore
## 12384         7.72832775        6.670778349 Secondary Carnivore
## 12385         1.12167756        0.015041422   Primary Carnivore
## 12386         1.08180517        0.211247175 Secondary Carnivore
## 12387         0.83290912        0.470853119  Tertiary Carnivore
## 12388         4.12713439        0.004578480  Tertiary Carnivore
## 12389         0.00000000        1.126655451   Primary Carnivore
## 12390         3.58629287        6.670778349   Primary Carnivore
## 12391         0.01064316        0.305596011  Tertiary Carnivore
## 12392         1.38629436        0.020024930  Tertiary Carnivore
## 12393         1.24126859        0.561550440 Secondary Carnivore
## 12394         5.48188814        6.670778349 Secondary Carnivore
## 12395         7.34018684        6.942696930  Tertiary Carnivore
## 12396         1.32972401        0.015041422  Tertiary Carnivore
## 12397         6.06092531        2.610718759 Secondary Carnivore
## 12398         7.88615659        6.670778349 Secondary Carnivore
## 12399         4.25844557        0.002059853 Secondary Carnivore
## 12400         8.12346889        7.288251436 Secondary Carnivore
## 12401         1.14740245        0.015041422 Secondary Carnivore
## 12402         6.83936937        6.849625561 Secondary Carnivore
## 12403         6.41345896        4.094232049 Secondary Carnivore
## 12404         3.92395158        2.277308093   Primary Carnivore
## 12405         3.54673969        6.670778349 Secondary Carnivore
## 12406         3.56953270        2.387053327 Secondary Carnivore
## 12407         0.00000000        0.130455954 Secondary Carnivore
## 12408         4.41642806        6.670778349 Secondary Carnivore
## 12409         3.21112587        3.651616415 Secondary Carnivore
## 12410         3.01553490        0.015041422  Tertiary Carnivore
## 12411         4.29959566        2.153233085   Primary Carnivore
## 12412         4.83628191        6.849625561 Secondary Carnivore
## 12413         4.24769492        3.873611973 Secondary Carnivore
## 12414         3.91921707        1.506685742 Secondary Carnivore
## 12415         0.26236426        2.024989105   Primary Carnivore
## 12416         1.40609699        0.305596011  Tertiary Carnivore
## 12417         0.00000000        1.459857720   Primary Carnivore
## 12418         5.14166356        7.288251436  Tertiary Carnivore
## 12419         3.28057281        2.433189939 Secondary Carnivore
## 12420         4.45781801        7.288251436   Primary Carnivore
## 12421         4.27527626        6.670778349   Primary Carnivore
## 12422         7.52736356        7.288251436 Secondary Carnivore
## 12423         4.23555473        4.094232049 Secondary Carnivore
## 12424         0.02078254        1.180964506 Secondary Carnivore
## 12425         0.85441533        2.153233085           Herbivore
## 12426         0.00000000        0.130455954 Secondary Carnivore
## 12427         1.99877364        0.015041422  Tertiary Carnivore
## 12428         0.00000000        3.146907198   Primary Carnivore
## 12429         7.95384545        6.849625561 Secondary Carnivore
## 12430         2.64617480        0.305596011  Tertiary Carnivore
## 12431         3.12236492        3.038160131 Secondary Carnivore
## 12432         0.00000000        0.340191127   Primary Carnivore
## 12433         4.41558229        3.943759073 Secondary Carnivore
## 12434         3.70179568        0.735932630   Primary Carnivore
## 12435         4.56017282        3.146907198 Secondary Carnivore
## 12436         2.13416644        1.742111989 Secondary Carnivore
## 12437         6.77445243        6.670778349 Secondary Carnivore
## 12438         2.54160199        2.050338578   Primary Carnivore
## 12439         2.08815348        0.009889753           Herbivore
## 12440         2.89668512        2.136925014 Secondary Carnivore
## 12441         2.10413415        1.886232978 Secondary Carnivore
## 12442         4.71573613        3.304296954 Secondary Carnivore
## 12443         7.34665516        7.288251436 Secondary Carnivore
## 12444         5.22810947        1.168798094   Primary Carnivore
## 12445         2.21920348        0.223982763 Secondary Carnivore
## 12446         2.79116511        1.886232978   Primary Carnivore
## 12447         2.56240767        2.075946520   Primary Carnivore
## 12448         2.84490938        3.473231162  Tertiary Carnivore
## 12449         1.52388002        1.532760019 Secondary Carnivore
## 12450         3.63663834        3.651616415   Primary Carnivore
## 12451         2.36368019        0.015041422   Primary Carnivore
## 12452         3.92789635        6.849625561   Primary Carnivore
## 12453         2.91695959        2.433189939 Secondary Carnivore
## 12454         6.52590904        6.670778349 Secondary Carnivore
## 12455         2.45958884        0.015041422   Primary Carnivore
## 12456         2.59525471        3.473231162 Secondary Carnivore
## 12457         7.61386804        6.670778349 Secondary Carnivore
## 12458         2.27212589        1.532760019   Primary Carnivore
## 12459         3.68637632        2.153233085 Secondary Carnivore
## 12460         0.00000000        0.211247175 Secondary Carnivore
## 12461         3.33932198        2.404044412 Secondary Carnivore
## 12462         1.90389697        0.211247175 Secondary Carnivore
## 12463         3.25424297        3.515099295 Secondary Carnivore
## 12464         2.98568194        4.121930401   Primary Carnivore
## 12465         2.82137889        2.153233085 Secondary Carnivore
## 12466         3.15700042        1.168798094 Secondary Carnivore
## 12467         5.61312811        6.849625561   Primary Carnivore
## 12468         3.23080440        2.241290896   Primary Carnivore
## 12469         2.05412373        0.856029167 Secondary Carnivore
## 12470         2.47653840        0.885298676  Tertiary Carnivore
## 12471         3.24259235        0.749689812   Primary Carnivore
## 12472         3.23867845        3.146907198 Secondary Carnivore
## 12473         2.27829240        2.387053327  Tertiary Carnivore
## 12474         5.44570235        1.168798094   Primary Carnivore
## 12475         5.77455155        6.942696930  Tertiary Carnivore
## 12476         4.57367952        4.094232049 Secondary Carnivore
## 12477         6.28897318        6.670778349 Secondary Carnivore
## 12478         4.86375810        1.673740129   Primary Carnivore
## 12479         2.81367068        2.891851822  Tertiary Carnivore
## 12480         0.00000000        0.002344505 Secondary Carnivore
## 12481         1.20297230        0.015041422   Primary Carnivore
## 12482         2.83749827        2.853935439 Secondary Carnivore
## 12483         7.05142263        6.670778349 Secondary Carnivore
## 12484         3.25037449        0.020024930   Primary Carnivore
## 12485         1.00063188        1.711701702 Secondary Carnivore
## 12486         7.78130551        6.670778349 Secondary Carnivore
## 12487         7.82043952        7.288251436 Secondary Carnivore
## 12488         8.06495089        4.094232049 Secondary Carnivore
## 12489         0.79750720        0.413477448 Secondary Carnivore
## 12490         0.00000000        1.673740129           Herbivore
## 12491         4.51085951        7.288251436 Secondary Carnivore
## 12492         2.25023861        0.214753881 Secondary Carnivore
## 12493         2.82137889        0.009889753   Primary Carnivore
## 12494         8.50329709        7.288251436 Secondary Carnivore
## 12495         4.58598737        4.094232049 Secondary Carnivore
## 12496         3.79098468        1.168798094 Secondary Carnivore
## 12497         0.00000000        0.015041422   Primary Carnivore
## 12498         2.54944517        0.015041422  Tertiary Carnivore
## 12499         5.52146092        6.942696930 Secondary Carnivore
## 12500         2.94443898        2.894695819   Primary Carnivore
## 12501         1.62136648        1.180964506  Tertiary Carnivore
## 12502         3.72810017        1.673740129 Secondary Carnivore
## 12503         3.66612247        6.849625561 Secondary Carnivore
## 12504         0.83290912        0.147199990  Tertiary Carnivore
## 12505         1.66203036        0.009889753  Tertiary Carnivore
## 12506         4.30000280        6.849625561 Secondary Carnivore
## 12507         1.69009582        0.015041422 Secondary Carnivore
## 12508         3.88362353        6.849625561   Primary Carnivore
## 12509         2.54944517        0.044241443   Primary Carnivore
## 12510         0.63180355        4.047182371   Primary Carnivore
## 12511         3.87120101        1.673740129 Secondary Carnivore
## 12512         3.59731226        2.153233085 Secondary Carnivore
## 12513         4.66343909        6.849625561 Secondary Carnivore
## 12514         5.57215403        4.259772081   Primary Carnivore
## 12515         1.27256560        0.823328714 Secondary Carnivore
## 12516         0.82855182        1.877421323 Secondary Carnivore
## 12517         6.11146734        7.288251436   Primary Carnivore
## 12518         0.00000000        0.116104790 Secondary Carnivore
## 12519         4.98360662        4.094232049   Primary Carnivore
## 12520         4.46579317        3.473231162   Primary Carnivore
## 12521         5.35185813        7.288251436  Tertiary Carnivore
## 12522         1.99741771        0.490146528  Tertiary Carnivore
## 12523         3.81683282        2.153233085 Secondary Carnivore
## 12524         0.30748470        0.211247175  Tertiary Carnivore
## 12525         6.27795841        6.670778349 Secondary Carnivore
## 12526         1.22671229        0.305596011  Tertiary Carnivore
## 12527         0.69314718        0.470853119  Tertiary Carnivore
## 12528         2.91158951        1.962719022 Secondary Carnivore
## 12529         3.93573953        1.168798094 Secondary Carnivore
## 12530         2.77819796        0.015041422   Primary Carnivore
## 12531         4.29728541        4.094232049 Secondary Carnivore
## 12532         0.00000000        0.009889753  Tertiary Carnivore
## 12533         7.22875123        6.670778349 Secondary Carnivore
## 12534         5.55902642        1.168798094   Primary Carnivore
## 12535         7.02028007        6.670778349 Secondary Carnivore
## 12536         2.37861978        2.387053327 Secondary Carnivore
## 12537         4.48863637        6.670778349 Secondary Carnivore
## 12538         0.78845736        0.130455954 Secondary Carnivore
## 12539         0.40546511        2.894695819   Primary Carnivore
## 12540         7.34665516        7.288251436 Secondary Carnivore
## 12541         0.00000000        1.459857720   Primary Carnivore
## 12542         0.00000000        0.002344505 Secondary Carnivore
## 12543         4.92308559        7.288251436 Secondary Carnivore
## 12544         3.36729583        1.168798094 Secondary Carnivore
## 12545         1.78170913        0.856029167   Primary Carnivore
## 12546         6.08904488        7.288251436 Secondary Carnivore
## 12547         2.16676537        0.015041422  Tertiary Carnivore
## 12548         3.75560309        6.942696930 Secondary Carnivore
## 12549         0.83290912        4.262479896 Secondary Carnivore
## 12550         1.05779029        2.122440181 Secondary Carnivore
## 12551         4.51085951        7.288251436 Secondary Carnivore
## 12552         1.93152141        0.490146528 Secondary Carnivore
## 12553         2.03339760        1.742111989 Secondary Carnivore
## 12554         3.68135119        2.387053327 Secondary Carnivore
## 12555         2.56510319        2.254856321   Primary Carnivore
## 12556         5.64897424        4.259772081 Secondary Carnivore
## 12557         3.51868408        1.886232978 Secondary Carnivore
## 12558         2.54944517        0.281204828 Secondary Carnivore
## 12559         5.89715387        6.942696930  Tertiary Carnivore
## 12560         2.61739583        1.742111989 Secondary Carnivore
## 12561         2.24191003        6.670778349 Secondary Carnivore
## 12562         7.47363711        7.288251436 Secondary Carnivore
## 12563         1.96571278        0.856029167 Secondary Carnivore
## 12564         0.40546511        0.063185562 Secondary Carnivore
## 12565         6.19031541        6.942696930  Tertiary Carnivore
## 12566         2.28033948        1.532760019   Primary Carnivore
## 12567         2.13947776        4.047182371 Secondary Carnivore
## 12568         3.49650756        3.146907198 Secondary Carnivore
## 12569         0.53062825        0.130455954  Tertiary Carnivore
## 12570         3.95316495        6.670778349 Secondary Carnivore
## 12571         3.73050113        6.670778349 Secondary Carnivore
## 12572         3.05870707        3.038160131 Secondary Carnivore
## 12573         8.44080878        6.849625561 Secondary Carnivore
## 12574         2.32630162        2.845177164 Secondary Carnivore
## 12575         1.48160454        0.130455954 Secondary Carnivore
## 12576         3.57234564        3.168005566 Secondary Carnivore
## 12577         6.59441346        7.288251436  Tertiary Carnivore
## 12578         4.60616969        4.259772081  Tertiary Carnivore
## 12579         1.54756251        0.015041422 Secondary Carnivore
## 12580         4.22537282        1.168798094 Secondary Carnivore
## 12581         0.00000000        0.470853119  Tertiary Carnivore
## 12582         2.98061864        2.387053327 Secondary Carnivore
## 12583         3.76352300        1.168798094 Secondary Carnivore
## 12584         3.19179236        1.540263127 Secondary Carnivore
## 12585         4.01096295        6.670778349 Secondary Carnivore
## 12586         5.11198779        4.094232049  Tertiary Carnivore
## 12587         1.16315081        1.126655451   Primary Carnivore
## 12588         1.19392247        0.211247175 Secondary Carnivore
## 12589         7.39079852        7.288251436 Secondary Carnivore
## 12590         4.66861436        2.153233085 Secondary Carnivore
## 12591         1.54756251        0.009889753  Tertiary Carnivore
## 12592         6.06610809        7.288251436  Tertiary Carnivore
## 12593         4.04480412        6.942696930  Tertiary Carnivore
## 12594         4.98561830        3.304296954   Primary Carnivore
## 12595         6.77502357        6.849625561 Secondary Carnivore
## 12596         4.62497281        3.168005566 Secondary Carnivore
## 12597         2.58021683        1.532760019   Primary Carnivore
## 12598         4.98360662        4.094232049   Primary Carnivore
## 12599         2.63905733        2.153233085 Secondary Carnivore
## 12600         5.22035583        3.146907198 Secondary Carnivore
## 12601         7.13297667        6.670778349 Secondary Carnivore
## 12602         2.58776404        0.757060688 Secondary Carnivore
## 12603         2.11709853        3.515099295 Secondary Carnivore
## 12604         2.36837283        0.735932630 Secondary Carnivore
## 12605         4.18813844        6.849625561  Tertiary Carnivore
## 12606         0.00000000        0.004578480 Secondary Carnivore
## 12607         3.41444261        1.742111989 Secondary Carnivore
## 12608         5.13603370        1.673740129 Secondary Carnivore
## 12609         1.80664808        0.116104790 Secondary Carnivore
## 12610         3.39114705        1.670180746 Secondary Carnivore
## 12611         1.30019166        2.845177164 Secondary Carnivore
## 12612         3.13113691        4.259772081 Secondary Carnivore
## 12613         2.64326276        0.490146528 Secondary Carnivore
## 12614         0.00000000        0.015041422 Secondary Carnivore
## 12615         4.08260931        6.670778349 Secondary Carnivore
## 12616         5.02388052        6.942696930 Secondary Carnivore
## 12617         1.04027671        0.885298676 Secondary Carnivore
## 12618         3.94931879        7.161415474 Secondary Carnivore
## 12619         0.00000000        0.002059853 Secondary Carnivore
## 12620         2.14943391        0.735932630 Secondary Carnivore
## 12621         7.29369772        7.288251436 Secondary Carnivore
## 12622         1.53686722        0.015041422  Tertiary Carnivore
## 12623         0.00000000        0.147199990 Secondary Carnivore
## 12624         2.11142459        0.900183757 Secondary Carnivore
## 12625         1.82454929        0.490146528  Tertiary Carnivore
## 12626         0.83290912        1.831515834 Secondary Carnivore
## 12627         4.75780543        4.094232049 Secondary Carnivore
## 12628         2.74084002        1.886232978 Secondary Carnivore
## 12629         6.03954017        1.886232978 Secondary Carnivore
## 12630         0.17395331        1.532760019  Tertiary Carnivore
## 12631         3.28091122        3.146907198 Secondary Carnivore
## 12632         5.35185813        7.288251436  Tertiary Carnivore
## 12633         0.00000000        2.404044412           Herbivore
## 12634         1.19392247        0.147199990 Secondary Carnivore
## 12635         4.44968528        1.168798094  Tertiary Carnivore
## 12636         4.82807371        1.673740129   Primary Carnivore
## 12637         0.00000000        1.877421323 Secondary Carnivore
## 12638         7.68303529        6.849625561 Secondary Carnivore
## 12639         1.85207032        0.211247175 Secondary Carnivore
## 12640         0.19885086        0.305596011 Secondary Carnivore
## 12641         1.65822808        0.885298676  Tertiary Carnivore
## 12642         1.84292776        1.962719022 Secondary Carnivore
## 12643         2.58021683        2.136925014 Secondary Carnivore
## 12644         5.77299754        1.886232978   Primary Carnivore
## 12645         4.45771372        1.886232978   Primary Carnivore
## 12646         2.77102500        1.962719022  Tertiary Carnivore
## 12647         3.94352167        3.146907198  Tertiary Carnivore
## 12648         2.95491028        2.472143654   Primary Carnivore
## 12649         7.98214318        6.849625561 Secondary Carnivore
## 12650         4.79892612        2.387053327   Primary Carnivore
## 12651         0.92821930        6.942696930           Herbivore
## 12652         7.83494639        6.670778349 Secondary Carnivore
## 12653         7.03341830        6.670778349 Secondary Carnivore
## 12654         1.32175584        2.254856321 Secondary Carnivore
## 12655         6.78649119        6.670778349  Tertiary Carnivore
## 12656         0.00000000        1.670180746   Primary Carnivore
## 12657         0.00000000        2.404044412           Herbivore
## 12658         5.90511659        1.886232978   Primary Carnivore
## 12659         4.61485315        1.432814265 Secondary Carnivore
## 12660         4.22753423        1.506685742   Primary Carnivore
## 12661         7.39184671        7.288251436 Secondary Carnivore
## 12662         1.28923265        0.856029167 Secondary Carnivore
## 12663         1.51292701        0.015041422 Secondary Carnivore
## 12664         0.97455964        0.305596011  Tertiary Carnivore
## 12665         7.97968130        7.288251436 Secondary Carnivore
## 12666         1.18784342        0.561550440 Secondary Carnivore
## 12667         4.06355884        2.138914945 Secondary Carnivore
## 12668         3.19043520        2.610718759 Secondary Carnivore
## 12669         1.76985463        0.015041422  Tertiary Carnivore
## 12670         5.38587026        0.004578480  Tertiary Carnivore
## 12671         1.32441896        4.047182371 Secondary Carnivore
## 12672         0.83290912        5.169038067   Primary Carnivore
## 12673         2.56617937        1.962719022 Secondary Carnivore
## 12674         2.17815501        2.845177164 Secondary Carnivore
## 12675         4.96284463        6.670778349  Tertiary Carnivore
## 12676         2.16217294        0.009889753   Primary Carnivore
## 12677         0.90421815        0.305596011  Tertiary Carnivore
## 12678         0.00000000        1.886232978           Herbivore
## 12679         1.34547237        0.856029167 Secondary Carnivore
## 12680         0.00000000        0.004578480  Tertiary Carnivore
## 12681         3.57660621        1.432814265  Tertiary Carnivore
## 12682         0.43048287        0.856029167  Tertiary Carnivore
## 12683         7.98132323        6.670778349 Secondary Carnivore
## 12684         3.66867675        0.749689812   Primary Carnivore
## 12685         1.19392247        1.532760019  Tertiary Carnivore
## 12686         4.18801704        3.651616415   Primary Carnivore
## 12687         1.44926916        1.251683108 Secondary Carnivore
## 12688         4.50534985        4.094232049  Tertiary Carnivore
## 12689         2.44633906        0.470853119 Secondary Carnivore
## 12690         4.34510328        6.670778349 Secondary Carnivore
## 12691         4.84418709        3.146907198 Secondary Carnivore
## 12692         1.49962305        0.561550440 Secondary Carnivore
## 12693         6.67997600        6.670778349 Secondary Carnivore
## 12694         2.11384297        0.009889753 Secondary Carnivore
## 12695         3.50453585        3.873611973  Tertiary Carnivore
## 12696         8.49631679        6.849625561 Secondary Carnivore
## 12697         5.86646806        2.153233085  Tertiary Carnivore
## 12698         0.37156356        0.130455954 Secondary Carnivore
## 12699         0.00000000        1.981883583   Primary Carnivore
## 12700         4.31348009        4.259772081 Secondary Carnivore
## 12701         2.82137889        1.168798094 Secondary Carnivore
## 12702         2.65324196        0.002344505 Secondary Carnivore
## 12703         3.85014760        6.849625561 Secondary Carnivore
## 12704         3.86157146        0.015041422 Secondary Carnivore
## 12705         3.26575941        2.387053327 Secondary Carnivore
## 12706         4.62497281        4.259772081 Secondary Carnivore
## 12707         2.94443898        0.004578480  Tertiary Carnivore
## 12708         4.39444915        7.288251436 Secondary Carnivore
## 12709         0.99325177        0.130455954  Tertiary Carnivore
## 12710         4.00369019        1.307030142 Secondary Carnivore
## 12711         0.53999600        0.413477448  Tertiary Carnivore
## 12712         0.26236426        1.920179330   Primary Carnivore
## 12713         3.30310667        1.506685742 Secondary Carnivore
## 12714         0.00000000        0.130455954 Secondary Carnivore
## 12715         4.21331208        1.886232978 Secondary Carnivore
## 12716         5.75574221        1.168798094 Secondary Carnivore
## 12717         1.56024767        0.009889753   Primary Carnivore
## 12718         2.02683159        0.885298676  Tertiary Carnivore
## 12719         4.75531284        3.943759073 Secondary Carnivore
## 12720         4.99767163        4.232513096 Secondary Carnivore
## 12721         2.22354189        0.015041422 Secondary Carnivore
## 12722         3.26575941        5.169038067   Primary Carnivore
## 12723         1.71918878        0.856029167   Primary Carnivore
## 12724         1.13462273        2.136925014 Secondary Carnivore
## 12725         0.58778666        0.147199990 Secondary Carnivore
## 12726         1.84150156        1.711701702  Tertiary Carnivore
## 12727         2.97041447        2.387053327 Secondary Carnivore
## 12728         0.00000000        0.002344505 Secondary Carnivore
## 12729         0.00000000        2.404044412           Herbivore
## 12730         2.77258872        0.116104790 Secondary Carnivore
## 12731         1.85629799        0.490146528  Tertiary Carnivore
## 12732         4.59410924        3.168005566 Secondary Carnivore
## 12733         5.56452041        7.288251436  Tertiary Carnivore
## 12734         8.05360097        6.670778349 Secondary Carnivore
## 12735         3.24649099        1.307030142 Secondary Carnivore
## 12736         1.70292826        0.015041422 Secondary Carnivore
## 12737         3.88752537        0.749689812   Primary Carnivore
## 12738         0.00000000        0.015041422  Tertiary Carnivore
## 12739         5.18178355        6.849625561 Secondary Carnivore
## 12740         2.40865536        1.540263127 Secondary Carnivore
## 12741         2.90690106        3.515099295 Secondary Carnivore
## 12742         2.61739583        0.757060688  Tertiary Carnivore
## 12743         2.52572864        0.735932630 Secondary Carnivore
## 12744         3.36037539        2.891851822  Tertiary Carnivore
## 12745         3.35340672        5.169038067   Primary Carnivore
## 12746         0.00000000        1.886232978           Herbivore
## 12747         1.98787435        2.241290896   Primary Carnivore
## 12748         2.68852753        3.226603994 Secondary Carnivore
## 12749         2.58776404        2.136925014 Secondary Carnivore
## 12750         1.35325451        2.404044412 Secondary Carnivore
## 12751         4.70953020        7.288251436 Secondary Carnivore
## 12752         7.35212054        6.849625561 Secondary Carnivore
## 12753         2.56494936        1.315195554 Secondary Carnivore
## 12754         5.81889528        6.849625561 Secondary Carnivore
## 12755         1.79275897        0.116104790 Secondary Carnivore
## 12756         1.62924054        0.147199990 Secondary Carnivore
## 12757         7.75022723        6.670778349 Secondary Carnivore
## 12758         3.79773386        4.094232049 Secondary Carnivore
## 12759         0.95551145        0.490146528  Tertiary Carnivore
## 12760         1.53255687        2.075946520 Secondary Carnivore
## 12761         5.14813381        1.886232978   Primary Carnivore
## 12762         0.00000000        1.886232978           Herbivore
## 12763         0.33647224        2.894695819   Primary Carnivore
## 12764         3.28578653        0.015041422 Secondary Carnivore
## 12765         2.29253476        1.315195554   Primary Carnivore
## 12766         7.29715875        6.849625561 Secondary Carnivore
## 12767         0.26236426        2.024989105   Primary Carnivore
## 12768         0.68813464        1.251683108 Secondary Carnivore
## 12769         1.02961942        0.470853119  Tertiary Carnivore
## 12770         1.26976054        1.180964506 Secondary Carnivore
## 12771         4.04305127        6.670778349  Tertiary Carnivore
## 12772         3.96840334        2.050338578   Primary Carnivore
## 12773         5.72227706        6.849625561 Secondary Carnivore
## 12774         4.79579055        7.288251436 Secondary Carnivore
## 12775         7.40482675        6.670778349 Secondary Carnivore
## 12776         0.78845736        7.161415474   Primary Carnivore
## 12777         5.57215403        4.259772081   Primary Carnivore
## 12778         3.51452607        1.886232978 Secondary Carnivore
## 12779         1.87640694        0.885298676  Tertiary Carnivore
## 12780         2.63905733        0.002059853 Secondary Carnivore
## 12781         0.00000000        2.894695819   Primary Carnivore
## 12782         3.40452517        1.886232978 Secondary Carnivore
## 12783         0.00000000        0.002059853 Secondary Carnivore
## 12784         2.24918432        0.009889753   Primary Carnivore
## 12785         1.66392610        0.211247175 Secondary Carnivore
## 12786         0.06765865        0.305596011 Secondary Carnivore
## 12787         2.27212589        1.670180746 Secondary Carnivore
## 12788         2.77881927        0.885298676  Tertiary Carnivore
## 12789         6.58340922        4.259772081  Tertiary Carnivore
## 12790         0.00000000        1.670180746   Primary Carnivore
## 12791         1.45161383        1.532760019 Secondary Carnivore
## 12792         1.99333884        1.307030142 Secondary Carnivore
## 12793         0.00000000        0.002059853 Secondary Carnivore
## 12794         2.04122033        0.063185562 Secondary Carnivore
## 12795         2.23537634        0.015041422 Secondary Carnivore
## 12796         2.58021683        2.891851822 Secondary Carnivore
## 12797         4.25134831        1.168798094 Secondary Carnivore
## 12798         0.00000000        2.404044412           Herbivore
## 12799         1.47476301        0.900183757 Secondary Carnivore
## 12800         6.77490937        6.849625561 Secondary Carnivore
## 12801         3.42816383        0.015041422   Primary Carnivore
## 12802         1.61541998        0.009889753  Tertiary Carnivore
## 12803         6.90505163        6.849625561 Secondary Carnivore
## 12804         1.66770682        0.002344505 Secondary Carnivore
## 12805         3.03013370        3.146907198 Secondary Carnivore
## 12806         1.81156210        0.211247175 Secondary Carnivore
## 12807         1.01884732        0.223982763 Secondary Carnivore
## 12808         1.51072194        0.015041422  Tertiary Carnivore
## 12809         5.68357977        4.094232049  Tertiary Carnivore
## 12810         4.79579055        7.288251436 Secondary Carnivore
## 12811         1.19996478        0.015041422  Tertiary Carnivore
## 12812         7.45066080        7.288251436 Secondary Carnivore
## 12813         2.47863704        1.711701702   Primary Carnivore
## 12814         1.31640823        0.214753881 Secondary Carnivore
## 12815         6.08677473        4.094232049 Secondary Carnivore
## 12816         3.51443678        2.610718759 Secondary Carnivore
## 12817         2.92316158        3.473231162 Secondary Carnivore
## 12818         1.77495235        0.002344505 Secondary Carnivore
## 12819         0.00000000        1.877421323 Secondary Carnivore
## 12820         2.32727771        0.009889753           Herbivore
## 12821         1.43983513        0.305596011  Tertiary Carnivore
## 12822         5.21553341        0.735932630   Primary Carnivore
## 12823         4.19166787        2.433189939 Secondary Carnivore
## 12824         1.47796155        1.711701702  Tertiary Carnivore
## 12825         2.28238239        1.315195554 Secondary Carnivore
## 12826         2.55722731        1.315195554 Secondary Carnivore
## 12827         3.16665579        0.470853119 Secondary Carnivore
## 12828         0.00000000        0.002344505  Tertiary Carnivore
## 12829         2.79116511        0.009889753           Herbivore
## 12830         1.75958057        4.262479896 Secondary Carnivore
## 12831         1.29746315        0.413477448 Secondary Carnivore
## 12832         2.85647021        1.886232978 Secondary Carnivore
## 12833         2.85070650        0.063185562 Secondary Carnivore
## 12834         5.18505908        1.432814265 Secondary Carnivore
## 12835         1.20297230        1.831515834  Tertiary Carnivore
## 12836         3.26956894        1.886232978 Secondary Carnivore
## 12837         3.80443779        6.670778349   Primary Carnivore
## 12838         5.01727984        7.288251436  Tertiary Carnivore
## 12839         3.85227300        6.670778349 Secondary Carnivore
## 12840         3.27222700        0.735932630   Primary Carnivore
## 12841         1.08180517        0.116104790 Secondary Carnivore
## 12842         1.89611948        0.885298676 Secondary Carnivore
## 12843         1.66770682        0.490146528 Secondary Carnivore
## 12844         4.27495632        4.232513096  Tertiary Carnivore
## 12845         5.77827133        6.670778349  Tertiary Carnivore
## 12846         0.00000000        1.673740129           Herbivore
## 12847         1.48387469        0.885298676 Secondary Carnivore
## 12848         3.55820113        2.153233085           Herbivore
## 12849         0.78845736        2.145288428 Secondary Carnivore
## 12850         2.00417906        0.211247175 Secondary Carnivore
## 12851         8.42299240        6.849625561 Secondary Carnivore
## 12852         6.01859321        7.288251436  Tertiary Carnivore
## 12853         0.00000000        0.002059853 Secondary Carnivore
## 12854         1.95727391        0.004578480   Primary Carnivore
## 12855         1.62924054        0.223982763 Secondary Carnivore
## 12856         1.04027671        1.454402431 Secondary Carnivore
## 12857         5.44241771        2.153233085 Secondary Carnivore
## 12858         3.06339092        3.943759073 Secondary Carnivore
## 12859         2.53369681        1.981883583   Primary Carnivore
## 12860         4.09434456        7.288251436 Secondary Carnivore
## 12861         3.28776736        2.433189939  Tertiary Carnivore
## 12862         5.30330491        7.288251436 Secondary Carnivore
## 12863         0.00000000        0.009889753 Secondary Carnivore
## 12864         5.28826703        2.153233085  Tertiary Carnivore
## 12865         0.95551145        0.211247175 Secondary Carnivore
## 12866         1.67335124        0.735932630 Secondary Carnivore
## 12867         2.70136121        3.515099295 Secondary Carnivore
## 12868         1.18172720        2.387053327 Secondary Carnivore
## 12869         2.41126011        1.014024833 Secondary Carnivore
## 12870         2.32238772        0.223982763 Secondary Carnivore
## 12871         7.51261754        6.942696930 Secondary Carnivore
## 12872         0.00000000        0.009889753 Secondary Carnivore
## 12873         2.63905733        0.002059853 Secondary Carnivore
## 12874         0.91629073        0.063185562 Secondary Carnivore
## 12875         3.02456266        2.254856321 Secondary Carnivore
## 12876         1.41098697        0.147199990 Secondary Carnivore
## 12877         3.78940329        0.214753881  Tertiary Carnivore
## 12878         0.83290912        0.130455954 Secondary Carnivore
## 12879         7.62525355        6.849625561 Secondary Carnivore
## 12880         3.34990409        2.387053327   Primary Carnivore
## 12881         4.61512052        7.288251436  Tertiary Carnivore
## 12882         3.55010577        1.540263127 Secondary Carnivore
## 12883         1.24990174        2.241290896   Primary Carnivore
## 12884         7.22329568        7.288251436 Secondary Carnivore
## 12885         4.71849887        3.146907198 Secondary Carnivore
## 12886         3.92296295        2.138914945 Secondary Carnivore
## 12887         3.28091122        1.168798094   Primary Carnivore
## 12888         2.38139627        2.136925014 Secondary Carnivore
## 12889         1.34547237        0.885298676 Secondary Carnivore
## 12890         2.23697934        0.490146528   Primary Carnivore
## 12891         2.91463067        2.136925014 Secondary Carnivore
## 12892         4.30217141        0.002059853 Secondary Carnivore
## 12893         1.13140211        0.470853119  Tertiary Carnivore
## 12894         3.38113072        1.632888289 Secondary Carnivore
## 12895         1.53901545        2.853935439 Secondary Carnivore
## 12896         2.98061864        0.885298676  Tertiary Carnivore
## 12897         1.95868534        0.211247175 Secondary Carnivore
## 12898         1.68639895        7.161415474 Secondary Carnivore
## 12899         3.09557761        0.009889753   Primary Carnivore
## 12900         2.63991411        2.254856321   Primary Carnivore
## 12901         0.00000000        0.305596011 Secondary Carnivore
## 12902         3.36037539        1.168798094 Secondary Carnivore
## 12903         1.59533899        0.413477448 Secondary Carnivore
## 12904         3.56133013        1.886232978 Secondary Carnivore
## 12905         4.65396035        1.168798094 Secondary Carnivore
## 12906         0.00000000        1.459857720   Primary Carnivore
## 12907         7.34968088        6.849625561 Secondary Carnivore
## 12908         4.68213123        6.670778349  Tertiary Carnivore
## 12909         1.31908561        0.004578480   Primary Carnivore
## 12910         8.85237889        7.288251436 Secondary Carnivore
## 12911         0.93216408        4.094232049           Herbivore
## 12912         4.86753445        2.153233085 Secondary Carnivore
## 12913         0.00000000        0.281204828 Secondary Carnivore
## 12914         2.12823171        0.211247175 Secondary Carnivore
## 12915         5.67194775        1.886232978 Secondary Carnivore
## 12916         0.82417544        1.831515834   Primary Carnivore
## 12917         0.63657683        4.259772081           Herbivore
## 12918         6.61069604        6.942696930 Secondary Carnivore
## 12919         3.42426265        3.651616415  Tertiary Carnivore
## 12920         3.73440238        3.943759073 Secondary Carnivore
## 12921         3.66612247        0.749689812   Primary Carnivore
## 12922         2.08193842        0.004578480  Tertiary Carnivore
## 12923         0.00000000        2.145288428 Secondary Carnivore
## 12924         3.77045944        2.050338578   Primary Carnivore
## 12925         8.52734152        7.288251436 Secondary Carnivore
## 12926         3.71571611        2.433189939 Secondary Carnivore
## 12927         3.06339092        0.735932630 Secondary Carnivore
## 12928         2.61520365        3.226603994  Tertiary Carnivore
## 12929         7.20630310        6.849625561 Secondary Carnivore
## 12930         2.83321334        3.146907198 Secondary Carnivore
## 12931         2.80940270        1.420705940 Secondary Carnivore
## 12932         6.99062476        7.288251436 Secondary Carnivore
## 12933         4.47847253        1.168798094 Secondary Carnivore
## 12934         1.68639895        0.116104790 Secondary Carnivore
## 12935         0.00000000        0.009889753           Herbivore
## 12936         2.50470928        1.432814265 Secondary Carnivore
## 12937         6.66134310        6.670778349 Secondary Carnivore
## 12938         0.87546874        0.063185562 Secondary Carnivore
## 12939         3.20453346        2.610718759  Tertiary Carnivore
## 12940         1.08518927        1.180964506  Tertiary Carnivore
## 12941         3.00071982        0.214753881  Tertiary Carnivore
## 12942         2.00552586        1.307030142 Secondary Carnivore
## 12943         1.46325540        4.094232049           Herbivore
## 12944         4.53689135        1.673740129 Secondary Carnivore
## 12945         5.25227343        7.288251436   Primary Carnivore
## 12946         3.03013370        1.670180746   Primary Carnivore
## 12947         5.25017699        3.473231162   Primary Carnivore
## 12948         3.88567903        2.387053327 Secondary Carnivore
## 12949         3.89731538        0.735932630 Secondary Carnivore
## 12950         5.54126355        3.146907198 Secondary Carnivore
## 12951         4.77912349        4.094232049  Tertiary Carnivore
## 12952         1.70402055        0.211247175 Secondary Carnivore
## 12953         2.81540872        0.757060688 Secondary Carnivore
## 12954         7.84998662        6.670778349 Secondary Carnivore
## 12955         0.00000000        0.002344505  Tertiary Carnivore
## 12956         3.94158181        3.168005566 Secondary Carnivore
## 12957         1.73342389        0.015041422 Secondary Carnivore
## 12958         3.49347266        1.168798094 Secondary Carnivore
## 12959         0.26236426        2.107009466   Primary Carnivore
## 12960         0.00000000        2.107009466   Primary Carnivore
## 12961         2.84490938        0.020024930  Tertiary Carnivore
## 12962         0.74193734        2.241290896   Primary Carnivore
## 12963         1.67335124        0.490146528 Secondary Carnivore
## 12964         4.02177387        2.153233085  Tertiary Carnivore
## 12965         4.50976000        6.670778349 Secondary Carnivore
## 12966         4.07414185        3.159561805   Primary Carnivore
## 12967         2.76744803        6.670778349 Secondary Carnivore
## 12968         2.96460274        3.038160131 Secondary Carnivore
## 12969         5.17868888        2.153233085 Secondary Carnivore
## 12970         1.55180880        0.009889753  Tertiary Carnivore
## 12971         1.38629436        0.063185562 Secondary Carnivore
## 12972         4.54648119        3.146907198 Secondary Carnivore
## 12973         2.37024374        0.490146528 Secondary Carnivore
## 12974         0.30748470        4.259772081           Herbivore
## 12975         2.01089500        0.214753881 Secondary Carnivore
## 12976         3.39450839        1.479154529   Primary Carnivore
## 12977         2.68784749        0.757060688   Primary Carnivore
## 12978         2.35801980        3.515099295 Secondary Carnivore
## 12979         3.76584050        0.009889753  Tertiary Carnivore
## 12980         0.81536481        1.251683108 Secondary Carnivore
## 12981         0.00000000        1.886232978           Herbivore
## 12982         1.28923265        0.004578480 Secondary Carnivore
## 12983         2.00512201        2.853935439   Primary Carnivore
## 12984         4.74449725        3.146907198 Secondary Carnivore
## 12985         4.03777421        6.670778349   Primary Carnivore
## 12986         4.71635371        1.168798094 Secondary Carnivore
## 12987         0.36394843        0.413477448  Tertiary Carnivore
## 12988         0.00000000        0.009889753           Herbivore
## 12989         4.94875989        7.288251436 Secondary Carnivore
## 12990         3.99636415        6.670778349 Secondary Carnivore
## 12991         1.15688120        0.004578480   Primary Carnivore
## 12992         3.51452607        1.168798094 Secondary Carnivore
## 12993         8.20305762        7.288251436 Secondary Carnivore
## 12994         0.81668960        1.705681497 Secondary Carnivore
## 12995         2.55567572        0.015041422   Primary Carnivore
## 12996         1.34547237        1.962719022 Secondary Carnivore
## 12997         2.37954613        0.004578480 Secondary Carnivore
## 12998         4.85203026        6.849625561  Tertiary Carnivore
## 12999         0.95165788        1.877421323 Secondary Carnivore
## 13000         4.74701691        0.002059853 Secondary Carnivore
## 13001         0.98954119        0.116104790 Secondary Carnivore
## 13002         7.58054668        6.670778349 Secondary Carnivore
## 13003         3.03013370        2.153233085 Secondary Carnivore
## 13004         6.27476202        7.288251436   Primary Carnivore
## 13005         4.55807858        6.670778349 Secondary Carnivore
## 13006         1.06594239        2.145288428 Secondary Carnivore
## 13007         2.39059597        1.886232978   Primary Carnivore
## 13008         5.50443683        6.942696930 Secondary Carnivore
## 13009         2.01623547        1.886232978   Primary Carnivore
## 13010         1.40609699        2.136925014 Secondary Carnivore
## 13011         0.00000000        2.404044412           Herbivore
## 13012         4.99043259        6.670778349 Secondary Carnivore
## 13013         3.44998755        1.886232978 Secondary Carnivore
## 13014         1.74221902        1.831515834 Secondary Carnivore
## 13015         0.83290912        1.315195554   Primary Carnivore
## 13016         2.67414865        1.168798094 Secondary Carnivore
## 13017         3.39785848        2.153233085 Secondary Carnivore
## 13018         3.76537743        1.886232978   Primary Carnivore
## 13019         0.53062825        2.472143654   Primary Carnivore
## 13020         3.68145194        1.014024833 Secondary Carnivore
## 13021         7.71020519        7.288251436 Secondary Carnivore
## 13022         2.18941639        1.532760019   Primary Carnivore
## 13023         1.82454929        3.226603994  Tertiary Carnivore
## 13024         1.79342475        4.047182371  Tertiary Carnivore
## 13025         6.29876541        6.849625561 Secondary Carnivore
## 13026         2.60172626        0.470853119  Tertiary Carnivore
## 13027         0.40879290        2.891851822 Secondary Carnivore
## 13028         0.00000000        0.009889753  Tertiary Carnivore
## 13029         2.70951579        1.540263127 Secondary Carnivore
## 13030         1.67147330        0.015041422   Primary Carnivore
## 13031         5.30330491        4.259772081 Secondary Carnivore
## 13032         3.64021428        1.070822001   Primary Carnivore
## 13033         1.89069942        2.075946520 Secondary Carnivore
## 13034         4.24849524        6.849625561 Secondary Carnivore
## 13035         3.97168717        4.232513096 Secondary Carnivore
## 13036         0.99694863        1.540263127   Primary Carnivore
## 13037         4.44851638        6.670778349 Secondary Carnivore
## 13038         0.00000000        0.015041422   Primary Carnivore
## 13039         2.62466859        0.004578480 Secondary Carnivore
## 13040         6.68511160        6.849625561 Secondary Carnivore
## 13041         5.30230939        6.670778349  Tertiary Carnivore
## 13042         4.50733683        2.387053327 Secondary Carnivore
## 13043         3.12236492        2.891851822 Secondary Carnivore
## 13044         6.72623340        6.942696930  Tertiary Carnivore
## 13045         1.04027671        0.116104790 Secondary Carnivore
## 13046         2.71469474        1.886232978 Secondary Carnivore
## 13047         1.30291275        0.490146528 Secondary Carnivore
## 13048         3.81771233        0.735932630 Secondary Carnivore
## 13049         2.84490938        4.259772081 Secondary Carnivore
## 13050         1.67147330        0.004578480   Primary Carnivore
## 13051         1.32441896        2.122440181 Secondary Carnivore
## 13052         1.66770682        0.490146528  Tertiary Carnivore
## 13053         1.69561561        0.009889753 Secondary Carnivore
## 13054         7.38634693        7.288251436 Secondary Carnivore
## 13055         1.45861502        0.223982763 Secondary Carnivore
## 13056         3.55820113        2.404044412 Secondary Carnivore
## 13057         3.95871573        3.473231162 Secondary Carnivore
## 13058         1.22377543        0.878396534   Primary Carnivore
## 13059         3.91800508        3.146907198  Tertiary Carnivore
## 13060         2.80336038        1.168798094 Secondary Carnivore
## 13061         1.79175947        0.878396534   Primary Carnivore
## 13062         1.75785792        0.223982763 Secondary Carnivore
## 13063         3.45568557        0.749689812   Primary Carnivore
## 13064         3.68250921        3.873611973 Secondary Carnivore
## 13065         1.42310833        1.454402431 Secondary Carnivore
## 13066         5.73979291        2.153233085   Primary Carnivore
## 13067         3.08190997        0.002059853 Secondary Carnivore
## 13068         3.23474917        1.886232978 Secondary Carnivore
## 13069         5.08140436        6.670778349   Primary Carnivore
## 13070         1.04027671        0.116104790 Secondary Carnivore
## 13071         3.91202301        0.004578480  Tertiary Carnivore
## 13072         3.92197334        6.670778349   Primary Carnivore
## 13073         2.33505228        1.886232978 Secondary Carnivore
## 13074         7.83391713        6.670778349 Secondary Carnivore
## 13075         4.52601875        2.138914945  Tertiary Carnivore
## 13076         4.56076888        1.432814265 Secondary Carnivore
## 13077         3.57632647        0.470853119 Secondary Carnivore
## 13078         2.94968834        1.307030142 Secondary Carnivore
## 13079         7.17142638        6.670778349 Secondary Carnivore
## 13080         2.37954613        0.490146528  Tertiary Carnivore
## 13081         1.80500470        1.886232978 Secondary Carnivore
## 13082         2.12584791        3.515099295 Secondary Carnivore
## 13083         4.80541352        4.094232049 Secondary Carnivore
## 13084         1.68639895        0.130455954 Secondary Carnivore
## 13085         6.91214563        6.670778349 Secondary Carnivore
## 13086         5.57473625        3.473231162   Primary Carnivore
## 13087         7.21604848        6.849625561 Secondary Carnivore
## 13088         2.43562887        2.853935439 Secondary Carnivore
## 13089         2.07693841        0.735932630 Secondary Carnivore
## 13090         1.28093385        0.130455954  Tertiary Carnivore
## 13091         1.41342303        0.413477448 Secondary Carnivore
## 13092         4.26310232        2.433189939  Tertiary Carnivore
## 13093         7.68959991        6.849625561 Secondary Carnivore
## 13094         4.26267988        7.288251436   Primary Carnivore
## 13095         3.49650756        1.168798094 Secondary Carnivore
## 13096         4.00551335        3.146907198 Secondary Carnivore
## 13097         4.20916024        1.886232978   Primary Carnivore
## 13098         7.83241093        6.942696930 Secondary Carnivore
## 13099         4.53646299        3.146907198 Secondary Carnivore
## 13100         8.53210151        6.849625561 Secondary Carnivore
## 13101         1.33500107        0.015041422 Secondary Carnivore
## 13102         2.82731362        0.002344505 Secondary Carnivore
## 13103         4.70048037        6.670778349 Secondary Carnivore
## 13104         4.35388433        1.168798094 Secondary Carnivore
## 13105         4.61541750        3.473231162  Tertiary Carnivore
## 13106         1.42069579        0.214753881 Secondary Carnivore
## 13107         1.06471074        0.305596011  Tertiary Carnivore
## 13108         5.16478597        7.288251436 Secondary Carnivore
## 13109         0.00000000        0.004578480 Secondary Carnivore
## 13110         1.09192330        1.180964506 Secondary Carnivore
## 13111         0.47000363        0.147199990 Secondary Carnivore
## 13112         0.00000000        0.004578480   Primary Carnivore
## 13113         5.39816270        7.288251436  Tertiary Carnivore
## 13114         1.19392247        1.670180746   Primary Carnivore
## 13115         5.50938834        4.094232049  Tertiary Carnivore
## 13116         1.77495235        0.490146528  Tertiary Carnivore
## 13117         3.23474917        1.670180746   Primary Carnivore
## 13118         3.06339092        0.735932630 Secondary Carnivore
## 13119         3.71843826        2.387053327 Secondary Carnivore
## 13120         1.67147330        0.856029167  Tertiary Carnivore
## 13121         4.98360662        6.849625561   Primary Carnivore
## 13122         0.00000000        0.147199990 Secondary Carnivore
## 13123         1.79175947        0.223982763 Secondary Carnivore
## 13124         1.49290410        0.823328714 Secondary Carnivore
## 13125         2.94443898        0.757060688 Secondary Carnivore
## 13126         2.60268969        0.009889753   Primary Carnivore
## 13127         1.69708242        2.122440181 Secondary Carnivore
## 13128         3.43398720        0.002344505 Secondary Carnivore
## 13129         4.80745776        1.168798094   Primary Carnivore
## 13130         1.60140574        0.281204828 Secondary Carnivore
## 13131         4.56954301        6.849625561 Secondary Carnivore
## 13132         1.85629799        0.002059853 Secondary Carnivore
## 13133         2.52652832        0.015041422   Primary Carnivore
## 13134         2.16332303        0.223982763 Secondary Carnivore
## 13135         1.66770682        2.894695819 Secondary Carnivore
## 13136         4.47960696        6.849625561 Secondary Carnivore
## 13137         0.00000000        0.015041422   Primary Carnivore
## 13138         4.85203026        6.942696930 Secondary Carnivore
## 13139         5.02388052        4.094232049   Primary Carnivore
## 13140         1.85848310        0.900183757   Primary Carnivore
## 13141         6.44730586        7.288251436 Secondary Carnivore
## 13142         0.00000000        1.315195554   Primary Carnivore
## 13143         4.79579055        7.288251436   Primary Carnivore
## 13144         2.86789890        2.387053327 Secondary Carnivore
## 13145         3.15700042        2.387053327 Secondary Carnivore
## 13146         1.09192330        0.211247175 Secondary Carnivore
## 13147         1.82454929        0.063185562 Secondary Carnivore
## 13148         1.02961942        2.894695819   Primary Carnivore
## 13149         4.59208495        2.387053327 Secondary Carnivore
## 13150         3.91657264        4.232513096   Primary Carnivore
## 13151         1.76644166        4.047182371 Secondary Carnivore
## 13152         2.74071098        3.873611973 Secondary Carnivore
## 13153         0.99325177        0.878396534   Primary Carnivore
## 13154         3.26956894        2.894695819   Primary Carnivore
## 13155         3.01944880        2.853935439 Secondary Carnivore
## 13156         7.72832775        6.670778349 Secondary Carnivore
## 13157         1.12167756        0.015041422   Primary Carnivore
## 13158         1.08180517        0.211247175 Secondary Carnivore
## 13159         0.83290912        0.470853119  Tertiary Carnivore
## 13160         4.12713439        0.004578480  Tertiary Carnivore
## 13161         0.00000000        1.126655451   Primary Carnivore
## 13162         3.58629287        6.670778349   Primary Carnivore
## 13163         0.01064316        0.305596011  Tertiary Carnivore
## 13164         1.38629436        0.020024930  Tertiary Carnivore
## 13165         1.24126859        0.561550440 Secondary Carnivore
## 13166         5.48188814        6.670778349 Secondary Carnivore
## 13167         7.34018684        6.942696930  Tertiary Carnivore
## 13168         1.32972401        0.015041422  Tertiary Carnivore
## 13169         6.06092531        2.610718759 Secondary Carnivore
## 13170         7.88615659        6.670778349 Secondary Carnivore
## 13171         4.25844557        0.002059853 Secondary Carnivore
## 13172         8.12346889        7.288251436 Secondary Carnivore
## 13173         1.14740245        0.015041422 Secondary Carnivore
## 13174         6.83936937        6.849625561 Secondary Carnivore
## 13175         6.41345896        4.094232049 Secondary Carnivore
## 13176         3.92395158        2.277308093   Primary Carnivore
## 13177         3.54673969        6.670778349 Secondary Carnivore
## 13178         3.56953270        2.387053327 Secondary Carnivore
## 13179         0.00000000        0.130455954 Secondary Carnivore
## 13180         4.41642806        6.670778349 Secondary Carnivore
## 13181         3.21112587        3.651616415 Secondary Carnivore
## 13182         3.01553490        0.015041422  Tertiary Carnivore
## 13183         4.29959566        2.153233085   Primary Carnivore
## 13184         4.83628191        6.849625561 Secondary Carnivore
## 13185         4.24769492        3.873611973 Secondary Carnivore
## 13186         3.91921707        1.506685742 Secondary Carnivore
## 13187         0.26236426        2.024989105   Primary Carnivore
## 13188         1.40609699        0.305596011  Tertiary Carnivore
## 13189         0.00000000        1.459857720   Primary Carnivore
## 13190         5.14166356        7.288251436  Tertiary Carnivore
## 13191         3.28057281        2.433189939 Secondary Carnivore
## 13192         4.45781801        7.288251436   Primary Carnivore
## 13193         4.27527626        6.670778349   Primary Carnivore
## 13194         7.52736356        7.288251436 Secondary Carnivore
## 13195         4.23555473        4.094232049 Secondary Carnivore
## 13196         0.02078254        1.180964506 Secondary Carnivore
## 13197         0.85441533        2.153233085           Herbivore
## 13198         0.00000000        0.130455954 Secondary Carnivore
## 13199         1.99877364        0.015041422  Tertiary Carnivore
## 13200         0.00000000        3.146907198   Primary Carnivore
## 13201         7.95384545        6.849625561 Secondary Carnivore
## 13202         2.64617480        0.305596011  Tertiary Carnivore
## 13203         3.12236492        3.038160131 Secondary Carnivore
## 13204         0.00000000        0.340191127   Primary Carnivore
## 13205         4.41558229        3.943759073 Secondary Carnivore
## 13206         3.70179568        0.735932630   Primary Carnivore
## 13207         4.56017282        3.146907198 Secondary Carnivore
## 13208         2.13416644        1.742111989 Secondary Carnivore
## 13209         6.77445243        6.670778349 Secondary Carnivore
## 13210         2.54160199        2.050338578   Primary Carnivore
## 13211         2.08815348        0.009889753           Herbivore
## 13212         2.89668512        2.136925014 Secondary Carnivore
## 13213         2.10413415        1.886232978 Secondary Carnivore
## 13214         4.71573613        3.304296954 Secondary Carnivore
## 13215         7.34665516        7.288251436 Secondary Carnivore
## 13216         5.22810947        1.168798094   Primary Carnivore
## 13217         2.21920348        0.223982763 Secondary Carnivore
## 13218         2.79116511        1.886232978   Primary Carnivore
## 13219         2.56240767        2.075946520   Primary Carnivore
## 13220         2.84490938        3.473231162  Tertiary Carnivore
## 13221         1.52388002        1.532760019 Secondary Carnivore
## 13222         3.63663834        3.651616415   Primary Carnivore
## 13223         2.36368019        0.015041422   Primary Carnivore
## 13224         3.92789635        6.849625561   Primary Carnivore
## 13225         2.91695959        2.433189939 Secondary Carnivore
## 13226         6.52590904        6.670778349 Secondary Carnivore
## 13227         2.45958884        0.015041422   Primary Carnivore
## 13228         2.59525471        3.473231162 Secondary Carnivore
## 13229         7.61386804        6.670778349 Secondary Carnivore
## 13230         2.27212589        1.532760019   Primary Carnivore
## 13231         3.68637632        2.153233085 Secondary Carnivore
## 13232         0.00000000        0.211247175 Secondary Carnivore
## 13233         3.33932198        2.404044412 Secondary Carnivore
## 13234         1.90389697        0.211247175 Secondary Carnivore
## 13235         3.25424297        3.515099295 Secondary Carnivore
## 13236         2.98568194        4.121930401   Primary Carnivore
## 13237         2.82137889        2.153233085 Secondary Carnivore
## 13238         3.15700042        1.168798094 Secondary Carnivore
## 13239         5.61312811        6.849625561   Primary Carnivore
## 13240         3.23080440        2.241290896   Primary Carnivore
## 13241         2.05412373        0.856029167 Secondary Carnivore
## 13242         2.47653840        0.885298676  Tertiary Carnivore
## 13243         3.24259235        0.749689812   Primary Carnivore
## 13244         3.23867845        3.146907198 Secondary Carnivore
## 13245         2.27829240        2.387053327  Tertiary Carnivore
## 13246         5.44570235        1.168798094   Primary Carnivore
## 13247         5.77455155        6.942696930  Tertiary Carnivore
## 13248         4.57367952        4.094232049 Secondary Carnivore
## 13249         6.28897318        6.670778349 Secondary Carnivore
## 13250         4.86375810        1.673740129   Primary Carnivore
## 13251         2.81367068        2.891851822  Tertiary Carnivore
## 13252         0.00000000        0.002344505 Secondary Carnivore
## 13253         1.20297230        0.015041422   Primary Carnivore
## 13254         2.83749827        2.853935439 Secondary Carnivore
## 13255         7.05142263        6.670778349 Secondary Carnivore
## 13256         3.25037449        0.020024930   Primary Carnivore
## 13257         1.00063188        1.711701702 Secondary Carnivore
## 13258         7.78130551        6.670778349 Secondary Carnivore
## 13259         7.82043952        7.288251436 Secondary Carnivore
## 13260         8.06495089        4.094232049 Secondary Carnivore
## 13261         0.79750720        0.413477448 Secondary Carnivore
## 13262         0.00000000        1.673740129           Herbivore
## 13263         4.51085951        7.288251436 Secondary Carnivore
## 13264         2.25023861        0.214753881 Secondary Carnivore
## 13265         2.82137889        0.009889753   Primary Carnivore
## 13266         8.50329709        7.288251436 Secondary Carnivore
## 13267         4.58598737        4.094232049 Secondary Carnivore
## 13268         3.79098468        1.168798094 Secondary Carnivore
## 13269         0.00000000        0.015041422   Primary Carnivore
## 13270         2.54944517        0.015041422  Tertiary Carnivore
## 13271         5.52146092        6.942696930 Secondary Carnivore
## 13272         2.94443898        2.894695819   Primary Carnivore
## 13273         1.62136648        1.180964506  Tertiary Carnivore
## 13274         3.72810017        1.673740129 Secondary Carnivore
## 13275         3.66612247        6.849625561 Secondary Carnivore
## 13276         0.83290912        0.147199990  Tertiary Carnivore
## 13277         1.66203036        0.009889753  Tertiary Carnivore
## 13278         4.30000280        6.849625561 Secondary Carnivore
## 13279         1.69009582        0.015041422 Secondary Carnivore
## 13280         3.88362353        6.849625561   Primary Carnivore
## 13281         2.54944517        0.044241443   Primary Carnivore
## 13282         0.63180355        4.047182371   Primary Carnivore
## 13283         3.87120101        1.673740129 Secondary Carnivore
## 13284         3.59731226        2.153233085 Secondary Carnivore
## 13285         4.66343909        6.849625561 Secondary Carnivore
## 13286         5.57215403        4.259772081   Primary Carnivore
## 13287         1.27256560        0.823328714 Secondary Carnivore
## 13288         0.82855182        1.877421323 Secondary Carnivore
## 13289         6.11146734        7.288251436   Primary Carnivore
## 13290         0.00000000        0.116104790 Secondary Carnivore
## 13291         4.98360662        4.094232049   Primary Carnivore
## 13292         4.46579317        3.473231162   Primary Carnivore
## 13293         5.35185813        7.288251436  Tertiary Carnivore
## 13294         1.99741771        0.490146528  Tertiary Carnivore
## 13295         3.81683282        2.153233085 Secondary Carnivore
## 13296         0.30748470        0.211247175  Tertiary Carnivore
## 13297         6.27795841        6.670778349 Secondary Carnivore
## 13298         1.22671229        0.305596011  Tertiary Carnivore
## 13299         0.69314718        0.470853119  Tertiary Carnivore
## 13300         2.91158951        1.962719022 Secondary Carnivore
## 13301         3.93573953        1.168798094 Secondary Carnivore
## 13302         2.77819796        0.015041422   Primary Carnivore
## 13303         4.29728541        4.094232049 Secondary Carnivore
## 13304         0.00000000        0.009889753  Tertiary Carnivore
## 13305         7.22875123        6.670778349 Secondary Carnivore
## 13306         5.55902642        1.168798094   Primary Carnivore
## 13307         7.02028007        6.670778349 Secondary Carnivore
## 13308         2.37861978        2.387053327 Secondary Carnivore
## 13309         4.48863637        6.670778349 Secondary Carnivore
## 13310         0.78845736        0.130455954 Secondary Carnivore
## 13311         0.40546511        2.894695819   Primary Carnivore
## 13312         7.34665516        7.288251436 Secondary Carnivore
## 13313         0.00000000        1.459857720   Primary Carnivore
## 13314         0.00000000        0.002344505 Secondary Carnivore
## 13315         4.92308559        7.288251436 Secondary Carnivore
## 13316         3.36729583        1.168798094 Secondary Carnivore
## 13317         1.78170913        0.856029167   Primary Carnivore
## 13318         6.08904488        7.288251436 Secondary Carnivore
## 13319         2.16676537        0.015041422  Tertiary Carnivore
## 13320         3.75560309        6.942696930 Secondary Carnivore
## 13321         0.83290912        4.262479896 Secondary Carnivore
## 13322         1.05779029        2.122440181 Secondary Carnivore
## 13323         4.51085951        7.288251436 Secondary Carnivore
## 13324         1.93152141        0.490146528 Secondary Carnivore
## 13325         2.03339760        1.742111989 Secondary Carnivore
## 13326         3.68135119        2.387053327 Secondary Carnivore
## 13327         2.56510319        2.254856321   Primary Carnivore
## 13328         5.64897424        4.259772081 Secondary Carnivore
## 13329         3.51868408        1.886232978 Secondary Carnivore
## 13330         2.54944517        0.281204828 Secondary Carnivore
## 13331         5.89715387        6.942696930  Tertiary Carnivore
## 13332         2.61739583        1.742111989 Secondary Carnivore
## 13333         2.24191003        6.670778349 Secondary Carnivore
## 13334         7.47363711        7.288251436 Secondary Carnivore
## 13335         1.96571278        0.856029167 Secondary Carnivore
## 13336         0.40546511        0.063185562 Secondary Carnivore
## 13337         6.19031541        6.942696930  Tertiary Carnivore
## 13338         2.28033948        1.532760019   Primary Carnivore
## 13339         2.13947776        4.047182371 Secondary Carnivore
## 13340         3.49650756        3.146907198 Secondary Carnivore
## 13341         0.53062825        0.130455954  Tertiary Carnivore
## 13342         3.95316495        6.670778349 Secondary Carnivore
## 13343         3.73050113        6.670778349 Secondary Carnivore
## 13344         3.05870707        3.038160131 Secondary Carnivore
## 13345         8.44080878        6.849625561 Secondary Carnivore
## 13346         2.32630162        2.845177164 Secondary Carnivore
## 13347         1.48160454        0.130455954 Secondary Carnivore
## 13348         3.57234564        3.168005566 Secondary Carnivore
## 13349         6.59441346        7.288251436  Tertiary Carnivore
## 13350         4.60616969        4.259772081  Tertiary Carnivore
## 13351         1.54756251        0.015041422 Secondary Carnivore
## 13352         4.22537282        1.168798094 Secondary Carnivore
## 13353         0.00000000        0.470853119  Tertiary Carnivore
## 13354         2.98061864        2.387053327 Secondary Carnivore
## 13355         3.76352300        1.168798094 Secondary Carnivore
## 13356         3.19179236        1.540263127 Secondary Carnivore
## 13357         4.01096295        6.670778349 Secondary Carnivore
## 13358         5.11198779        4.094232049  Tertiary Carnivore
## 13359         1.16315081        1.126655451   Primary Carnivore
## 13360         1.19392247        0.211247175 Secondary Carnivore
## 13361         7.39079852        7.288251436 Secondary Carnivore
## 13362         4.66861436        2.153233085 Secondary Carnivore
## 13363         1.54756251        0.009889753  Tertiary Carnivore
## 13364         6.06610809        7.288251436  Tertiary Carnivore
## 13365         4.04480412        6.942696930  Tertiary Carnivore
## 13366         4.98561830        3.304296954   Primary Carnivore
## 13367         6.77502357        6.849625561 Secondary Carnivore
## 13368         4.62497281        3.168005566 Secondary Carnivore
## 13369         2.58021683        1.532760019   Primary Carnivore
## 13370         4.98360662        4.094232049   Primary Carnivore
## 13371         2.63905733        2.153233085 Secondary Carnivore
## 13372         5.22035583        3.146907198 Secondary Carnivore
## 13373         7.13297667        6.670778349 Secondary Carnivore
## 13374         2.58776404        0.757060688 Secondary Carnivore
## 13375         2.11709853        3.515099295 Secondary Carnivore
## 13376         2.36837283        0.735932630 Secondary Carnivore
## 13377         4.18813844        6.849625561  Tertiary Carnivore
## 13378         0.00000000        0.004578480 Secondary Carnivore
## 13379         3.41444261        1.742111989 Secondary Carnivore
## 13380         5.13603370        1.673740129 Secondary Carnivore
## 13381         1.80664808        0.116104790 Secondary Carnivore
## 13382         3.39114705        1.670180746 Secondary Carnivore
## 13383         1.30019166        2.845177164 Secondary Carnivore
## 13384         3.13113691        4.259772081 Secondary Carnivore
## 13385         2.64326276        0.490146528 Secondary Carnivore
## 13386         0.00000000        0.015041422 Secondary Carnivore
## 13387         4.08260931        6.670778349 Secondary Carnivore
## 13388         5.02388052        6.942696930 Secondary Carnivore
## 13389         1.04027671        0.885298676 Secondary Carnivore
## 13390         3.94931879        7.161415474 Secondary Carnivore
## 13391         0.00000000        0.002059853 Secondary Carnivore
## 13392         2.14943391        0.735932630 Secondary Carnivore
## 13393         7.29369772        7.288251436 Secondary Carnivore
## 13394         1.53686722        0.015041422  Tertiary Carnivore
## 13395         0.00000000        0.147199990 Secondary Carnivore
## 13396         2.11142459        0.900183757 Secondary Carnivore
## 13397         1.82454929        0.490146528  Tertiary Carnivore
## 13398         0.83290912        1.831515834 Secondary Carnivore
## 13399         4.75780543        4.094232049 Secondary Carnivore
## 13400         2.74084002        1.886232978 Secondary Carnivore
## 13401         6.03954017        1.886232978 Secondary Carnivore
## 13402         0.17395331        1.532760019  Tertiary Carnivore
## 13403         3.28091122        3.146907198 Secondary Carnivore
## 13404         5.35185813        7.288251436  Tertiary Carnivore
## 13405         0.00000000        2.404044412           Herbivore
## 13406         1.19392247        0.147199990 Secondary Carnivore
## 13407         4.44968528        1.168798094  Tertiary Carnivore
## 13408         4.82807371        1.673740129   Primary Carnivore
## 13409         0.00000000        1.877421323 Secondary Carnivore
## 13410         7.68303529        6.849625561 Secondary Carnivore
## 13411         1.85207032        0.211247175 Secondary Carnivore
## 13412         0.19885086        0.305596011 Secondary Carnivore
## 13413         1.65822808        0.885298676  Tertiary Carnivore
## 13414         1.84292776        1.962719022 Secondary Carnivore
## 13415         2.58021683        2.136925014 Secondary Carnivore
## 13416         5.77299754        1.886232978   Primary Carnivore
## 13417         4.45771372        1.886232978   Primary Carnivore
## 13418         2.77102500        1.962719022  Tertiary Carnivore
## 13419         3.94352167        3.146907198  Tertiary Carnivore
## 13420         2.95491028        2.472143654   Primary Carnivore
## 13421         7.98214318        6.849625561 Secondary Carnivore
## 13422         4.79892612        2.387053327   Primary Carnivore
## 13423         0.92821930        6.942696930           Herbivore
## 13424         7.83494639        6.670778349 Secondary Carnivore
## 13425         7.03341830        6.670778349 Secondary Carnivore
## 13426         1.32175584        2.254856321 Secondary Carnivore
## 13427         6.78649119        6.670778349  Tertiary Carnivore
## 13428         0.00000000        1.670180746   Primary Carnivore
## 13429         0.00000000        2.404044412           Herbivore
## 13430         5.90511659        1.886232978   Primary Carnivore
## 13431         4.61485315        1.432814265 Secondary Carnivore
## 13432         4.22753423        1.506685742   Primary Carnivore
## 13433         7.39184671        7.288251436 Secondary Carnivore
## 13434         1.28923265        0.856029167 Secondary Carnivore
## 13435         1.51292701        0.015041422 Secondary Carnivore
## 13436         0.97455964        0.305596011  Tertiary Carnivore
## 13437         7.97968130        7.288251436 Secondary Carnivore
## 13438         1.18784342        0.561550440 Secondary Carnivore
## 13439         4.06355884        2.138914945 Secondary Carnivore
## 13440         3.19043520        2.610718759 Secondary Carnivore
## 13441         1.76985463        0.015041422  Tertiary Carnivore
## 13442         5.38587026        0.004578480  Tertiary Carnivore
## 13443         1.32441896        4.047182371 Secondary Carnivore
## 13444         0.83290912        5.169038067   Primary Carnivore
## 13445         2.56617937        1.962719022 Secondary Carnivore
## 13446         2.17815501        2.845177164 Secondary Carnivore
## 13447         4.96284463        6.670778349  Tertiary Carnivore
## 13448         2.16217294        0.009889753   Primary Carnivore
## 13449         0.90421815        0.305596011  Tertiary Carnivore
## 13450         0.00000000        1.886232978           Herbivore
## 13451         1.34547237        0.856029167 Secondary Carnivore
## 13452         0.00000000        0.004578480  Tertiary Carnivore
## 13453         3.57660621        1.432814265  Tertiary Carnivore
## 13454         0.43048287        0.856029167  Tertiary Carnivore
## 13455         7.98132323        6.670778349 Secondary Carnivore
## 13456         3.66867675        0.749689812   Primary Carnivore
## 13457         1.19392247        1.532760019  Tertiary Carnivore
## 13458         4.18801704        3.651616415   Primary Carnivore
## 13459         1.44926916        1.251683108 Secondary Carnivore
## 13460         4.50534985        4.094232049  Tertiary Carnivore
## 13461         2.44633906        0.470853119 Secondary Carnivore
## 13462         4.34510328        6.670778349 Secondary Carnivore
## 13463         4.84418709        3.146907198 Secondary Carnivore
## 13464         1.49962305        0.561550440 Secondary Carnivore
## 13465         6.67997600        6.670778349 Secondary Carnivore
## 13466         2.11384297        0.009889753 Secondary Carnivore
## 13467         3.50453585        3.873611973  Tertiary Carnivore
## 13468         8.49631679        6.849625561 Secondary Carnivore
## 13469         5.86646806        2.153233085  Tertiary Carnivore
## 13470         0.37156356        0.130455954 Secondary Carnivore
## 13471         0.00000000        1.981883583   Primary Carnivore
## 13472         4.31348009        4.259772081 Secondary Carnivore
## 13473         2.82137889        1.168798094 Secondary Carnivore
## 13474         2.65324196        0.002344505 Secondary Carnivore
## 13475         3.85014760        6.849625561 Secondary Carnivore
## 13476         3.86157146        0.015041422 Secondary Carnivore
## 13477         3.26575941        2.387053327 Secondary Carnivore
## 13478         4.62497281        4.259772081 Secondary Carnivore
## 13479         2.94443898        0.004578480  Tertiary Carnivore
## 13480         4.39444915        7.288251436 Secondary Carnivore
## 13481         0.99325177        0.130455954  Tertiary Carnivore
## 13482         4.00369019        1.307030142 Secondary Carnivore
## 13483         0.53999600        0.413477448  Tertiary Carnivore
## 13484         0.26236426        1.920179330   Primary Carnivore
## 13485         3.30310667        1.506685742 Secondary Carnivore
## 13486         0.00000000        0.130455954 Secondary Carnivore
## 13487         4.21331208        1.886232978 Secondary Carnivore
## 13488         5.75574221        1.168798094 Secondary Carnivore
## 13489         1.56024767        0.009889753   Primary Carnivore
## 13490         2.02683159        0.885298676  Tertiary Carnivore
## 13491         4.75531284        3.943759073 Secondary Carnivore
## 13492         4.99767163        4.232513096 Secondary Carnivore
## 13493         2.22354189        0.015041422 Secondary Carnivore
## 13494         3.26575941        5.169038067   Primary Carnivore
## 13495         1.71918878        0.856029167   Primary Carnivore
## 13496         1.13462273        2.136925014 Secondary Carnivore
## 13497         0.58778666        0.147199990 Secondary Carnivore
## 13498         1.84150156        1.711701702  Tertiary Carnivore
## 13499         2.97041447        2.387053327 Secondary Carnivore
## 13500         0.00000000        0.002344505 Secondary Carnivore
## 13501         0.00000000        2.404044412           Herbivore
## 13502         2.77258872        0.116104790 Secondary Carnivore
## 13503         1.85629799        0.490146528  Tertiary Carnivore
## 13504         4.59410924        3.168005566 Secondary Carnivore
## 13505         5.56452041        7.288251436  Tertiary Carnivore
## 13506         8.05360097        6.670778349 Secondary Carnivore
## 13507         3.24649099        1.307030142 Secondary Carnivore
## 13508         1.70292826        0.015041422 Secondary Carnivore
## 13509         3.88752537        0.749689812   Primary Carnivore
## 13510         0.00000000        0.015041422  Tertiary Carnivore
## 13511         5.18178355        6.849625561 Secondary Carnivore
## 13512         2.40865536        1.540263127 Secondary Carnivore
## 13513         2.90690106        3.515099295 Secondary Carnivore
## 13514         2.61739583        0.757060688  Tertiary Carnivore
## 13515         2.52572864        0.735932630 Secondary Carnivore
## 13516         3.36037539        2.891851822  Tertiary Carnivore
## 13517         3.35340672        5.169038067   Primary Carnivore
## 13518         0.00000000        1.886232978           Herbivore
## 13519         1.98787435        2.241290896   Primary Carnivore
## 13520         2.68852753        3.226603994 Secondary Carnivore
## 13521         2.58776404        2.136925014 Secondary Carnivore
## 13522         1.35325451        2.404044412 Secondary Carnivore
## 13523         4.70953020        7.288251436 Secondary Carnivore
## 13524         7.35212054        6.849625561 Secondary Carnivore
## 13525         2.56494936        1.315195554 Secondary Carnivore
## 13526         5.81889528        6.849625561 Secondary Carnivore
## 13527         1.79275897        0.116104790 Secondary Carnivore
## 13528         1.62924054        0.147199990 Secondary Carnivore
## 13529         7.75022723        6.670778349 Secondary Carnivore
## 13530         3.79773386        4.094232049 Secondary Carnivore
## 13531         0.95551145        0.490146528  Tertiary Carnivore
## 13532         1.53255687        2.075946520 Secondary Carnivore
## 13533         5.14813381        1.886232978   Primary Carnivore
## 13534         0.00000000        1.886232978           Herbivore
## 13535         0.33647224        2.894695819   Primary Carnivore
## 13536         3.28578653        0.015041422 Secondary Carnivore
## 13537         2.29253476        1.315195554   Primary Carnivore
## 13538         7.29715875        6.849625561 Secondary Carnivore
## 13539         0.26236426        2.024989105   Primary Carnivore
## 13540         0.68813464        1.251683108 Secondary Carnivore
## 13541         1.02961942        0.470853119  Tertiary Carnivore
## 13542         1.26976054        1.180964506 Secondary Carnivore
## 13543         4.04305127        6.670778349  Tertiary Carnivore
## 13544         3.96840334        2.050338578   Primary Carnivore
## 13545         5.72227706        6.849625561 Secondary Carnivore
## 13546         4.79579055        7.288251436 Secondary Carnivore
## 13547         7.40482675        6.670778349 Secondary Carnivore
## 13548         0.78845736        7.161415474   Primary Carnivore
## 13549         5.57215403        4.259772081   Primary Carnivore
## 13550         3.51452607        1.886232978 Secondary Carnivore
## 13551         1.87640694        0.885298676  Tertiary Carnivore
## 13552         2.63905733        0.002059853 Secondary Carnivore
## 13553         0.00000000        2.894695819   Primary Carnivore
## 13554         3.40452517        1.886232978 Secondary Carnivore
## 13555         0.00000000        0.002059853 Secondary Carnivore
## 13556         2.24918432        0.009889753   Primary Carnivore
## 13557         1.66392610        0.211247175 Secondary Carnivore
## 13558         0.06765865        0.305596011 Secondary Carnivore
## 13559         2.27212589        1.670180746 Secondary Carnivore
## 13560         2.77881927        0.885298676  Tertiary Carnivore
## 13561         6.58340922        4.259772081  Tertiary Carnivore
## 13562         0.00000000        1.670180746   Primary Carnivore
## 13563         1.45161383        1.532760019 Secondary Carnivore
## 13564         1.99333884        1.307030142 Secondary Carnivore
## 13565         0.00000000        0.002059853 Secondary Carnivore
## 13566         2.04122033        0.063185562 Secondary Carnivore
## 13567         2.23537634        0.015041422 Secondary Carnivore
## 13568         2.58021683        2.891851822 Secondary Carnivore
## 13569         4.25134831        1.168798094 Secondary Carnivore
## 13570         0.00000000        2.404044412           Herbivore
## 13571         1.47476301        0.900183757 Secondary Carnivore
## 13572         6.77490937        6.849625561 Secondary Carnivore
## 13573         3.42816383        0.015041422   Primary Carnivore
## 13574         1.61541998        0.009889753  Tertiary Carnivore
## 13575         6.90505163        6.849625561 Secondary Carnivore
## 13576         1.66770682        0.002344505 Secondary Carnivore
## 13577         3.03013370        3.146907198 Secondary Carnivore
## 13578         1.81156210        0.211247175 Secondary Carnivore
## 13579         1.01884732        0.223982763 Secondary Carnivore
## 13580         1.51072194        0.015041422  Tertiary Carnivore
## 13581         5.68357977        4.094232049  Tertiary Carnivore
## 13582         4.79579055        7.288251436 Secondary Carnivore
## 13583         1.19996478        0.015041422  Tertiary Carnivore
## 13584         7.45066080        7.288251436 Secondary Carnivore
## 13585         2.47863704        1.711701702   Primary Carnivore
## 13586         1.31640823        0.214753881 Secondary Carnivore
## 13587         6.08677473        4.094232049 Secondary Carnivore
## 13588         3.51443678        2.610718759 Secondary Carnivore
## 13589         2.92316158        3.473231162 Secondary Carnivore
## 13590         1.77495235        0.002344505 Secondary Carnivore
## 13591         0.00000000        1.877421323 Secondary Carnivore
## 13592         2.32727771        0.009889753           Herbivore
## 13593         1.43983513        0.305596011  Tertiary Carnivore
## 13594         5.21553341        0.735932630   Primary Carnivore
## 13595         4.19166787        2.433189939 Secondary Carnivore
## 13596         1.47796155        1.711701702  Tertiary Carnivore
## 13597         2.28238239        1.315195554 Secondary Carnivore
## 13598         2.55722731        1.315195554 Secondary Carnivore
## 13599         3.16665579        0.470853119 Secondary Carnivore
## 13600         0.00000000        0.002344505  Tertiary Carnivore
## 13601         2.79116511        0.009889753           Herbivore
## 13602         1.75958057        4.262479896 Secondary Carnivore
## 13603         1.29746315        0.413477448 Secondary Carnivore
## 13604         2.85647021        1.886232978 Secondary Carnivore
## 13605         2.85070650        0.063185562 Secondary Carnivore
## 13606         5.18505908        1.432814265 Secondary Carnivore
## 13607         1.20297230        1.831515834  Tertiary Carnivore
## 13608         3.26956894        1.886232978 Secondary Carnivore
## 13609         3.80443779        6.670778349   Primary Carnivore
## 13610         5.01727984        7.288251436  Tertiary Carnivore
## 13611         3.85227300        6.670778349 Secondary Carnivore
## 13612         3.27222700        0.735932630   Primary Carnivore
## 13613         1.08180517        0.116104790 Secondary Carnivore
## 13614         1.89611948        0.885298676 Secondary Carnivore
## 13615         1.66770682        0.490146528 Secondary Carnivore
## 13616         4.27495632        4.232513096  Tertiary Carnivore
## 13617         5.77827133        6.670778349  Tertiary Carnivore
## 13618         0.00000000        1.673740129           Herbivore
## 13619         1.48387469        0.885298676 Secondary Carnivore
## 13620         3.55820113        2.153233085           Herbivore
## 13621         0.78845736        2.145288428 Secondary Carnivore
## 13622         2.00417906        0.211247175 Secondary Carnivore
## 13623         8.42299240        6.849625561 Secondary Carnivore
## 13624         6.01859321        7.288251436  Tertiary Carnivore
## 13625         0.00000000        0.002059853 Secondary Carnivore
## 13626         1.95727391        0.004578480   Primary Carnivore
## 13627         1.62924054        0.223982763 Secondary Carnivore
## 13628         1.04027671        1.454402431 Secondary Carnivore
## 13629         5.44241771        2.153233085 Secondary Carnivore
## 13630         3.06339092        3.943759073 Secondary Carnivore
## 13631         2.53369681        1.981883583   Primary Carnivore
## 13632         4.09434456        7.288251436 Secondary Carnivore
## 13633         3.28776736        2.433189939  Tertiary Carnivore
## 13634         5.30330491        7.288251436 Secondary Carnivore
## 13635         0.00000000        0.009889753 Secondary Carnivore
## 13636         5.28826703        2.153233085  Tertiary Carnivore
## 13637         0.95551145        0.211247175 Secondary Carnivore
## 13638         1.67335124        0.735932630 Secondary Carnivore
## 13639         2.70136121        3.515099295 Secondary Carnivore
## 13640         1.18172720        2.387053327 Secondary Carnivore
## 13641         2.41126011        1.014024833 Secondary Carnivore
## 13642         2.32238772        0.223982763 Secondary Carnivore
## 13643         7.51261754        6.942696930 Secondary Carnivore
## 13644         0.00000000        0.009889753 Secondary Carnivore
## 13645         2.63905733        0.002059853 Secondary Carnivore
## 13646         0.91629073        0.063185562 Secondary Carnivore
## 13647         3.02456266        2.254856321 Secondary Carnivore
## 13648         1.41098697        0.147199990 Secondary Carnivore
## 13649         3.78940329        0.214753881  Tertiary Carnivore
## 13650         0.83290912        0.130455954 Secondary Carnivore
## 13651         7.62525355        6.849625561 Secondary Carnivore
## 13652         3.34990409        2.387053327   Primary Carnivore
## 13653         4.61512052        7.288251436  Tertiary Carnivore
## 13654         3.55010577        1.540263127 Secondary Carnivore
## 13655         1.24990174        2.241290896   Primary Carnivore
## 13656         7.22329568        7.288251436 Secondary Carnivore
## 13657         4.71849887        3.146907198 Secondary Carnivore
## 13658         3.92296295        2.138914945 Secondary Carnivore
## 13659         3.28091122        1.168798094   Primary Carnivore
## 13660         2.38139627        2.136925014 Secondary Carnivore
## 13661         1.34547237        0.885298676 Secondary Carnivore
## 13662         2.23697934        0.490146528   Primary Carnivore
## 13663         2.91463067        2.136925014 Secondary Carnivore
## 13664         4.30217141        0.002059853 Secondary Carnivore
## 13665         1.13140211        0.470853119  Tertiary Carnivore
## 13666         3.38113072        1.632888289 Secondary Carnivore
## 13667         1.53901545        2.853935439 Secondary Carnivore
## 13668         2.98061864        0.885298676  Tertiary Carnivore
## 13669         1.95868534        0.211247175 Secondary Carnivore
## 13670         1.68639895        7.161415474 Secondary Carnivore
## 13671         3.09557761        0.009889753   Primary Carnivore
## 13672         2.63991411        2.254856321   Primary Carnivore
## 13673         0.00000000        0.305596011 Secondary Carnivore
## 13674         3.36037539        1.168798094 Secondary Carnivore
## 13675         1.59533899        0.413477448 Secondary Carnivore
## 13676         3.56133013        1.886232978 Secondary Carnivore
## 13677         4.65396035        1.168798094 Secondary Carnivore
## 13678         0.00000000        1.459857720   Primary Carnivore
## 13679         7.34968088        6.849625561 Secondary Carnivore
## 13680         4.68213123        6.670778349  Tertiary Carnivore
## 13681         1.31908561        0.004578480   Primary Carnivore
## 13682         8.85237889        7.288251436 Secondary Carnivore
## 13683         0.93216408        4.094232049           Herbivore
## 13684         4.86753445        2.153233085 Secondary Carnivore
## 13685         0.00000000        0.281204828 Secondary Carnivore
## 13686         2.12823171        0.211247175 Secondary Carnivore
## 13687         5.67194775        1.886232978 Secondary Carnivore
## 13688         0.82417544        1.831515834   Primary Carnivore
## 13689         0.63657683        4.259772081           Herbivore
## 13690         6.61069604        6.942696930 Secondary Carnivore
## 13691         3.42426265        3.651616415  Tertiary Carnivore
## 13692         3.73440238        3.943759073 Secondary Carnivore
## 13693         3.66612247        0.749689812   Primary Carnivore
## 13694         2.08193842        0.004578480  Tertiary Carnivore
## 13695         0.00000000        2.145288428 Secondary Carnivore
## 13696         3.77045944        2.050338578   Primary Carnivore
## 13697         8.52734152        7.288251436 Secondary Carnivore
## 13698         3.71571611        2.433189939 Secondary Carnivore
## 13699         3.06339092        0.735932630 Secondary Carnivore
## 13700         2.61520365        3.226603994  Tertiary Carnivore
## 13701         7.20630310        6.849625561 Secondary Carnivore
## 13702         2.83321334        3.146907198 Secondary Carnivore
## 13703         2.80940270        1.420705940 Secondary Carnivore
## 13704         6.99062476        7.288251436 Secondary Carnivore
## 13705         4.47847253        1.168798094 Secondary Carnivore
## 13706         1.68639895        0.116104790 Secondary Carnivore
## 13707         0.00000000        0.009889753           Herbivore
## 13708         2.50470928        1.432814265 Secondary Carnivore
## 13709         6.66134310        6.670778349 Secondary Carnivore
## 13710         0.87546874        0.063185562 Secondary Carnivore
## 13711         3.20453346        2.610718759  Tertiary Carnivore
## 13712         1.08518927        1.180964506  Tertiary Carnivore
## 13713         3.00071982        0.214753881  Tertiary Carnivore
## 13714         2.00552586        1.307030142 Secondary Carnivore
## 13715         1.46325540        4.094232049           Herbivore
## 13716         4.53689135        1.673740129 Secondary Carnivore
## 13717         5.25227343        7.288251436   Primary Carnivore
## 13718         3.03013370        1.670180746   Primary Carnivore
## 13719         5.25017699        3.473231162   Primary Carnivore
## 13720         3.88567903        2.387053327 Secondary Carnivore
## 13721         3.89731538        0.735932630 Secondary Carnivore
## 13722         5.54126355        3.146907198 Secondary Carnivore
## 13723         4.77912349        4.094232049  Tertiary Carnivore
## 13724         1.70402055        0.211247175 Secondary Carnivore
## 13725         2.81540872        0.757060688 Secondary Carnivore
## 13726         7.84998662        6.670778349 Secondary Carnivore
## 13727         0.00000000        0.002344505  Tertiary Carnivore
## 13728         3.94158181        3.168005566 Secondary Carnivore
## 13729         1.73342389        0.015041422 Secondary Carnivore
## 13730         3.49347266        1.168798094 Secondary Carnivore
## 13731         0.26236426        2.107009466   Primary Carnivore
## 13732         0.00000000        2.107009466   Primary Carnivore
## 13733         2.84490938        0.020024930  Tertiary Carnivore
## 13734         0.74193734        2.241290896   Primary Carnivore
## 13735         1.67335124        0.490146528 Secondary Carnivore
## 13736         4.02177387        2.153233085  Tertiary Carnivore
## 13737         4.50976000        6.670778349 Secondary Carnivore
## 13738         4.07414185        3.159561805   Primary Carnivore
## 13739         2.76744803        6.670778349 Secondary Carnivore
## 13740         2.96460274        3.038160131 Secondary Carnivore
## 13741         5.17868888        2.153233085 Secondary Carnivore
## 13742         1.55180880        0.009889753  Tertiary Carnivore
## 13743         1.38629436        0.063185562 Secondary Carnivore
## 13744         4.54648119        3.146907198 Secondary Carnivore
## 13745         2.37024374        0.490146528 Secondary Carnivore
## 13746         0.30748470        4.259772081           Herbivore
## 13747         2.01089500        0.214753881 Secondary Carnivore
## 13748         3.39450839        1.479154529   Primary Carnivore
## 13749         2.68784749        0.757060688   Primary Carnivore
## 13750         2.35801980        3.515099295 Secondary Carnivore
## 13751         3.76584050        0.009889753  Tertiary Carnivore
## 13752         0.81536481        1.251683108 Secondary Carnivore
## 13753         0.00000000        1.886232978           Herbivore
## 13754         1.28923265        0.004578480 Secondary Carnivore
## 13755         2.00512201        2.853935439   Primary Carnivore
## 13756         4.74449725        3.146907198 Secondary Carnivore
## 13757         4.03777421        6.670778349   Primary Carnivore
## 13758         4.71635371        1.168798094 Secondary Carnivore
## 13759         0.36394843        0.413477448  Tertiary Carnivore
## 13760         0.00000000        0.009889753           Herbivore
## 13761         4.94875989        7.288251436 Secondary Carnivore
## 13762         3.99636415        6.670778349 Secondary Carnivore
## 13763         1.15688120        0.004578480   Primary Carnivore
## 13764         3.51452607        1.168798094 Secondary Carnivore
## 13765         8.20305762        7.288251436 Secondary Carnivore
## 13766         0.81668960        1.705681497 Secondary Carnivore
## 13767         2.55567572        0.015041422   Primary Carnivore
## 13768         1.34547237        1.962719022 Secondary Carnivore
## 13769         2.37954613        0.004578480 Secondary Carnivore
## 13770         4.85203026        6.849625561  Tertiary Carnivore
## 13771         0.95165788        1.877421323 Secondary Carnivore
## 13772         4.74701691        0.002059853 Secondary Carnivore
## 13773         0.98954119        0.116104790 Secondary Carnivore
## 13774         7.58054668        6.670778349 Secondary Carnivore
## 13775         3.03013370        2.153233085 Secondary Carnivore
## 13776         6.27476202        7.288251436   Primary Carnivore
## 13777         4.55807858        6.670778349 Secondary Carnivore
## 13778         1.06594239        2.145288428 Secondary Carnivore
## 13779         2.39059597        1.886232978   Primary Carnivore
## 13780         5.50443683        6.942696930 Secondary Carnivore
## 13781         2.01623547        1.886232978   Primary Carnivore
## 13782         1.40609699        2.136925014 Secondary Carnivore
## 13783         0.00000000        2.404044412           Herbivore
## 13784         4.99043259        6.670778349 Secondary Carnivore
## 13785         3.44998755        1.886232978 Secondary Carnivore
## 13786         1.74221902        1.831515834 Secondary Carnivore
## 13787         0.83290912        1.315195554   Primary Carnivore
## 13788         2.67414865        1.168798094 Secondary Carnivore
## 13789         3.39785848        2.153233085 Secondary Carnivore
## 13790         3.76537743        1.886232978   Primary Carnivore
## 13791         0.53062825        2.472143654   Primary Carnivore
## 13792         3.68145194        1.014024833 Secondary Carnivore
## 13793         7.71020519        7.288251436 Secondary Carnivore
## 13794         2.18941639        1.532760019   Primary Carnivore
## 13795         1.82454929        3.226603994  Tertiary Carnivore
## 13796         1.79342475        4.047182371  Tertiary Carnivore
## 13797         6.29876541        6.849625561 Secondary Carnivore
## 13798         2.60172626        0.470853119  Tertiary Carnivore
## 13799         0.40879290        2.891851822 Secondary Carnivore
## 13800         0.00000000        0.009889753  Tertiary Carnivore
## 13801         2.70951579        1.540263127 Secondary Carnivore
## 13802         1.67147330        0.015041422   Primary Carnivore
## 13803         5.30330491        4.259772081 Secondary Carnivore
## 13804         3.64021428        1.070822001   Primary Carnivore
## 13805         1.89069942        2.075946520 Secondary Carnivore
## 13806         4.24849524        6.849625561 Secondary Carnivore
## 13807         3.97168717        4.232513096 Secondary Carnivore
## 13808         0.99694863        1.540263127   Primary Carnivore
## 13809         4.44851638        6.670778349 Secondary Carnivore
## 13810         0.00000000        0.015041422   Primary Carnivore
## 13811         2.62466859        0.004578480 Secondary Carnivore
## 13812         6.68511160        6.849625561 Secondary Carnivore
## 13813         5.30230939        6.670778349  Tertiary Carnivore
## 13814         4.50733683        2.387053327 Secondary Carnivore
## 13815         3.12236492        2.891851822 Secondary Carnivore
## 13816         6.72623340        6.942696930  Tertiary Carnivore
## 13817         1.04027671        0.116104790 Secondary Carnivore
## 13818         2.71469474        1.886232978 Secondary Carnivore
## 13819         1.30291275        0.490146528 Secondary Carnivore
## 13820         3.81771233        0.735932630 Secondary Carnivore
## 13821         2.84490938        4.259772081 Secondary Carnivore
## 13822         1.67147330        0.004578480   Primary Carnivore
## 13823         1.32441896        2.122440181 Secondary Carnivore
## 13824         1.66770682        0.490146528  Tertiary Carnivore
## 13825         1.69561561        0.009889753 Secondary Carnivore
## 13826         7.38634693        7.288251436 Secondary Carnivore
## 13827         1.45861502        0.223982763 Secondary Carnivore
## 13828         3.55820113        2.404044412 Secondary Carnivore
## 13829         3.95871573        3.473231162 Secondary Carnivore
## 13830         1.22377543        0.878396534   Primary Carnivore
## 13831         3.91800508        3.146907198  Tertiary Carnivore
## 13832         2.80336038        1.168798094 Secondary Carnivore
## 13833         1.79175947        0.878396534   Primary Carnivore
## 13834         1.75785792        0.223982763 Secondary Carnivore
## 13835         3.45568557        0.749689812   Primary Carnivore
## 13836         3.68250921        3.873611973 Secondary Carnivore
## 13837         1.42310833        1.454402431 Secondary Carnivore
## 13838         5.73979291        2.153233085   Primary Carnivore
## 13839         3.08190997        0.002059853 Secondary Carnivore
## 13840         3.23474917        1.886232978 Secondary Carnivore
## 13841         5.08140436        6.670778349   Primary Carnivore
## 13842         1.04027671        0.116104790 Secondary Carnivore
## 13843         3.91202301        0.004578480  Tertiary Carnivore
## 13844         3.92197334        6.670778349   Primary Carnivore
## 13845         2.33505228        1.886232978 Secondary Carnivore
## 13846         7.83391713        6.670778349 Secondary Carnivore
## 13847         4.52601875        2.138914945  Tertiary Carnivore
## 13848         4.56076888        1.432814265 Secondary Carnivore
## 13849         3.57632647        0.470853119 Secondary Carnivore
## 13850         2.94968834        1.307030142 Secondary Carnivore
## 13851         7.17142638        6.670778349 Secondary Carnivore
## 13852         2.37954613        0.490146528  Tertiary Carnivore
## 13853         1.80500470        1.886232978 Secondary Carnivore
## 13854         2.12584791        3.515099295 Secondary Carnivore
## 13855         4.80541352        4.094232049 Secondary Carnivore
## 13856         1.68639895        0.130455954 Secondary Carnivore
## 13857         6.91214563        6.670778349 Secondary Carnivore
## 13858         5.57473625        3.473231162   Primary Carnivore
## 13859         7.21604848        6.849625561 Secondary Carnivore
## 13860         2.43562887        2.853935439 Secondary Carnivore
## 13861         2.07693841        0.735932630 Secondary Carnivore
## 13862         1.28093385        0.130455954  Tertiary Carnivore
## 13863         1.41342303        0.413477448 Secondary Carnivore
## 13864         4.26310232        2.433189939  Tertiary Carnivore
## 13865         7.68959991        6.849625561 Secondary Carnivore
## 13866         4.26267988        7.288251436   Primary Carnivore
## 13867         3.49650756        1.168798094 Secondary Carnivore
## 13868         4.00551335        3.146907198 Secondary Carnivore
## 13869         4.20916024        1.886232978   Primary Carnivore
## 13870         7.83241093        6.942696930 Secondary Carnivore
## 13871         4.53646299        3.146907198 Secondary Carnivore
## 13872         8.53210151        6.849625561 Secondary Carnivore
## 13873         1.33500107        0.015041422 Secondary Carnivore
## 13874         2.82731362        0.002344505 Secondary Carnivore
## 13875         4.70048037        6.670778349 Secondary Carnivore
## 13876         4.35388433        1.168798094 Secondary Carnivore
## 13877         4.61541750        3.473231162  Tertiary Carnivore
## 13878         1.42069579        0.214753881 Secondary Carnivore
## 13879         1.06471074        0.305596011  Tertiary Carnivore
## 13880         5.16478597        7.288251436 Secondary Carnivore
## 13881         0.00000000        0.004578480 Secondary Carnivore
## 13882         1.09192330        1.180964506 Secondary Carnivore
## 13883         0.47000363        0.147199990 Secondary Carnivore
## 13884         0.00000000        0.004578480   Primary Carnivore
## 13885         5.39816270        7.288251436  Tertiary Carnivore
## 13886         1.19392247        1.670180746   Primary Carnivore
## 13887         5.50938834        4.094232049  Tertiary Carnivore
## 13888         1.77495235        0.490146528  Tertiary Carnivore
## 13889         3.23474917        1.670180746   Primary Carnivore
## 13890         3.06339092        0.735932630 Secondary Carnivore
## 13891         3.71843826        2.387053327 Secondary Carnivore
## 13892         1.67147330        0.856029167  Tertiary Carnivore
## 13893         4.98360662        6.849625561   Primary Carnivore
## 13894         0.00000000        0.147199990 Secondary Carnivore
## 13895         1.79175947        0.223982763 Secondary Carnivore
## 13896         1.49290410        0.823328714 Secondary Carnivore
## 13897         2.94443898        0.757060688 Secondary Carnivore
## 13898         2.60268969        0.009889753   Primary Carnivore
## 13899         1.69708242        2.122440181 Secondary Carnivore
## 13900         3.43398720        0.002344505 Secondary Carnivore
## 13901         4.80745776        1.168798094   Primary Carnivore
## 13902         1.60140574        0.281204828 Secondary Carnivore
## 13903         4.56954301        6.849625561 Secondary Carnivore
## 13904         1.85629799        0.002059853 Secondary Carnivore
## 13905         2.52652832        0.015041422   Primary Carnivore
## 13906         2.16332303        0.223982763 Secondary Carnivore
## 13907         1.66770682        2.894695819 Secondary Carnivore
## 13908         4.47960696        6.849625561 Secondary Carnivore
## 13909         0.00000000        0.015041422   Primary Carnivore
## 13910         4.85203026        6.942696930 Secondary Carnivore
## 13911         5.02388052        4.094232049   Primary Carnivore
## 13912         1.85848310        0.900183757   Primary Carnivore
## 13913         6.44730586        7.288251436 Secondary Carnivore
## 13914         0.00000000        1.315195554   Primary Carnivore
## 13915         4.79579055        7.288251436   Primary Carnivore
## 13916         2.86789890        2.387053327 Secondary Carnivore
## 13917         3.15700042        2.387053327 Secondary Carnivore
## 13918         1.09192330        0.211247175 Secondary Carnivore
## 13919         1.82454929        0.063185562 Secondary Carnivore
## 13920         1.02961942        2.894695819   Primary Carnivore
## 13921         4.59208495        2.387053327 Secondary Carnivore
## 13922         3.91657264        4.232513096   Primary Carnivore
## 13923         1.76644166        4.047182371 Secondary Carnivore
## 13924         2.74071098        3.873611973 Secondary Carnivore
## 13925         0.99325177        0.878396534   Primary Carnivore
## 13926         3.26956894        2.894695819   Primary Carnivore
## 13927         3.01944880        2.853935439 Secondary Carnivore
## 13928         7.72832775        6.670778349 Secondary Carnivore
## 13929         1.12167756        0.015041422   Primary Carnivore
## 13930         1.08180517        0.211247175 Secondary Carnivore
## 13931         0.83290912        0.470853119  Tertiary Carnivore
## 13932         4.12713439        0.004578480  Tertiary Carnivore
## 13933         0.00000000        1.126655451   Primary Carnivore
## 13934         3.58629287        6.670778349   Primary Carnivore
## 13935         0.01064316        0.305596011  Tertiary Carnivore
## 13936         1.38629436        0.020024930  Tertiary Carnivore
## 13937         1.24126859        0.561550440 Secondary Carnivore
## 13938         5.48188814        6.670778349 Secondary Carnivore
## 13939         7.34018684        6.942696930  Tertiary Carnivore
## 13940         1.32972401        0.015041422  Tertiary Carnivore
## 13941         6.06092531        2.610718759 Secondary Carnivore
## 13942         7.88615659        6.670778349 Secondary Carnivore
## 13943         4.25844557        0.002059853 Secondary Carnivore
## 13944         8.12346889        7.288251436 Secondary Carnivore
## 13945         1.14740245        0.015041422 Secondary Carnivore
## 13946         6.83936937        6.849625561 Secondary Carnivore
## 13947         6.41345896        4.094232049 Secondary Carnivore
## 13948         3.92395158        2.277308093   Primary Carnivore
## 13949         3.54673969        6.670778349 Secondary Carnivore
## 13950         3.56953270        2.387053327 Secondary Carnivore
## 13951         0.00000000        0.130455954 Secondary Carnivore
## 13952         4.41642806        6.670778349 Secondary Carnivore
## 13953         3.21112587        3.651616415 Secondary Carnivore
## 13954         3.01553490        0.015041422  Tertiary Carnivore
## 13955         4.29959566        2.153233085   Primary Carnivore
## 13956         4.83628191        6.849625561 Secondary Carnivore
## 13957         4.24769492        3.873611973 Secondary Carnivore
## 13958         3.91921707        1.506685742 Secondary Carnivore
## 13959         0.26236426        2.024989105   Primary Carnivore
## 13960         1.40609699        0.305596011  Tertiary Carnivore
## 13961         0.00000000        1.459857720   Primary Carnivore
## 13962         5.14166356        7.288251436  Tertiary Carnivore
## 13963         3.28057281        2.433189939 Secondary Carnivore
## 13964         4.45781801        7.288251436   Primary Carnivore
## 13965         4.27527626        6.670778349   Primary Carnivore
## 13966         7.52736356        7.288251436 Secondary Carnivore
## 13967         4.23555473        4.094232049 Secondary Carnivore
## 13968         0.02078254        1.180964506 Secondary Carnivore
## 13969         0.85441533        2.153233085           Herbivore
## 13970         0.00000000        0.130455954 Secondary Carnivore
## 13971         1.99877364        0.015041422  Tertiary Carnivore
## 13972         0.00000000        3.146907198   Primary Carnivore
## 13973         7.95384545        6.849625561 Secondary Carnivore
## 13974         2.64617480        0.305596011  Tertiary Carnivore
## 13975         3.12236492        3.038160131 Secondary Carnivore
## 13976         0.00000000        0.340191127   Primary Carnivore
## 13977         4.41558229        3.943759073 Secondary Carnivore
## 13978         3.70179568        0.735932630   Primary Carnivore
## 13979         4.56017282        3.146907198 Secondary Carnivore
## 13980         2.13416644        1.742111989 Secondary Carnivore
## 13981         6.77445243        6.670778349 Secondary Carnivore
## 13982         2.54160199        2.050338578   Primary Carnivore
## 13983         2.08815348        0.009889753           Herbivore
## 13984         2.89668512        2.136925014 Secondary Carnivore
## 13985         2.10413415        1.886232978 Secondary Carnivore
## 13986         4.71573613        3.304296954 Secondary Carnivore
## 13987         7.34665516        7.288251436 Secondary Carnivore
## 13988         5.22810947        1.168798094   Primary Carnivore
## 13989         2.21920348        0.223982763 Secondary Carnivore
## 13990         2.79116511        1.886232978   Primary Carnivore
## 13991         2.56240767        2.075946520   Primary Carnivore
## 13992         2.84490938        3.473231162  Tertiary Carnivore
## 13993         1.52388002        1.532760019 Secondary Carnivore
## 13994         3.63663834        3.651616415   Primary Carnivore
## 13995         2.36368019        0.015041422   Primary Carnivore
## 13996         3.92789635        6.849625561   Primary Carnivore
## 13997         2.91695959        2.433189939 Secondary Carnivore
## 13998         6.52590904        6.670778349 Secondary Carnivore
## 13999         2.45958884        0.015041422   Primary Carnivore
## 14000         2.59525471        3.473231162 Secondary Carnivore
## 14001         7.61386804        6.670778349 Secondary Carnivore
## 14002         2.27212589        1.532760019   Primary Carnivore
## 14003         3.68637632        2.153233085 Secondary Carnivore
## 14004         0.00000000        0.211247175 Secondary Carnivore
## 14005         3.33932198        2.404044412 Secondary Carnivore
## 14006         1.90389697        0.211247175 Secondary Carnivore
## 14007         3.25424297        3.515099295 Secondary Carnivore
## 14008         2.98568194        4.121930401   Primary Carnivore
## 14009         2.82137889        2.153233085 Secondary Carnivore
## 14010         3.15700042        1.168798094 Secondary Carnivore
## 14011         5.61312811        6.849625561   Primary Carnivore
## 14012         3.23080440        2.241290896   Primary Carnivore
## 14013         2.05412373        0.856029167 Secondary Carnivore
## 14014         2.47653840        0.885298676  Tertiary Carnivore
## 14015         3.24259235        0.749689812   Primary Carnivore
## 14016         3.23867845        3.146907198 Secondary Carnivore
## 14017         2.27829240        2.387053327  Tertiary Carnivore
## 14018         5.44570235        1.168798094   Primary Carnivore
## 14019         5.77455155        6.942696930  Tertiary Carnivore
## 14020         4.57367952        4.094232049 Secondary Carnivore
## 14021         6.28897318        6.670778349 Secondary Carnivore
## 14022         4.86375810        1.673740129   Primary Carnivore
## 14023         2.81367068        2.891851822  Tertiary Carnivore
## 14024         0.00000000        0.002344505 Secondary Carnivore
## 14025         1.20297230        0.015041422   Primary Carnivore
## 14026         2.83749827        2.853935439 Secondary Carnivore
## 14027         7.05142263        6.670778349 Secondary Carnivore
## 14028         3.25037449        0.020024930   Primary Carnivore
## 14029         1.00063188        1.711701702 Secondary Carnivore
## 14030         7.78130551        6.670778349 Secondary Carnivore
## 14031         7.82043952        7.288251436 Secondary Carnivore
## 14032         8.06495089        4.094232049 Secondary Carnivore
## 14033         0.79750720        0.413477448 Secondary Carnivore
## 14034         0.00000000        1.673740129           Herbivore
## 14035         4.51085951        7.288251436 Secondary Carnivore
## 14036         2.25023861        0.214753881 Secondary Carnivore
## 14037         2.82137889        0.009889753   Primary Carnivore
## 14038         8.50329709        7.288251436 Secondary Carnivore
## 14039         4.58598737        4.094232049 Secondary Carnivore
## 14040         3.79098468        1.168798094 Secondary Carnivore
## 14041         0.00000000        0.015041422   Primary Carnivore
## 14042         2.54944517        0.015041422  Tertiary Carnivore
## 14043         5.52146092        6.942696930 Secondary Carnivore
## 14044         2.94443898        2.894695819   Primary Carnivore
## 14045         1.62136648        1.180964506  Tertiary Carnivore
## 14046         3.72810017        1.673740129 Secondary Carnivore
## 14047         3.66612247        6.849625561 Secondary Carnivore
## 14048         0.83290912        0.147199990  Tertiary Carnivore
## 14049         1.66203036        0.009889753  Tertiary Carnivore
## 14050         4.30000280        6.849625561 Secondary Carnivore
## 14051         1.69009582        0.015041422 Secondary Carnivore
## 14052         3.88362353        6.849625561   Primary Carnivore
## 14053         2.54944517        0.044241443   Primary Carnivore
## 14054         0.63180355        4.047182371   Primary Carnivore
## 14055         3.87120101        1.673740129 Secondary Carnivore
## 14056         3.59731226        2.153233085 Secondary Carnivore
## 14057         4.66343909        6.849625561 Secondary Carnivore
## 14058         5.57215403        4.259772081   Primary Carnivore
## 14059         1.27256560        0.823328714 Secondary Carnivore
## 14060         0.82855182        1.877421323 Secondary Carnivore
## 14061         6.11146734        7.288251436   Primary Carnivore
## 14062         0.00000000        0.116104790 Secondary Carnivore
## 14063         4.98360662        4.094232049   Primary Carnivore
## 14064         4.46579317        3.473231162   Primary Carnivore
## 14065         5.35185813        7.288251436  Tertiary Carnivore
## 14066         1.99741771        0.490146528  Tertiary Carnivore
## 14067         3.81683282        2.153233085 Secondary Carnivore
## 14068         0.30748470        0.211247175  Tertiary Carnivore
## 14069         6.27795841        6.670778349 Secondary Carnivore
## 14070         1.22671229        0.305596011  Tertiary Carnivore
## 14071         0.69314718        0.470853119  Tertiary Carnivore
## 14072         2.91158951        1.962719022 Secondary Carnivore
## 14073         3.93573953        1.168798094 Secondary Carnivore
## 14074         2.77819796        0.015041422   Primary Carnivore
## 14075         4.29728541        4.094232049 Secondary Carnivore
## 14076         0.00000000        0.009889753  Tertiary Carnivore
## 14077         7.22875123        6.670778349 Secondary Carnivore
## 14078         5.55902642        1.168798094   Primary Carnivore
## 14079         7.02028007        6.670778349 Secondary Carnivore
## 14080         2.37861978        2.387053327 Secondary Carnivore
## 14081         4.48863637        6.670778349 Secondary Carnivore
## 14082         0.78845736        0.130455954 Secondary Carnivore
## 14083         0.40546511        2.894695819   Primary Carnivore
## 14084         7.34665516        7.288251436 Secondary Carnivore
## 14085         0.00000000        1.459857720   Primary Carnivore
## 14086         0.00000000        0.002344505 Secondary Carnivore
## 14087         4.92308559        7.288251436 Secondary Carnivore
## 14088         3.36729583        1.168798094 Secondary Carnivore
## 14089         1.78170913        0.856029167   Primary Carnivore
## 14090         6.08904488        7.288251436 Secondary Carnivore
## 14091         2.16676537        0.015041422  Tertiary Carnivore
## 14092         3.75560309        6.942696930 Secondary Carnivore
## 14093         0.83290912        4.262479896 Secondary Carnivore
## 14094         1.05779029        2.122440181 Secondary Carnivore
## 14095         4.51085951        7.288251436 Secondary Carnivore
## 14096         1.93152141        0.490146528 Secondary Carnivore
## 14097         2.03339760        1.742111989 Secondary Carnivore
## 14098         3.68135119        2.387053327 Secondary Carnivore
## 14099         2.56510319        2.254856321   Primary Carnivore
## 14100         5.64897424        4.259772081 Secondary Carnivore
## 14101         3.51868408        1.886232978 Secondary Carnivore
## 14102         2.54944517        0.281204828 Secondary Carnivore
## 14103         5.89715387        6.942696930  Tertiary Carnivore
## 14104         2.61739583        1.742111989 Secondary Carnivore
## 14105         2.24191003        6.670778349 Secondary Carnivore
## 14106         7.47363711        7.288251436 Secondary Carnivore
## 14107         1.96571278        0.856029167 Secondary Carnivore
## 14108         0.40546511        0.063185562 Secondary Carnivore
## 14109         6.19031541        6.942696930  Tertiary Carnivore
## 14110         2.28033948        1.532760019   Primary Carnivore
## 14111         2.13947776        4.047182371 Secondary Carnivore
## 14112         3.49650756        3.146907198 Secondary Carnivore
## 14113         0.53062825        0.130455954  Tertiary Carnivore
## 14114         3.95316495        6.670778349 Secondary Carnivore
## 14115         3.73050113        6.670778349 Secondary Carnivore
## 14116         3.05870707        3.038160131 Secondary Carnivore
## 14117         8.44080878        6.849625561 Secondary Carnivore
## 14118         2.32630162        2.845177164 Secondary Carnivore
## 14119         1.48160454        0.130455954 Secondary Carnivore
## 14120         3.57234564        3.168005566 Secondary Carnivore
## 14121         6.59441346        7.288251436  Tertiary Carnivore
## 14122         4.60616969        4.259772081  Tertiary Carnivore
## 14123         1.54756251        0.015041422 Secondary Carnivore
## 14124         4.22537282        1.168798094 Secondary Carnivore
## 14125         0.00000000        0.470853119  Tertiary Carnivore
## 14126         2.98061864        2.387053327 Secondary Carnivore
## 14127         3.76352300        1.168798094 Secondary Carnivore
## 14128         3.19179236        1.540263127 Secondary Carnivore
## 14129         4.01096295        6.670778349 Secondary Carnivore
## 14130         5.11198779        4.094232049  Tertiary Carnivore
## 14131         1.16315081        1.126655451   Primary Carnivore
## 14132         1.19392247        0.211247175 Secondary Carnivore
## 14133         7.39079852        7.288251436 Secondary Carnivore
## 14134         4.66861436        2.153233085 Secondary Carnivore
## 14135         1.54756251        0.009889753  Tertiary Carnivore
## 14136         6.06610809        7.288251436  Tertiary Carnivore
## 14137         4.04480412        6.942696930  Tertiary Carnivore
## 14138         4.98561830        3.304296954   Primary Carnivore
## 14139         6.77502357        6.849625561 Secondary Carnivore
## 14140         4.62497281        3.168005566 Secondary Carnivore
## 14141         2.58021683        1.532760019   Primary Carnivore
## 14142         4.98360662        4.094232049   Primary Carnivore
## 14143         2.63905733        2.153233085 Secondary Carnivore
## 14144         5.22035583        3.146907198 Secondary Carnivore
## 14145         7.13297667        6.670778349 Secondary Carnivore
## 14146         2.58776404        0.757060688 Secondary Carnivore
## 14147         2.11709853        3.515099295 Secondary Carnivore
## 14148         2.36837283        0.735932630 Secondary Carnivore
## 14149         4.18813844        6.849625561  Tertiary Carnivore
## 14150         0.00000000        0.004578480 Secondary Carnivore
## 14151         3.41444261        1.742111989 Secondary Carnivore
## 14152         5.13603370        1.673740129 Secondary Carnivore
## 14153         1.80664808        0.116104790 Secondary Carnivore
## 14154         3.39114705        1.670180746 Secondary Carnivore
## 14155         1.30019166        2.845177164 Secondary Carnivore
## 14156         3.13113691        4.259772081 Secondary Carnivore
## 14157         2.64326276        0.490146528 Secondary Carnivore
## 14158         0.00000000        0.015041422 Secondary Carnivore
## 14159         4.08260931        6.670778349 Secondary Carnivore
## 14160         5.02388052        6.942696930 Secondary Carnivore
## 14161         1.04027671        0.885298676 Secondary Carnivore
## 14162         3.94931879        7.161415474 Secondary Carnivore
## 14163         0.00000000        0.002059853 Secondary Carnivore
## 14164         2.14943391        0.735932630 Secondary Carnivore
## 14165         7.29369772        7.288251436 Secondary Carnivore
## 14166         1.53686722        0.015041422  Tertiary Carnivore
## 14167         0.00000000        0.147199990 Secondary Carnivore
## 14168         2.11142459        0.900183757 Secondary Carnivore
## 14169         1.82454929        0.490146528  Tertiary Carnivore
## 14170         0.83290912        1.831515834 Secondary Carnivore
## 14171         4.75780543        4.094232049 Secondary Carnivore
## 14172         2.74084002        1.886232978 Secondary Carnivore
## 14173         6.03954017        1.886232978 Secondary Carnivore
## 14174         0.17395331        1.532760019  Tertiary Carnivore
## 14175         3.28091122        3.146907198 Secondary Carnivore
## 14176         5.35185813        7.288251436  Tertiary Carnivore
## 14177         0.00000000        2.404044412           Herbivore
## 14178         1.19392247        0.147199990 Secondary Carnivore
## 14179         4.44968528        1.168798094  Tertiary Carnivore
## 14180         4.82807371        1.673740129   Primary Carnivore
## 14181         0.00000000        1.877421323 Secondary Carnivore
## 14182         7.68303529        6.849625561 Secondary Carnivore
## 14183         1.85207032        0.211247175 Secondary Carnivore
## 14184         0.19885086        0.305596011 Secondary Carnivore
## 14185         1.65822808        0.885298676  Tertiary Carnivore
## 14186         1.84292776        1.962719022 Secondary Carnivore
## 14187         2.58021683        2.136925014 Secondary Carnivore
## 14188         5.77299754        1.886232978   Primary Carnivore
## 14189         4.45771372        1.886232978   Primary Carnivore
## 14190         2.77102500        1.962719022  Tertiary Carnivore
## 14191         3.94352167        3.146907198  Tertiary Carnivore
## 14192         2.95491028        2.472143654   Primary Carnivore
## 14193         7.98214318        6.849625561 Secondary Carnivore
## 14194         4.79892612        2.387053327   Primary Carnivore
## 14195         0.92821930        6.942696930           Herbivore
## 14196         7.83494639        6.670778349 Secondary Carnivore
## 14197         7.03341830        6.670778349 Secondary Carnivore
## 14198         1.32175584        2.254856321 Secondary Carnivore
## 14199         6.78649119        6.670778349  Tertiary Carnivore
## 14200         0.00000000        1.670180746   Primary Carnivore
## 14201         0.00000000        2.404044412           Herbivore
## 14202         5.90511659        1.886232978   Primary Carnivore
## 14203         4.61485315        1.432814265 Secondary Carnivore
## 14204         4.22753423        1.506685742   Primary Carnivore
## 14205         7.39184671        7.288251436 Secondary Carnivore
## 14206         1.28923265        0.856029167 Secondary Carnivore
## 14207         1.51292701        0.015041422 Secondary Carnivore
## 14208         0.97455964        0.305596011  Tertiary Carnivore
## 14209         7.97968130        7.288251436 Secondary Carnivore
## 14210         1.18784342        0.561550440 Secondary Carnivore
## 14211         4.06355884        2.138914945 Secondary Carnivore
## 14212         3.19043520        2.610718759 Secondary Carnivore
## 14213         1.76985463        0.015041422  Tertiary Carnivore
## 14214         5.38587026        0.004578480  Tertiary Carnivore
## 14215         1.32441896        4.047182371 Secondary Carnivore
## 14216         0.83290912        5.169038067   Primary Carnivore
## 14217         2.56617937        1.962719022 Secondary Carnivore
## 14218         2.17815501        2.845177164 Secondary Carnivore
## 14219         4.96284463        6.670778349  Tertiary Carnivore
## 14220         2.16217294        0.009889753   Primary Carnivore
## 14221         0.90421815        0.305596011  Tertiary Carnivore
## 14222         0.00000000        1.886232978           Herbivore
## 14223         1.34547237        0.856029167 Secondary Carnivore
## 14224         0.00000000        0.004578480  Tertiary Carnivore
## 14225         3.57660621        1.432814265  Tertiary Carnivore
## 14226         0.43048287        0.856029167  Tertiary Carnivore
## 14227         7.98132323        6.670778349 Secondary Carnivore
## 14228         3.66867675        0.749689812   Primary Carnivore
## 14229         1.19392247        1.532760019  Tertiary Carnivore
## 14230         4.18801704        3.651616415   Primary Carnivore
## 14231         1.44926916        1.251683108 Secondary Carnivore
## 14232         4.50534985        4.094232049  Tertiary Carnivore
## 14233         2.44633906        0.470853119 Secondary Carnivore
## 14234         4.34510328        6.670778349 Secondary Carnivore
## 14235         4.84418709        3.146907198 Secondary Carnivore
## 14236         1.49962305        0.561550440 Secondary Carnivore
## 14237         6.67997600        6.670778349 Secondary Carnivore
## 14238         2.11384297        0.009889753 Secondary Carnivore
## 14239         3.50453585        3.873611973  Tertiary Carnivore
## 14240         8.49631679        6.849625561 Secondary Carnivore
## 14241         5.86646806        2.153233085  Tertiary Carnivore
## 14242         0.37156356        0.130455954 Secondary Carnivore
## 14243         0.00000000        1.981883583   Primary Carnivore
## 14244         4.31348009        4.259772081 Secondary Carnivore
## 14245         2.82137889        1.168798094 Secondary Carnivore
## 14246         2.65324196        0.002344505 Secondary Carnivore
## 14247         3.85014760        6.849625561 Secondary Carnivore
## 14248         3.86157146        0.015041422 Secondary Carnivore
## 14249         3.26575941        2.387053327 Secondary Carnivore
## 14250         4.62497281        4.259772081 Secondary Carnivore
## 14251         2.94443898        0.004578480  Tertiary Carnivore
## 14252         4.39444915        7.288251436 Secondary Carnivore
## 14253         0.99325177        0.130455954  Tertiary Carnivore
## 14254         4.00369019        1.307030142 Secondary Carnivore
## 14255         0.53999600        0.413477448  Tertiary Carnivore
## 14256         0.26236426        1.920179330   Primary Carnivore
## 14257         3.30310667        1.506685742 Secondary Carnivore
## 14258         0.00000000        0.130455954 Secondary Carnivore
## 14259         4.21331208        1.886232978 Secondary Carnivore
## 14260         5.75574221        1.168798094 Secondary Carnivore
## 14261         1.56024767        0.009889753   Primary Carnivore
## 14262         2.02683159        0.885298676  Tertiary Carnivore
## 14263         4.75531284        3.943759073 Secondary Carnivore
## 14264         4.99767163        4.232513096 Secondary Carnivore
## 14265         2.22354189        0.015041422 Secondary Carnivore
## 14266         3.26575941        5.169038067   Primary Carnivore
## 14267         1.71918878        0.856029167   Primary Carnivore
## 14268         1.13462273        2.136925014 Secondary Carnivore
## 14269         0.58778666        0.147199990 Secondary Carnivore
## 14270         1.84150156        1.711701702  Tertiary Carnivore
## 14271         2.97041447        2.387053327 Secondary Carnivore
## 14272         0.00000000        0.002344505 Secondary Carnivore
## 14273         0.00000000        2.404044412           Herbivore
## 14274         2.77258872        0.116104790 Secondary Carnivore
## 14275         1.85629799        0.490146528  Tertiary Carnivore
## 14276         4.59410924        3.168005566 Secondary Carnivore
## 14277         5.56452041        7.288251436  Tertiary Carnivore
## 14278         8.05360097        6.670778349 Secondary Carnivore
## 14279         3.24649099        1.307030142 Secondary Carnivore
## 14280         1.70292826        0.015041422 Secondary Carnivore
## 14281         3.88752537        0.749689812   Primary Carnivore
## 14282         0.00000000        0.015041422  Tertiary Carnivore
## 14283         5.18178355        6.849625561 Secondary Carnivore
## 14284         2.40865536        1.540263127 Secondary Carnivore
## 14285         2.90690106        3.515099295 Secondary Carnivore
##       feeding_position Year      CompositeCommonName       linpred
## 1        Benthopelagic    1            rosy rockfish  2.4891748698
## 2             Midwater    3         shiner surfperch  2.1517938438
## 3        Benthopelagic   11            white croaker  2.4442726680
## 4        Benthopelagic    1         barred surfperch  1.8244659496
## 5             Midwater    1         shiner surfperch  2.2758881202
## 6              Pelagic   21            chub mackerel  2.6643289968
## 7        Benthopelagic   16       vermilion rockfish  2.4760649168
## 8        Benthopelagic    7        speckled rockfish  2.2173673113
## 9             Midwater    4         shiner surfperch  2.3273371494
## 10       Benthopelagic   11       vermilion rockfish  2.4313781055
## 11             Pelagic    5            chub mackerel  2.2889585413
## 12            Midwater   14                kelp bass  2.4072371962
## 13       Benthopelagic    3              black perch  2.4729834716
## 14       Benthopelagic    5            black croaker  2.1039369209
## 15            Midwater    5                top smelt  2.1427013362
## 16            Midwater   11                top smelt  2.1554529017
## 17             Benthic   10         hornyhead turbot  1.8107099825
## 18             Pelagic    5             market squid  2.4501102970
## 19       Benthopelagic   12              black perch  2.8357880811
## 20       Benthopelagic    1       california corbina  3.3563151350
## 21       Benthopelagic    3         barred surfperch  2.0683991441
## 22       Benthopelagic   19       vermilion rockfish  2.1419805700
## 23       Benthopelagic   15        speckled rockfish  1.3168372487
## 24             Pelagic    5          pacific sardine  2.3409290348
## 25       Benthopelagic    4         barred surfperch  2.0262199221
## 26       Benthopelagic   11              black perch  2.9303568156
## 27            Midwater   11                kelp bass  2.4157721996
## 28       Benthopelagic   11         barred surfperch  2.3265166051
## 29             Pelagic    5         northern anchovy  3.2093729820
## 30             Pelagic    5          pacific sardine  2.1381050807
## 31       Benthopelagic   11            white croaker  2.1801398965
## 32       Benthopelagic   19            white croaker  2.2679977148
## 33       Benthopelagic    3              black perch  1.3811552053
## 34       Benthopelagic   19       vermilion rockfish  3.3328660544
## 35       Benthopelagic   12           brown rockfish  1.5589214533
## 36       Benthopelagic    6          copper rockfish  2.7448205918
## 37             Pelagic    5             market squid  1.8590722408
## 38       Benthopelagic   22              black perch  2.7066430977
## 39             Benthic   20       california halibut  2.4221781274
## 40       Benthopelagic    2        spotted sand bass  2.3076223610
## 41             Benthic    1           diamond turbot  2.4446193218
## 42             Benthic   23         hornyhead turbot  2.7411028866
## 43       Benthopelagic    5         barred sand bass  2.3913219000
## 44             Benthic    4    california lizardfish  1.6980593615
## 45       Benthopelagic   11 brown smooth-hound shark  2.4561022144
## 46       Benthopelagic   21            white croaker  2.8951161482
## 47       Benthopelagic    4            flag rockfish  1.8464550748
## 48             Benthic   12         hornyhead turbot  1.8023742080
## 49             Benthic    4    shovelnose guitarfish  1.9177598470
## 50       Benthopelagic   14            white croaker  1.7767113129
## 51       Benthopelagic    5     california sheephead  1.5533512614
## 52             Pelagic    5         northern anchovy  2.3052279432
## 53       Benthopelagic   20       vermilion rockfish  2.5330561247
## 54       Benthopelagic    2         barred surfperch  2.7443845405
## 55            Midwater   17      squarespot rockfish  1.8244262630
## 56       Benthopelagic   18       vermilion rockfish  1.9573293407
## 57       Benthopelagic   11            white croaker  2.4084885489
## 58       Benthopelagic    4         barred sand bass  2.1554835955
## 59            Midwater    4                top smelt  2.0889363467
## 60             Benthic   17         hornyhead turbot  1.9020869161
## 61       Benthopelagic   11            white croaker  1.7989591766
## 62       Benthopelagic   11         barred surfperch  2.6314496714
## 63             Pelagic    5             market squid  2.2507049576
## 64             Benthic   19  california scorpionfish  1.9498226045
## 65             Pelagic    5             market squid  2.7782001527
## 66       Benthopelagic   10         barred sand bass  1.8829525690
## 67             Pelagic   11            chub mackerel  2.0357579589
## 68       Benthopelagic   11              black perch  2.8833412380
## 69       Benthopelagic   22              black perch  1.3901956308
## 70       Benthopelagic   12            white croaker  2.6098782244
## 71             Benthic    5    shovelnose guitarfish  1.5677592224
## 72       Benthopelagic   20       california corbina  2.6663076578
## 73       Benthopelagic    5                  opaleye  2.6747569617
## 74       Benthopelagic   16       vermilion rockfish  3.1697964623
## 75       Benthopelagic    1        spotted sand bass  2.8612962606
## 76       Benthopelagic    3        rainbow surfperch  2.7235237400
## 77       Benthopelagic   17            white croaker  1.5937655643
## 78             Benthic   22  california scorpionfish  1.8584805237
## 79            Midwater   21                kelp bass  2.2014948520
## 80             Pelagic    5             market squid  1.6567121057
## 81       Benthopelagic   21            white croaker  2.5312449116
## 82       Benthopelagic    1        rainbow surfperch  3.2324138575
## 83       Benthopelagic    4       california corbina  2.1087678614
## 84             Pelagic   21            chub mackerel  1.6754329092
## 85       Benthopelagic   20            white croaker  2.8829076200
## 86             Pelagic    6          pacific sardine  1.6453173848
## 87            Midwater    4           striped mullet  2.5191298946
## 88             Pelagic   21            chub mackerel  3.0343350679
## 89             Benthic    1         speckled sanddab  2.4277922495
## 90       Benthopelagic   11            white croaker  2.6904032715
## 91             Benthic    8         hornyhead turbot  3.4885640725
## 92            Midwater    4         shiner surfperch  1.6675708825
## 93       Benthopelagic   10       vermilion rockfish  2.3460605604
## 94       Benthopelagic    1        rainbow surfperch  2.0139766275
## 95            Midwater   11         shiner surfperch  2.0979703406
## 96       Benthopelagic    5            leopard shark  2.3847569598
## 97             Pelagic   21            chub mackerel  2.1527164623
## 98       Benthopelagic   11              black perch  2.8963164838
## 99            Midwater    4         shiner surfperch  1.9620200621
## 100      Benthopelagic   14              black perch  3.0127594166
## 101           Midwater   11                kelp bass  1.8921249906
## 102      Benthopelagic   18            white croaker  2.3368128829
## 103           Midwater    4                top smelt  2.4739152218
## 104      Benthopelagic    5   gray smoothhound shark  2.1348608182
## 105      Benthopelagic   23            white croaker  1.9299795594
## 106            Pelagic   21           slough anchovy  2.2435368722
## 107           Midwater    1                queenfish  2.1656801667
## 108      Benthopelagic   21            white croaker  2.4376444599
## 109           Midwater    1                kelp bass  1.8041561882
## 110      Benthopelagic   24       vermilion rockfish  2.1008741423
## 111            Pelagic   21            chub mackerel  2.4527076262
## 112            Pelagic    5          pacific sardine  2.3058462222
## 113      Benthopelagic    4       california corbina  1.9103752168
## 114      Benthopelagic    3       california corbina  3.0148141526
## 115      Benthopelagic   16              black perch  2.4464212638
## 116            Pelagic    5          pacific sardine  2.5886725638
## 117            Pelagic   21            chub mackerel  2.4801534173
## 118      Benthopelagic   21         barred sand bass  1.8721496274
## 119            Pelagic    6          pacific sardine  2.4387245053
## 120      Benthopelagic    5        yellowfin croaker  1.6128058909
## 121            Benthic    1  california scorpionfish  1.9777206435
## 122           Midwater    4         shiner surfperch  2.9187159408
## 123            Benthic    5  california scorpionfish  2.1974374936
## 124      Benthopelagic    5       california corbina  2.2108686694
## 125            Benthic   19         hornyhead turbot  2.3102078358
## 126      Benthopelagic    2              black perch  2.0701671060
## 127      Benthopelagic   21        spotted sand bass  1.6302481186
## 128      Benthopelagic    7       vermilion rockfish  3.2532571573
## 129      Benthopelagic    3              black perch  2.5351317610
## 130            Pelagic   11            chub mackerel  2.8386984692
## 131      Benthopelagic   22            white croaker  2.5876815741
## 132           Midwater    2         shiner surfperch  1.5188990626
## 133      Benthopelagic   11   gray smoothhound shark  2.2537074877
## 134      Benthopelagic   19            white croaker  2.3614634708
## 135      Benthopelagic   11            white croaker  2.5198140974
## 136      Benthopelagic    5            white croaker  2.9466384797
## 137      Benthopelagic   21          white surfperch  1.9901886567
## 138           Midwater    5                 halfmoon  2.5928760238
## 139           Midwater   10                kelp bass  2.2562022552
## 140           Midwater    1                kelp bass  2.1954017305
## 141           Midwater    3         shiner surfperch  1.6501102517
## 142      Benthopelagic   10            white croaker  2.8846972794
## 143           Midwater    5                queenfish  1.6175678430
## 144      Benthopelagic    1            white croaker  2.2539031694
## 145      Benthopelagic    4              black perch  2.7921059242
## 146      Benthopelagic    1         barred sand bass  1.2059611377
## 147           Midwater    5                kelp bass  2.2898324839
## 148            Pelagic    5          pacific sardine  2.0229465145
## 149      Benthopelagic   21         barred sand bass  1.7602252308
## 150      Benthopelagic    4           pile surfperch  1.5498678834
## 151           Midwater   14                kelp bass  2.1597029890
## 152      Benthopelagic   16          copper rockfish  1.5674849527
## 153      Benthopelagic    3        spotted sand bass  1.9721506576
## 154           Midwater   16                kelp bass  2.2716052203
## 155           Midwater    4                kelp bass  2.0171383282
## 156      Benthopelagic   14              black perch  2.4387471966
## 157            Pelagic    6          pacific sardine  2.5841394750
## 158      Benthopelagic   11              black perch  2.8483232265
## 159      Benthopelagic    4           pile surfperch  2.9495297019
## 160      Benthopelagic    5        yellowfin croaker  2.7995922277
## 161            Benthic   14         hornyhead turbot  2.6915132182
## 162            Pelagic    5          pacific sardine  2.7811963021
## 163            Pelagic   21            chub mackerel  2.0056390405
## 164           Midwater   21                kelp bass  2.6202803949
## 165      Benthopelagic   10              black perch  2.2923329484
## 166           Midwater   21                kelp bass  0.8546264362
## 167            Pelagic    5          pacific sardine  2.4884087020
## 168           Midwater    3         shiner surfperch  2.7369293917
## 169      Benthopelagic    8         barred sand bass  2.8791519651
## 170      Benthopelagic   11         barred sand bass  2.0200954011
## 171           Midwater    1        walleye surfperch  2.8229112521
## 172            Benthic   20  california scorpionfish  2.4300554567
## 173            Benthic   23         hornyhead turbot  1.7803981016
## 174            Benthic   19  california scorpionfish  1.9935621748
## 175      Benthopelagic   12           brown rockfish  3.0940073800
## 176      Benthopelagic   11          white surfperch  1.7534926663
## 177      Benthopelagic    5       california corbina  3.0819333692
## 178      Benthopelagic    4              black perch  2.1377773514
## 179      Benthopelagic    5            white croaker  2.7974835337
## 180      Benthopelagic    3        spotted sand bass  2.2039315146
## 181      Benthopelagic   20            white croaker  2.4317202745
## 182           Midwater    1         shiner surfperch  1.8154420105
## 183            Benthic   20         hornyhead turbot  2.5266048742
## 184            Benthic    1           spotted turbot  1.7897722362
## 185            Benthic   23         hornyhead turbot  1.9171368660
## 186      Benthopelagic   14       vermilion rockfish  2.7279421859
## 187            Pelagic    5             market squid  2.1406940576
## 188      Benthopelagic    8            white croaker  1.5946459974
## 189            Pelagic    5             market squid  2.0671489266
## 190      Benthopelagic    5       vermilion rockfish  2.3286665920
## 191      Benthopelagic   11            white croaker  2.7746394109
## 192            Benthic    3           diamond turbot  2.8161569872
## 193            Pelagic   21         northern anchovy  1.6463350876
## 194            Benthic    8         hornyhead turbot  1.9696346613
## 195      Benthopelagic    4         barred sand bass  1.9405847066
## 196           Midwater    3                jacksmelt  1.4380456199
## 197           Midwater   21                kelp bass  2.4060095157
## 198      Benthopelagic   11        yellowfin croaker  2.2534978428
## 199           Midwater    8                kelp bass  2.9712654598
## 200      Benthopelagic    9       vermilion rockfish  2.2032911527
## 201           Midwater   21                kelp bass  2.5305322063
## 202      Benthopelagic    1         barred surfperch  2.4470924251
## 203           Midwater   11                top smelt  1.9162779344
## 204      Benthopelagic    5            white croaker  1.6161294878
## 205      Benthopelagic    4         barred surfperch  3.2441197403
## 206      Benthopelagic   21        yellowfin croaker  2.0905486064
## 207      Benthopelagic    5         barred sand bass  1.4627977278
## 208            Pelagic   21            chub mackerel  1.5193097910
## 209           Midwater   21                kelp bass  1.3962969968
## 210      Benthopelagic    8            white croaker  1.8892821777
## 211            Pelagic   21            chub mackerel  1.9273832172
## 212      Benthopelagic   16        speckled rockfish  2.5367122245
## 213      Benthopelagic    5         barred sand bass  2.6722866053
## 214            Pelagic   21           slough anchovy  2.7078207134
## 215      Benthopelagic   11            rosy rockfish  1.7639222160
## 216            Benthic    4           diamond turbot  1.7183933332
## 217            Benthic   16  california scorpionfish  1.8877566197
## 218      Benthopelagic   20       vermilion rockfish  1.8227143352
## 219           Midwater   20                kelp bass  2.3177721205
## 220           Midwater   21                kelp bass  1.6311960117
## 221            Benthic   13         hornyhead turbot  2.1931158926
## 222            Pelagic   21            chub mackerel  2.0471989375
## 223      Benthopelagic   14       vermilion rockfish  1.9005737665
## 224           Midwater    5                kelp bass  2.4193443267
## 225            Benthic   10  california scorpionfish  1.2685203004
## 226      Benthopelagic    5         barred sand bass  2.6523744303
## 227           Midwater    4                kelp bass  1.5358487709
## 228      Benthopelagic    1        yellowfin croaker  2.8082902782
## 229      Benthopelagic   10           brown rockfish  1.7350470345
## 230            Benthic    5          longfin sanddab  3.0854607799
## 231      Benthopelagic    3        yellowfin croaker  1.6288454821
## 232      Benthopelagic   11            white croaker  1.6615791327
## 233           Midwater   20                kelp bass  1.7715916676
## 234            Benthic    5       california halibut  1.8635385684
## 235            Pelagic    5          pacific sardine  1.7727107471
## 236           Midwater   21                kelp bass  0.9832943637
## 237      Benthopelagic    8            white croaker  2.2367424897
## 238      Benthopelagic    3       california corbina  2.6348064728
## 239      Benthopelagic    4        spotted sand bass  2.1616584272
## 240            Benthic   10  california scorpionfish  2.4864880833
## 241            Benthic    5  california scorpionfish  2.5631124851
## 242           Midwater   11                top smelt  2.5159301655
## 243      Benthopelagic   17            white croaker  2.3700214759
## 244      Benthopelagic    5            white croaker  2.3314456227
## 245            Pelagic   21         northern anchovy  1.7962843796
## 246            Pelagic    5          pacific sardine  2.0021416907
## 247      Benthopelagic    1       california corbina  1.9885054944
## 248           Midwater    5                kelp bass  2.4522512610
## 249      Benthopelagic   20            white croaker  1.4376967017
## 250      Benthopelagic    3            rosy rockfish  1.5289892632
## 251      Benthopelagic   21        yellowfin croaker  2.8845665363
## 252      Benthopelagic    1         barred surfperch  2.3987726525
## 253      Benthopelagic   14         barred sand bass  2.1254884714
## 254      Benthopelagic    5       vermilion rockfish  1.7954602864
## 255           Midwater   21                kelp bass  2.0950837519
## 256      Benthopelagic    3           pile surfperch  2.3068268680
## 257      Benthopelagic   19       vermilion rockfish  1.8322412762
## 258            Pelagic    5            chub mackerel  2.2262701305
## 259           Midwater   21                kelp bass  1.9588355776
## 260           Midwater    5                queenfish  2.3384686171
## 261      Benthopelagic   11            white croaker  1.8333780527
## 262            Benthic    1           diamond turbot  1.8876432771
## 263            Benthic   22         hornyhead turbot  2.3989876089
## 264           Midwater    5                kelp bass  2.1637398431
## 265      Benthopelagic   21          spotfin croaker  1.7917770401
## 266            Pelagic    5            chub mackerel  1.6567986340
## 267      Benthopelagic    5       vermilion rockfish  2.3417090651
## 268      Benthopelagic    1         barred surfperch  2.1591570942
## 269      Benthopelagic   11            white croaker  2.2180218720
## 270      Benthopelagic    4         barred sand bass  2.0290620560
## 271      Benthopelagic   17       vermilion rockfish  1.7353054915
## 272      Benthopelagic   11          white surfperch  2.7364093794
## 273      Benthopelagic    8          copper rockfish  2.1119201999
## 274           Midwater   11            kelp rockfish  1.7992763326
## 275      Benthopelagic    5            white croaker  2.4175672854
## 276      Benthopelagic    4         barred surfperch  2.6368922716
## 277      Benthopelagic    4       california corbina  2.6853532939
## 278            Benthic   20       california halibut  2.5804034804
## 279            Benthic    3           diamond turbot  2.0733483376
## 280      Benthopelagic   12         barred sand bass  2.7340511648
## 281           Midwater    1                 halfmoon  1.6845700815
## 282      Benthopelagic   13       vermilion rockfish  2.9209654178
## 283            Pelagic    5        pacific barracuda  2.7904908955
## 284      Benthopelagic    3              black perch  2.7548379749
## 285            Pelagic   21            chub mackerel  2.1750198595
## 286      Benthopelagic   14            white croaker  2.1055622861
## 287      Benthopelagic   24       vermilion rockfish  2.5984393978
## 288      Benthopelagic   20       california corbina  2.1354290092
## 289      Benthopelagic   21         barred sand bass  2.3192492819
## 290      Benthopelagic   11            white croaker  2.1152712264
## 291           Midwater   21                kelp bass  2.3147306285
## 292           Midwater    1         shiner surfperch  2.1594317727
## 293           Midwater    5         shiner surfperch  2.8039649737
## 294      Benthopelagic   11           brown rockfish  2.4398348719
## 295      Benthopelagic    5         barred sand bass  2.6397201714
## 296            Pelagic    5          pacific sardine  1.6615712819
## 297            Benthic   16         hornyhead turbot  2.4629870726
## 298           Midwater    1         shiner surfperch  2.2389025035
## 299      Benthopelagic    5                  opaleye  1.7182489214
## 300      Benthopelagic   20            white croaker  1.5487360713
## 301      Benthopelagic   21            white croaker  2.2744331802
## 302      Benthopelagic   11          spotfin croaker  2.3185011198
## 303            Benthic   22  california scorpionfish  2.4838874550
## 304            Pelagic    5          pacific sardine  2.0408585518
## 305      Benthopelagic    1                  opaleye  2.3381888173
## 306           Midwater    1         shiner surfperch  1.5867297043
## 307      Benthopelagic   11         barred surfperch  2.8118804379
## 308           Midwater   11         shiner surfperch  3.0445683614
## 309      Benthopelagic   12            white croaker  2.1318700392
## 310           Midwater   21                queenfish  2.5217387154
## 311            Benthic    4    shovelnose guitarfish  2.6729179015
## 312      Benthopelagic   21         barred sand bass  3.4395228316
## 313      Benthopelagic   10            white croaker  2.2846735338
## 314      Benthopelagic    1       california corbina  2.0873526066
## 315      Benthopelagic   11            white croaker  2.7218419081
## 316           Midwater   11                kelp bass  2.4594512634
## 317      Benthopelagic    3        spotted sand bass  2.8886433303
## 318      Benthopelagic    3          copper rockfish  2.5150007038
## 319            Pelagic   11            chub mackerel  2.5033063470
## 320            Pelagic    5             market squid  2.1635248802
## 321            Pelagic   11            chub mackerel  2.1266136101
## 322            Pelagic   21            chub mackerel  1.2657461921
## 323            Benthic   22  california scorpionfish  2.1297991087
## 324           Midwater    4         shiner surfperch  2.8272532086
## 325            Benthic   18  california scorpionfish  1.9702704324
## 326      Benthopelagic    5                  opaleye  1.8420344285
## 327           Midwater   21                queenfish  1.4173701615
## 328      Benthopelagic    5          copper rockfish  2.2230038593
## 329      Benthopelagic   11         barred sand bass  2.9613814060
## 330      Benthopelagic   21        spotted sand bass  2.3400996863
## 331      Benthopelagic   22            white croaker  1.9023814901
## 332            Pelagic    5         northern anchovy  1.8042247156
## 333      Benthopelagic   21            leopard shark  2.1819678438
## 334           Midwater   11         shiner surfperch  3.1426459088
## 335      Benthopelagic   21            white croaker  2.6730460508
## 336            Benthic    5       california halibut  2.5509268797
## 337           Midwater   11                kelp bass  3.2697436544
## 338           Midwater   18                kelp bass  2.5789263175
## 339      Benthopelagic    5            white croaker  1.6991220072
## 340      Benthopelagic    1         barred surfperch  2.4973060709
## 341      Benthopelagic   20            white croaker  2.2808799193
## 342      Benthopelagic    4 brown smooth-hound shark  2.4486305193
## 343      Benthopelagic   11         barred sand bass  2.0802559579
## 344            Benthic   15         hornyhead turbot  1.9988531788
## 345            Benthic    5  california scorpionfish  2.1878210136
## 346      Benthopelagic   14       vermilion rockfish  1.4921483059
## 347            Pelagic    5             market squid  1.8715627067
## 348      Benthopelagic    5            black croaker  1.9641290633
## 349      Benthopelagic    1         barred surfperch  2.2155978809
## 350           Midwater    2        walleye surfperch  2.6616671255
## 351      Benthopelagic   16       vermilion rockfish  1.9360369963
## 352            Pelagic    4            chub mackerel  2.2063018331
## 353      Benthopelagic    1        yellowfin croaker  1.8632203197
## 354           Midwater    5                kelp bass  2.0372834316
## 355      Benthopelagic    6          copper rockfish  2.6554246789
## 356            Benthic    9         hornyhead turbot  2.7797330845
## 357      Benthopelagic   13           brown rockfish  3.1094350523
## 358      Benthopelagic    4            white croaker  3.0494841478
## 359      Benthopelagic   21        spotted sand bass  2.1275767237
## 360            Pelagic    6             market squid  2.4495345905
## 361      Benthopelagic   11            white croaker  2.2965425713
## 362      Benthopelagic   16       vermilion rockfish  2.0930333389
## 363            Benthic    5           diamond turbot  2.2499077410
## 364           Midwater    5                kelp bass  1.5609826982
## 365      Benthopelagic    3        rainbow surfperch  3.1616013858
## 366            Benthic   21       california halibut  2.0869015481
## 367      Benthopelagic   21            white croaker  2.1892066411
## 368      Benthopelagic   11          white surfperch  2.4031454001
## 369      Benthopelagic    4        yellowfin croaker  2.5110960441
## 370            Pelagic    5         northern anchovy  1.2468047067
## 371            Pelagic   21         northern anchovy  2.5116247755
## 372      Benthopelagic   21        yellowfin croaker  2.2419588893
## 373      Benthopelagic   13       vermilion rockfish  2.6375682695
## 374      Benthopelagic   11         barred sand bass  1.5827126513
## 375      Benthopelagic    1       california corbina  1.1627388449
## 376      Benthopelagic    5       vermilion rockfish  2.2346313315
## 377           Midwater    1                 halfmoon  1.4257015781
## 378      Benthopelagic   23          starry rockfish  2.0315716107
## 379      Benthopelagic    9          copper rockfish  2.5904299880
## 380      Benthopelagic    5            white croaker  3.0980294726
## 381      Benthopelagic   12         barred sand bass  1.9433003436
## 382      Benthopelagic   23            white croaker  2.3541215330
## 383            Pelagic    5            chub mackerel  2.3942921994
## 384           Midwater    4                kelp bass  2.1283100554
## 385            Pelagic    5         northern anchovy  2.2468230964
## 386      Benthopelagic    1        spotted sand bass  2.6591741755
## 387            Benthic   16         hornyhead turbot  3.3281103135
## 388           Midwater   11                kelp bass  2.5418284266
## 389            Pelagic   21            chub mackerel  2.2984042722
## 390      Benthopelagic    1          ocean whitefish  2.4635520901
## 391      Benthopelagic    1       california corbina  1.5643063284
## 392      Benthopelagic   21        spotted sand bass  2.3860920914
## 393            Pelagic    5          pacific sardine  2.1392025503
## 394      Benthopelagic    4                  opaleye  1.9191964990
## 395            Pelagic    6          pacific sardine  2.1931746521
## 396            Pelagic   11            chub mackerel  1.7187912211
## 397           Midwater   21                kelp bass  1.5277634120
## 398      Benthopelagic    1     california sheephead  2.2883147192
## 399           Midwater   10                kelp bass  2.1570887600
## 400      Benthopelagic   13            white croaker  3.1074794020
## 401            Pelagic    5            chub mackerel  3.6306602510
## 402            Benthic   15         hornyhead turbot  3.4330510715
## 403      Benthopelagic   24          starry rockfish  3.3722212865
## 404      Benthopelagic   14       vermilion rockfish  3.0919796589
## 405      Benthopelagic   22            white croaker  3.4260768446
## 406            Benthic    5    shovelnose guitarfish  3.3632915834
## 407            Benthic   12  california scorpionfish  3.1849923516
## 408      Benthopelagic   11   gray smoothhound shark  3.3866850222
## 409      Benthopelagic    3        rainbow surfperch  3.5793399556
## 410      Benthopelagic    1                  opaleye  3.4155728192
## 411            Pelagic    5             market squid  3.5637659402
## 412            Pelagic    4            chub mackerel  3.5533601623
## 413            Pelagic    5          pacific sardine  3.1813757966
## 414      Benthopelagic   15            white croaker  3.3829130073
## 415            Pelagic    5             market squid  3.3662960764
## 416            Pelagic   21            chub mackerel  3.4335261669
## 417      Benthopelagic   11           brown rockfish  3.4793362191
## 418      Benthopelagic   20        yellowfin croaker  3.3660907093
## 419      Benthopelagic   22         barred sand bass  3.5203187139
## 420            Pelagic    5          pacific sardine  3.5835521304
## 421            Benthic   13         hornyhead turbot  3.6574307365
## 422           Midwater   12                kelp bass  3.3259892524
## 423      Benthopelagic   22            white croaker  3.4668724519
## 424            Pelagic    6             market squid  3.2642447488
## 425            Pelagic    5          pacific sardine  3.2729666849
## 426      Benthopelagic    4       california corbina  3.5423440634
## 427      Benthopelagic   21        spotted sand bass  3.4520346631
## 428      Benthopelagic    6    greenspotted rockfish  3.8643103880
## 429            Pelagic    5             market squid  3.8134636696
## 430      Benthopelagic    4            white croaker  3.3906325799
## 431      Benthopelagic    1       california corbina  3.4849941817
## 432           Midwater    4         shiner surfperch  3.1547226803
## 433      Benthopelagic   23       vermilion rockfish  3.7175518771
## 434      Benthopelagic   20       california corbina  3.5083651874
## 435            Pelagic    5            chub mackerel  3.6855225511
## 436      Benthopelagic   21         barred sand bass  3.3998158535
## 437            Benthic    5  california scorpionfish  3.6622308289
## 438            Pelagic    5             market squid  3.6355401817
## 439      Benthopelagic   21        yellowfin croaker  3.8109615309
## 440            Benthic    5          longfin sanddab  3.2232408695
## 441      Benthopelagic    5       vermilion rockfish  3.3544245289
## 442           Midwater   13     chilipepper rockfish  3.4041056545
## 443      Benthopelagic    4        yellowfin croaker  3.1537421816
## 444      Benthopelagic   21        yellowfin croaker  3.2997047956
## 445      Benthopelagic    1        yellowfin croaker  3.3131447073
## 446      Benthopelagic    3                  opaleye  3.4181403379
## 447      Benthopelagic   11        yellowfin croaker  3.6459463273
## 448            Benthic   15         hornyhead turbot  3.1637843207
## 449           Midwater    3         shiner surfperch  3.4693085661
## 450      Benthopelagic    3        spotted sand bass  3.3057137962
## 451            Benthic   13         hornyhead turbot  3.3246672145
## 452      Benthopelagic    7       vermilion rockfish  3.4040952589
## 453           Midwater    3                kelp bass  3.4511010842
## 454      Benthopelagic   22       vermilion rockfish  3.2497026815
## 455      Benthopelagic   11          gopher rockfish  3.5832321177
## 456      Benthopelagic    4         barred sand bass  3.3321592509
## 457      Benthopelagic    5         barred sand bass  3.5430312837
## 458           Midwater   10                kelp bass  3.2679001539
## 459            Benthic    4    california lizardfish  3.5922812496
## 460      Benthopelagic    8            white croaker  3.6023695431
## 461           Midwater   11         shiner surfperch  3.5316337058
## 462      Benthopelagic    1     california sheephead  3.1065770244
## 463      Benthopelagic    5            white croaker  3.4831695837
## 464      Benthopelagic   11            white croaker  3.7580552657
## 465            Benthic    1           diamond turbot  3.4686737247
## 466      Benthopelagic    6       vermilion rockfish  3.5387917617
## 467            Pelagic   21            chub mackerel  3.3575435167
## 468           Midwater    4           striped mullet  3.1340224049
## 469            Benthic   19  california scorpionfish  3.3556238146
## 470           Midwater    1         shiner surfperch  3.0919969691
## 471      Benthopelagic   11         barred surfperch  2.9787384564
## 472      Benthopelagic   11        spotted sand bass  3.2777971296
## 473            Pelagic    5            chub mackerel  3.4960069469
## 474            Pelagic    5            chub mackerel  3.2909260697
## 475      Benthopelagic   11            white croaker  3.6680235712
## 476      Benthopelagic    5           brown rockfish  3.2132686852
## 477           Midwater    4           striped mullet  3.5245659325
## 478           Midwater   21                kelp bass  2.9935538357
## 479      Benthopelagic   21        yellowfin croaker  3.3663031707
## 480      Benthopelagic    1         barred surfperch  3.3077219276
## 481      Benthopelagic   14          starry rockfish  3.2176386188
## 482      Benthopelagic   11 brown smooth-hound shark  3.8443970155
## 483      Benthopelagic   11           brown rockfish  3.3575138732
## 484           Midwater    1        walleye surfperch  3.1670884611
## 485      Benthopelagic   20              black perch  3.2952396697
## 486            Benthic   10  california scorpionfish  3.4418314496
## 487           Midwater   22                kelp bass  3.4074124601
## 488      Benthopelagic    1        rainbow surfperch  3.4759260468
## 489           Midwater   24      squarespot rockfish  3.4216178728
## 490      Benthopelagic   21        yellowfin croaker  3.3056138192
## 491      Benthopelagic   11       vermilion rockfish  3.4871484430
## 492      Benthopelagic   11         barred sand bass  3.5704045163
## 493            Benthic   22  california scorpionfish  3.6512101893
## 494      Benthopelagic    1                  opaleye  3.2342583267
## 495      Benthopelagic   21          white surfperch  3.3682966483
## 496           Midwater    4           striped mullet  3.5011028689
## 497            Pelagic   21            chub mackerel  3.5032644442
## 498      Benthopelagic   22       vermilion rockfish  3.4101659826
## 499      Benthopelagic   13            white croaker  3.4772566774
## 500            Benthic    8  california scorpionfish  3.3462317034
## 501      Benthopelagic    5       vermilion rockfish  3.3704732628
## 502      Benthopelagic    3        rainbow surfperch  3.1623676391
## 503      Benthopelagic    9   greenblotched rockfish  3.4750022466
## 504            Pelagic   21            chub mackerel  3.1847564793
## 505      Benthopelagic    5            white croaker  3.2400913565
## 506            Pelagic   21            chub mackerel  3.3438694657
## 507            Pelagic    5          pacific sardine  3.3929386795
## 508           Midwater   12                kelp bass  3.3959991151
## 509      Benthopelagic   11         barred sand bass  3.1963053463
## 510            Benthic    8         hornyhead turbot  3.5778010910
## 511            Benthic    4           spotted turbot  3.4269642287
## 512            Benthic    5  california scorpionfish  3.3003012384
## 513           Midwater   21                kelp bass  3.4229136575
## 514      Benthopelagic    1       california corbina  3.1252858415
## 515            Pelagic   21            chub mackerel  3.1030171774
## 516            Benthic    3           diamond turbot  3.4212710455
## 517            Pelagic   11            chub mackerel  3.2498106404
## 518      Benthopelagic    9   greenblotched rockfish  3.3291143809
## 519      Benthopelagic    5            white croaker  3.2961467351
## 520      Benthopelagic    4        yellowfin croaker  3.0509051642
## 521           Midwater    7      squarespot rockfish  3.7954395657
## 522      Benthopelagic   15        speckled rockfish  3.3822388062
## 523      Benthopelagic   11          white surfperch  3.4205917487
## 524      Benthopelagic   13       vermilion rockfish  3.5250058825
## 525      Benthopelagic    2        spotted sand bass  3.5273631062
## 526      Benthopelagic   15       vermilion rockfish  3.3199982885
## 527      Benthopelagic   13            white croaker  3.2588823263
## 528      Benthopelagic    1              black perch  3.4117284592
## 529      Benthopelagic    8         barred sand bass  3.4956817348
## 530            Pelagic   11            chub mackerel  3.7430522805
## 531            Pelagic    6             market squid  3.4886780175
## 532      Benthopelagic   10            white croaker  3.7362212547
## 533            Benthic    4           spotted turbot  3.4498102744
## 534           Midwater   11                kelp bass  3.4611799762
## 535      Benthopelagic    1              black perch  3.5599916735
## 536      Benthopelagic   21            white croaker  3.6208591407
## 537      Benthopelagic   20       california corbina  3.5813098259
## 538      Benthopelagic   11              black perch  3.3669456356
## 539            Pelagic   21            chub mackerel  3.6100639522
## 540      Benthopelagic    1        yellowfin croaker  3.8676099972
## 541      Benthopelagic   10           brown rockfish  3.8051124469
## 542            Pelagic   11            chub mackerel  3.4883572164
## 543      Benthopelagic   11          gopher rockfish  3.0001660027
## 544      Benthopelagic   21        spotted sand bass  3.5101553141
## 545      Benthopelagic   23       vermilion rockfish  3.2540782798
## 546            Pelagic    5            chub mackerel  3.0221430351
## 547           Midwater    3         shiner surfperch  3.5957407322
## 548           Midwater   11         shiner surfperch  3.3468255658
## 549      Benthopelagic   20         barred surfperch  3.2093577045
## 550      Benthopelagic    3         barred surfperch  3.5041967483
## 551      Benthopelagic   21        yellowfin croaker  3.3814856887
## 552      Benthopelagic    5       california corbina  3.3364116441
## 553      Benthopelagic    5            white croaker  3.0843677849
## 554            Pelagic    5             market squid  3.4570509761
## 555      Benthopelagic   17            white croaker  3.7451243436
## 556      Benthopelagic   20         barred sand bass  3.6959264731
## 557      Benthopelagic    3              black perch  3.3531743968
## 558      Benthopelagic   11            white croaker  3.5610580334
## 559      Benthopelagic    5                  opaleye  3.5948166534
## 560      Benthopelagic    5            white croaker  3.3906685403
## 561           Midwater   21                kelp bass  3.0429023294
## 562      Benthopelagic   23       vermilion rockfish  3.7506063207
## 563      Benthopelagic    4       california corbina  3.3381727101
## 564      Benthopelagic   11              black perch  3.4803352709
## 565      Benthopelagic    5                  opaleye  3.2552892411
## 566      Benthopelagic    5            white croaker  3.3069117784
## 567      Benthopelagic   11        spotted sand bass  3.4820528495
## 568            Pelagic   21            chub mackerel  3.2896660141
## 569            Pelagic    5         northern anchovy  3.5227095096
## 570      Benthopelagic    3        spotted sand bass  3.5045707461
## 571      Benthopelagic   20           pile surfperch  3.1397328311
## 572            Pelagic    5         northern anchovy  3.6752180192
## 573            Benthic   11         hornyhead turbot  3.3457769335
## 574      Benthopelagic   11            black croaker  3.0715678533
## 575      Benthopelagic    1          white surfperch  3.7089971059
## 576      Benthopelagic   11         barred sand bass  3.3306988755
## 577      Benthopelagic   14            white croaker  2.9356184377
## 578      Benthopelagic    3       california corbina  3.4598533386
## 579            Pelagic    5            chub mackerel  3.2204628149
## 580      Benthopelagic   12            white croaker  3.4810512606
## 581      Benthopelagic    1        yellowfin croaker  3.4021104019
## 582      Benthopelagic   22          starry rockfish  3.6322516737
## 583      Benthopelagic    5                  opaleye  3.2881278854
## 584            Pelagic   11            chub mackerel  3.3679337864
## 585      Benthopelagic   22            white croaker  3.4478491849
## 586      Benthopelagic   17        speckled rockfish  3.2212283614
## 587      Benthopelagic   11         barred sand bass  3.0795552373
## 588      Benthopelagic   21        spotted sand bass  3.4057021591
## 589      Benthopelagic    1        spotted sand bass  3.4543578600
## 590      Benthopelagic    4           pile surfperch  3.4835934571
## 591      Benthopelagic    5                  opaleye  3.5634527658
## 592           Midwater    2                kelp bass  3.4962856392
## 593      Benthopelagic   10              black perch  3.3814409193
## 594            Pelagic    5          pacific sardine  3.1130524250
## 595           Midwater    1         shiner surfperch  3.4106017573
## 596      Benthopelagic    1         barred surfperch  3.5552755206
## 597      Benthopelagic    2            white croaker  3.4303105860
## 598      Benthopelagic    1            white croaker  3.3081876069
## 599      Benthopelagic    5         barred sand bass  3.0484926467
## 600      Benthopelagic   24       vermilion rockfish  3.4990429873
## 601           Midwater    3          canary rockfish  3.2600913685
## 602      Benthopelagic   18            white croaker  3.3580154668
## 603      Benthopelagic    7           brown rockfish  3.0337265247
## 604           Midwater    5                queenfish  3.7007797453
## 605            Benthic    1           diamond turbot  3.6601798084
## 606      Benthopelagic    1            white croaker  3.6490706670
## 607            Pelagic    5             market squid  3.5289184819
## 608            Pelagic    5             market squid  3.3306709108
## 609      Benthopelagic    3        spotted sand bass  3.3997954711
## 610            Pelagic    5             market squid  3.5585020063
## 611           Midwater   11                kelp bass  3.4777734759
## 612            Benthic    5       california halibut  3.1116999886
## 613            Benthic   19         hornyhead turbot  3.4312140116
## 614            Pelagic    5         northern anchovy  3.2945505884
## 615           Midwater   21                kelp bass  3.1365318956
## 616            Pelagic   21            chub mackerel  2.9723944736
## 617           Midwater    1                queenfish  3.5259168211
## 618      Benthopelagic    3        spotted sand bass  3.6447765929
## 619      Benthopelagic   14    greenspotted rockfish  3.3977640439
## 620      Benthopelagic    5            white croaker  3.8012237556
## 621      Benthopelagic   10   greenblotched rockfish  3.3061801608
## 622      Benthopelagic    5                  opaleye  3.6569134384
## 623      Benthopelagic    1            white croaker  3.4011219851
## 624            Pelagic    5          pacific sardine  3.3705640418
## 625           Midwater    1            blue rockfish  3.1265472000
## 626           Midwater   21                kelp bass  3.3859683563
## 627      Benthopelagic    3         barred sand bass  3.7877413312
## 628            Pelagic   21            chub mackerel  3.5381775045
## 629      Benthopelagic    4                  opaleye  3.3305770045
## 630      Benthopelagic    1     california sheephead  3.3962900642
## 631      Benthopelagic   11              black perch  3.4916893248
## 632      Benthopelagic    1        yellowfin croaker  3.1837040570
## 633      Benthopelagic   18              black perch  3.3039960977
## 634      Benthopelagic    1        yellowfin croaker  3.3981897138
## 635      Benthopelagic   21        spotted sand bass  3.3971043895
## 636      Benthopelagic    5                  opaleye  3.3589389872
## 637      Benthopelagic   12       vermilion rockfish  3.5603985673
## 638      Benthopelagic   18       vermilion rockfish  3.1841752875
## 639      Benthopelagic    3              black perch  3.6413474036
## 640           Midwater    3                kelp bass  3.4414868566
## 641      Benthopelagic   12            white croaker  3.3352512679
## 642           Midwater   21                kelp bass  3.3186860754
## 643           Midwater    4         shiner surfperch  3.6202546771
## 644      Benthopelagic   11          gopher rockfish  3.6971337045
## 645      Benthopelagic    3       vermilion rockfish  3.3535648947
## 646      Benthopelagic   14         barred sand bass  3.1977140663
## 647           Midwater   21                kelp bass  3.2725972216
## 648           Midwater    1                queenfish  3.5692545152
## 649      Benthopelagic   22          starry rockfish  3.3596941138
## 650      Benthopelagic   20            white croaker  3.1061249787
## 651      Benthopelagic    4       california corbina  3.3128204119
## 652      Benthopelagic    8              black perch  3.4795274955
## 653            Benthic   20         hornyhead turbot  3.4502473506
## 654           Midwater   21                kelp bass  3.9202490345
## 655      Benthopelagic    4              black perch  3.2334712258
## 656      Benthopelagic    4            white croaker  3.4426953877
## 657      Benthopelagic    4              black perch  3.5496342559
## 658      Benthopelagic   21        yellowfin croaker  3.5808489444
## 659      Benthopelagic    1                  opaleye  3.4445798799
## 660            Benthic   21         hornyhead turbot  3.6778610958
## 661      Benthopelagic    4         barred surfperch  3.5100342980
## 662           Midwater   11                kelp bass  3.1569987466
## 663            Pelagic    5             market squid  3.1059125176
## 664            Benthic    1           diamond turbot  3.6572316221
## 665      Benthopelagic    1            white croaker  3.2573513570
## 666      Benthopelagic    4              black perch  3.4689351086
## 667            Pelagic    6             market squid  3.3200874841
## 668      Benthopelagic   11            white croaker  3.1255360485
## 669      Benthopelagic    9            white croaker  3.2875522291
## 670            Pelagic   21         northern anchovy  3.3123406672
## 671      Benthopelagic   11           brown rockfish  3.4697666118
## 672      Benthopelagic   11          ocean whitefish  3.4451554367
## 673            Benthic   17         hornyhead turbot  3.6619455336
## 674            Benthic   11  california scorpionfish  3.5710108505
## 675            Benthic   20           diamond turbot  3.7314124901
## 676      Benthopelagic    4        spotted sand bass  3.3473151769
## 677           Midwater   11           olive rockfish  3.4307292844
## 678      Benthopelagic    1              black perch  2.9427665144
## 679      Benthopelagic    5            white croaker  3.7732710978
## 680            Pelagic    5         northern anchovy  3.4591432403
## 681      Benthopelagic   11        yellowfin croaker  3.3918734562
## 682           Midwater   16                kelp bass  3.2822742248
## 683      Benthopelagic   11            white croaker  3.2444282193
## 684      Benthopelagic   11              black perch  3.6386984726
## 685           Midwater   18                kelp bass  3.5112627976
## 686      Benthopelagic    3              black perch  3.1205421174
## 687           Midwater    1                kelp bass  3.4278347130
## 688      Benthopelagic   15            white croaker  3.4150092086
## 689      Benthopelagic   22         barred sand bass  3.4627609874
## 690      Benthopelagic    1            white croaker  3.3654290854
## 691      Benthopelagic   21        yellowfin croaker  3.3521912411
## 692            Benthic    5  california scorpionfish  3.1013636463
## 693            Pelagic   21            chub mackerel  3.2382679449
## 694            Benthic    1           spotted turbot  3.0983105596
## 695      Benthopelagic   11          gopher rockfish  3.0949312895
## 696      Benthopelagic    1            white croaker  3.4350087508
## 697      Benthopelagic    5       california corbina  3.5012676140
## 698      Benthopelagic    1              black perch  3.6651877923
## 699      Benthopelagic   11          spotfin croaker  3.5251125960
## 700      Benthopelagic    8          copper rockfish  3.2393821253
## 701      Benthopelagic    4        yellowfin croaker  3.5399978492
## 702      Benthopelagic   12            white croaker  3.3557492768
## 703           Midwater    8      yellowtail rockfish  3.5900064647
## 704           Midwater    3                kelp bass  3.1533744457
## 705      Benthopelagic    5          spotfin croaker  3.4313982990
## 706            Pelagic    5          pacific sardine  3.5069063589
## 707            Benthic    5  california scorpionfish  3.5592531127
## 708      Benthopelagic    3         barred surfperch  3.4168852587
## 709            Pelagic    6          pacific sardine  3.0532415473
## 710      Benthopelagic   11       vermilion rockfish  3.4062980503
## 711            Pelagic    5         northern anchovy  3.4150918750
## 712            Pelagic   11            chub mackerel  3.6393799774
## 713            Pelagic   21            chub mackerel  3.0793703232
## 714           Midwater    5                top smelt  3.1821821985
## 715           Midwater    2                queenfish  3.2920847716
## 716      Benthopelagic    4            white croaker  3.5585817050
## 717      Benthopelagic   18              black perch  3.5323072209
## 718           Midwater   21                kelp bass  3.3364190171
## 719      Benthopelagic    4          copper rockfish  3.5593256350
## 720      Benthopelagic   20              black perch  3.2825211329
## 721            Benthic    1         speckled sanddab  3.5855380731
## 722      Benthopelagic   18            white croaker  3.4392071253
## 723      Benthopelagic   11         barred sand bass  3.6820140207
## 724      Benthopelagic   11          spotfin croaker  3.3421301007
## 725            Pelagic   11            chub mackerel  3.6425168316
## 726            Pelagic    5            chub mackerel  3.4765767278
## 727            Benthic   18         hornyhead turbot  3.4534780311
## 728            Benthic   12  california scorpionfish  3.5797199562
## 729            Benthic    1             fantail sole  3.3414702567
## 730           Midwater   21                kelp bass  3.0305073352
## 731      Benthopelagic    3          white surfperch  3.6120862896
## 732      Benthopelagic   13       vermilion rockfish  3.1888654192
## 733      Benthopelagic   18            white croaker  2.9922593659
## 734           Midwater    1         shiner surfperch  3.1806245398
## 735      Benthopelagic   14            white croaker  3.3668992989
## 736           Midwater   11                kelp bass  3.6006182172
## 737            Benthic    5         speckled sanddab  3.2936091313
## 738            Benthic   17  california scorpionfish  3.3267406226
## 739      Benthopelagic   21       california corbina  3.4658608024
## 740            Benthic   11  california scorpionfish  3.6537198011
## 741            Benthic   17         hornyhead turbot  3.5302026728
## 742      Benthopelagic   12              black perch  3.7184763778
## 743      Benthopelagic    1            white croaker  3.5038880886
## 744      Benthopelagic    5       california corbina  3.5112452964
## 745      Benthopelagic    4              black perch  3.2983491738
## 746      Benthopelagic    5            white croaker  3.6656650787
## 747      Benthopelagic    1            white croaker  3.4872112806
## 748            Benthic   14         hornyhead turbot  3.2932940645
## 749            Benthic    4    shovelnose guitarfish  3.6826175246
## 750           Midwater    1        walleye surfperch  3.3514845192
## 751           Midwater   18                kelp bass  3.4695979205
## 752      Benthopelagic    5            white croaker  3.5405684709
## 753      Benthopelagic    5         barred sand bass  3.2417647261
## 754           Midwater    2                kelp bass  3.7712096539
## 755      Benthopelagic   21         barred sand bass  3.3997463899
## 756      Benthopelagic   12       vermilion rockfish  3.2951419809
## 757      Benthopelagic    2       quillback rockfish  3.4277665498
## 758      Benthopelagic   21            white croaker  3.5273901005
## 759      Benthopelagic   16       vermilion rockfish  3.4695416145
## 760      Benthopelagic    3              black perch  3.2917723849
## 761            Benthic    8  california scorpionfish  3.6361886846
## 762            Pelagic    5          pacific sardine  3.2046879210
## 763            Benthic    5  california scorpionfish  3.4015256585
## 764      Benthopelagic    8          copper rockfish  3.4000837206
## 765            Pelagic    5          pacific sardine  3.4448672096
## 766      Benthopelagic    2            white croaker  3.4801202052
## 767      Benthopelagic    1            white croaker  3.2808387717
## 768      Benthopelagic   21            leopard shark  3.2579221906
## 769      Benthopelagic   14              black perch  3.4609485175
## 770      Benthopelagic   16       vermilion rockfish  3.2333098022
## 771      Benthopelagic   10       vermilion rockfish  3.6878040797
## 772           Midwater   21                kelp bass  3.2318935138
## 773      Benthopelagic    1            rosy rockfish  3.3364713490
## 774           Midwater    3         shiner surfperch  3.1433678566
## 775      Benthopelagic   11            white croaker  3.1354961096
## 776      Benthopelagic    1         barred surfperch  3.4280779132
## 777           Midwater    1         shiner surfperch  3.2175173346
## 778            Pelagic   21            chub mackerel  3.1097519923
## 779      Benthopelagic   16       vermilion rockfish  3.6109742496
## 780      Benthopelagic    7        speckled rockfish  3.0362647904
## 781           Midwater    4         shiner surfperch  3.5270868468
## 782      Benthopelagic   11       vermilion rockfish  3.5641948357
## 783            Pelagic    5            chub mackerel  3.5894105625
## 784           Midwater   14                kelp bass  3.6306387558
## 785      Benthopelagic    3              black perch  3.3204155998
## 786      Benthopelagic    5            black croaker  3.0715397918
## 787           Midwater    5                top smelt  3.0664920104
## 788           Midwater   11                top smelt  3.3394781172
## 789            Benthic   10         hornyhead turbot  3.4748915560
## 790            Pelagic    5             market squid  3.8339989025
## 791      Benthopelagic   12              black perch  3.7555099997
## 792      Benthopelagic    1       california corbina  3.3947599459
## 793      Benthopelagic    3         barred surfperch  3.3999416870
## 794      Benthopelagic   19       vermilion rockfish  3.1061134935
## 795      Benthopelagic   15        speckled rockfish  3.6540091214
## 796            Pelagic    5          pacific sardine  3.4630127281
## 797      Benthopelagic    4         barred surfperch  3.5231744385
## 798      Benthopelagic   11              black perch  3.0744511557
## 799           Midwater   11                kelp bass  3.4632381964
## 800      Benthopelagic   11         barred surfperch  3.3530983946
## 801            Pelagic    5         northern anchovy  4.3153211360
## 802            Pelagic    5          pacific sardine  4.0608127956
## 803      Benthopelagic   11            white croaker  4.0111251346
## 804      Benthopelagic   19            white croaker  4.0136788405
## 805      Benthopelagic    3              black perch  4.0434365128
## 806      Benthopelagic   19       vermilion rockfish  4.1175158663
## 807      Benthopelagic   12           brown rockfish  3.8330415267
## 808      Benthopelagic    6          copper rockfish  4.1641125006
## 809            Pelagic    5             market squid  4.1691256493
## 810      Benthopelagic   22              black perch  4.0806897407
## 811            Benthic   20       california halibut  4.3219262634
## 812      Benthopelagic    2        spotted sand bass  3.9751352664
## 813            Benthic    1           diamond turbot  4.0409765239
## 814            Benthic   23         hornyhead turbot  4.1960061180
## 815      Benthopelagic    5         barred sand bass  4.0939964782
## 816            Benthic    4    california lizardfish  4.0186827201
## 817      Benthopelagic   11 brown smooth-hound shark  4.1133466243
## 818      Benthopelagic   21            white croaker  4.2193582124
## 819      Benthopelagic    4            flag rockfish  4.1051877977
## 820            Benthic   12         hornyhead turbot  4.0106195514
## 821            Benthic    4    shovelnose guitarfish  4.1265698403
## 822      Benthopelagic   14            white croaker  4.3068871699
## 823      Benthopelagic    5     california sheephead  4.1141414390
## 824            Pelagic    5         northern anchovy  4.0729679035
## 825      Benthopelagic   20       vermilion rockfish  4.0851757295
## 826      Benthopelagic    2         barred surfperch  3.9337682818
## 827           Midwater   17      squarespot rockfish  4.2018268092
## 828      Benthopelagic   18       vermilion rockfish  4.0541613850
## 829      Benthopelagic   11            white croaker  3.8332358874
## 830      Benthopelagic    4         barred sand bass  4.0727373398
## 831           Midwater    4                top smelt  4.0946858132
## 832            Benthic   17         hornyhead turbot  4.0601114721
## 833      Benthopelagic   11            white croaker  3.8963823861
## 834      Benthopelagic   11         barred surfperch  4.2784184008
## 835            Pelagic    5             market squid  4.1439057339
## 836            Benthic   19  california scorpionfish  4.1027217170
## 837            Pelagic    5             market squid  4.1243599092
## 838      Benthopelagic   10         barred sand bass  4.0953606265
## 839            Pelagic   11            chub mackerel  4.0762962765
## 840      Benthopelagic   11              black perch  4.2448688568
## 841      Benthopelagic   22              black perch  3.9544857181
## 842      Benthopelagic   12            white croaker  4.0630907804
## 843            Benthic    5    shovelnose guitarfish  4.0713794103
## 844      Benthopelagic   20       california corbina  4.0734727475
## 845      Benthopelagic    5                  opaleye  4.2791153252
## 846      Benthopelagic   16       vermilion rockfish  3.9108540939
## 847      Benthopelagic    1        spotted sand bass  4.1497337354
## 848      Benthopelagic    3        rainbow surfperch  3.9814360019
## 849      Benthopelagic   17            white croaker  4.0605567201
## 850            Benthic   22  california scorpionfish  4.1657289300
## 851           Midwater   21                kelp bass  4.1055074662
## 852            Pelagic    5             market squid  4.0943464465
## 853      Benthopelagic   21            white croaker  3.8871773320
## 854      Benthopelagic    1        rainbow surfperch  4.1417764919
## 855      Benthopelagic    4       california corbina  4.1370789857
## 856            Pelagic   21            chub mackerel  4.0502695437
## 857      Benthopelagic   20            white croaker  4.1757005896
## 858            Pelagic    6          pacific sardine  3.8713846501
## 859           Midwater    4           striped mullet  4.0685456394
## 860            Pelagic   21            chub mackerel  3.8866954459
## 861            Benthic    1         speckled sanddab  4.2155604711
## 862      Benthopelagic   11            white croaker  4.1281317040
## 863            Benthic    8         hornyhead turbot  4.0724259103
## 864           Midwater    4         shiner surfperch  3.9443324752
## 865      Benthopelagic   10       vermilion rockfish  3.9848393975
## 866      Benthopelagic    1        rainbow surfperch  4.2431073524
## 867           Midwater   11         shiner surfperch  4.0837349939
## 868      Benthopelagic    5            leopard shark  4.0274142229
## 869            Pelagic   21            chub mackerel  4.0015256017
## 870      Benthopelagic   11              black perch  4.0293180527
## 871           Midwater    4         shiner surfperch  4.1448700796
## 872      Benthopelagic   14              black perch  4.0695763598
## 873           Midwater   11                kelp bass  4.0685640357
## 874      Benthopelagic   18            white croaker  4.0607157287
## 875           Midwater    4                top smelt  3.9726686931
## 876      Benthopelagic    5   gray smoothhound shark  4.3242191299
## 877      Benthopelagic   23            white croaker  4.1217531796
## 878            Pelagic   21           slough anchovy  4.0042296905
## 879           Midwater    1                queenfish  4.1014827673
## 880      Benthopelagic   21            white croaker  4.0905951612
## 881           Midwater    1                kelp bass  4.1296734031
## 882      Benthopelagic   24       vermilion rockfish  3.9640675461
## 883            Pelagic   21            chub mackerel  4.1777709698
## 884            Pelagic    5          pacific sardine  3.9346416853
## 885      Benthopelagic    4       california corbina  4.0565751729
## 886      Benthopelagic    3       california corbina  3.9858752010
## 887      Benthopelagic   16              black perch  4.0610347755
## 888            Pelagic    5          pacific sardine  4.0740505705
## 889            Pelagic   21            chub mackerel  3.9802291409
## 890      Benthopelagic   21         barred sand bass  4.0398749009
## 891            Pelagic    6          pacific sardine  4.1320068880
## 892      Benthopelagic    5        yellowfin croaker  4.1235984339
## 893            Benthic    1  california scorpionfish  4.2361660566
## 894           Midwater    4         shiner surfperch  4.1114567812
## 895            Benthic    5  california scorpionfish  4.1010562760
## 896      Benthopelagic    5       california corbina  4.0812219369
## 897            Benthic   19         hornyhead turbot  4.3084645617
## 898      Benthopelagic    2              black perch  4.1201874507
## 899      Benthopelagic   21        spotted sand bass  4.1424647102
## 900      Benthopelagic    7       vermilion rockfish  4.0918683263
## 901      Benthopelagic    3              black perch  4.0143372699
## 902            Pelagic   11            chub mackerel  4.1517168748
## 903      Benthopelagic   22            white croaker  4.4248683913
## 904           Midwater    2         shiner surfperch  4.3412839393
## 905      Benthopelagic   11   gray smoothhound shark  4.0414326869
## 906      Benthopelagic   19            white croaker  4.0395849594
## 907      Benthopelagic   11            white croaker  4.1996147535
## 908      Benthopelagic    5            white croaker  4.1318370114
## 909      Benthopelagic   21          white surfperch  4.1804005032
## 910           Midwater    5                 halfmoon  4.0822892077
## 911           Midwater   10                kelp bass  4.0364245669
## 912           Midwater    1                kelp bass  4.3879442839
## 913           Midwater    3         shiner surfperch  3.9334515022
## 914      Benthopelagic   10            white croaker  4.1960619701
## 915           Midwater    5                queenfish  3.9959244719
## 916      Benthopelagic    1            white croaker  4.1470410089
## 917      Benthopelagic    4              black perch  4.1243895020
## 918      Benthopelagic    1         barred sand bass  4.0329551569
## 919           Midwater    5                kelp bass  4.0632415997
## 920            Pelagic    5          pacific sardine  4.0689352412
## 921      Benthopelagic   21         barred sand bass  3.8729889218
## 922      Benthopelagic    4           pile surfperch  4.1253433004
## 923           Midwater   14                kelp bass  4.1809863712
## 924      Benthopelagic   16          copper rockfish  4.0345653241
## 925      Benthopelagic    3        spotted sand bass  3.8485635128
## 926           Midwater   16                kelp bass  4.1679943959
## 927           Midwater    4                kelp bass  3.8673594459
## 928      Benthopelagic   14              black perch  4.1942567573
## 929            Pelagic    6          pacific sardine  4.0253265176
## 930      Benthopelagic   11              black perch  4.0215694951
## 931      Benthopelagic    4           pile surfperch  3.8831543201
## 932      Benthopelagic    5        yellowfin croaker  4.0977487064
## 933            Benthic   14         hornyhead turbot  4.1037938628
## 934            Pelagic    5          pacific sardine  3.8380890508
## 935            Pelagic   21            chub mackerel  4.1903917993
## 936           Midwater   21                kelp bass  4.1043977068
## 937      Benthopelagic   10              black perch  4.0955259769
## 938           Midwater   21                kelp bass  3.9979469840
## 939            Pelagic    5          pacific sardine  4.1447561247
## 940           Midwater    3         shiner surfperch  4.1871124043
## 941      Benthopelagic    8         barred sand bass  4.1103701737
## 942      Benthopelagic   11         barred sand bass  4.3050166360
## 943           Midwater    1        walleye surfperch  4.0517350459
## 944            Benthic   20  california scorpionfish  4.0383236144
## 945            Benthic   23         hornyhead turbot  4.1596648514
## 946            Benthic   19  california scorpionfish  4.0664764114
## 947      Benthopelagic   12           brown rockfish  4.0777074125
## 948      Benthopelagic   11          white surfperch  3.9277848134
## 949      Benthopelagic    5       california corbina  4.0204599488
## 950      Benthopelagic    4              black perch  3.9474593552
## 951      Benthopelagic    5            white croaker  4.0959488638
## 952      Benthopelagic    3        spotted sand bass  3.9797556436
## 953      Benthopelagic   20            white croaker  4.0893576779
## 954           Midwater    1         shiner surfperch  3.7128693997
## 955            Benthic   20         hornyhead turbot  4.2883709031
## 956            Benthic    1           spotted turbot  4.2062276498
## 957            Benthic   23         hornyhead turbot  4.1347739119
## 958      Benthopelagic   14       vermilion rockfish  3.9835637057
## 959            Pelagic    5             market squid  4.0160391642
## 960      Benthopelagic    8            white croaker  4.0813122285
## 961            Pelagic    5             market squid  3.9081960572
## 962      Benthopelagic    5       vermilion rockfish  3.9686133512
## 963      Benthopelagic   11            white croaker  4.3471867860
## 964            Benthic    3           diamond turbot  4.0995776784
## 965            Pelagic   21         northern anchovy  3.8279163974
## 966            Benthic    8         hornyhead turbot  4.2004517631
## 967      Benthopelagic    4         barred sand bass  3.9690563078
## 968           Midwater    3                jacksmelt  4.1849598777
## 969           Midwater   21                kelp bass  4.1769494882
## 970      Benthopelagic   11        yellowfin croaker  4.1897588630
## 971           Midwater    8                kelp bass  4.0165700305
## 972      Benthopelagic    9       vermilion rockfish  3.9806679465
## 973           Midwater   21                kelp bass  4.0095876067
## 974      Benthopelagic    1         barred surfperch  3.9470789610
## 975           Midwater   11                top smelt  4.1777110014
## 976      Benthopelagic    5            white croaker  4.0522606457
## 977      Benthopelagic    4         barred surfperch  4.1424547350
## 978      Benthopelagic   21        yellowfin croaker  4.3275738105
## 979      Benthopelagic    5         barred sand bass  4.0719338812
## 980            Pelagic   21            chub mackerel  4.1225063788
## 981           Midwater   21                kelp bass  3.9678557688
## 982      Benthopelagic    8            white croaker  4.2285487194
## 983            Pelagic   21            chub mackerel  4.0749387812
## 984      Benthopelagic   16        speckled rockfish  3.9923267355
## 985      Benthopelagic    5         barred sand bass  3.9607033258
## 986            Pelagic   21           slough anchovy  4.2364856364
## 987      Benthopelagic   11            rosy rockfish  4.1748326589
## 988            Benthic    4           diamond turbot  4.1214030169
## 989            Benthic   16  california scorpionfish  4.0980997020
## 990      Benthopelagic   20       vermilion rockfish  4.1706358028
## 991           Midwater   20                kelp bass  4.1304779841
## 992           Midwater   21                kelp bass  4.3617733540
## 993            Benthic   13         hornyhead turbot  4.0443159742
## 994            Pelagic   21            chub mackerel  4.0654009620
## 995      Benthopelagic   14       vermilion rockfish  4.1611872015
## 996           Midwater    5                kelp bass  4.0764377774
## 997            Benthic   10  california scorpionfish  4.0693887638
## 998      Benthopelagic    5         barred sand bass  4.2554401935
## 999           Midwater    4                kelp bass  4.0499853970
## 1000     Benthopelagic    1        yellowfin croaker  4.1100029792
## 1001     Benthopelagic   10           brown rockfish  4.3425219449
## 1002           Benthic    5          longfin sanddab  4.1072744567
## 1003     Benthopelagic    3        yellowfin croaker  3.9520737923
## 1004     Benthopelagic   11            white croaker  4.0240394981
## 1005          Midwater   20                kelp bass  4.1640456808
## 1006           Benthic    5       california halibut  3.9208766342
## 1007           Pelagic    5          pacific sardine  4.1479802530
## 1008          Midwater   21                kelp bass  4.0945507560
## 1009     Benthopelagic    8            white croaker  4.1111619021
## 1010     Benthopelagic    3       california corbina  4.2050847007
## 1011     Benthopelagic    4        spotted sand bass  4.2082302494
## 1012           Benthic   10  california scorpionfish  3.9163677675
## 1013           Benthic    5  california scorpionfish  4.1963920630
## 1014          Midwater   11                top smelt  4.0141175621
## 1015     Benthopelagic   17            white croaker  4.0733375461
## 1016     Benthopelagic    5            white croaker  4.2701054020
## 1017           Pelagic   21         northern anchovy  4.0131459415
## 1018           Pelagic    5          pacific sardine  4.0554275118
## 1019     Benthopelagic    1       california corbina  4.0560952763
## 1020          Midwater    5                kelp bass  3.8178552414
## 1021     Benthopelagic   20            white croaker  4.0635498858
## 1022     Benthopelagic    3            rosy rockfish  4.1731243683
## 1023     Benthopelagic   21        yellowfin croaker  4.3771625533
## 1024     Benthopelagic    1         barred surfperch  4.4447239524
## 1025     Benthopelagic   14         barred sand bass  4.2739619489
## 1026     Benthopelagic    5       vermilion rockfish  4.0942123777
## 1027          Midwater   21                kelp bass  3.9954208535
## 1028     Benthopelagic    3           pile surfperch  4.0851931905
## 1029     Benthopelagic   19       vermilion rockfish  4.0754180711
## 1030           Pelagic    5            chub mackerel  3.9889047926
## 1031          Midwater   21                kelp bass  3.9961757395
## 1032          Midwater    5                queenfish  4.2223142278
## 1033     Benthopelagic   11            white croaker  3.9486956188
## 1034           Benthic    1           diamond turbot  3.9981615812
## 1035           Benthic   22         hornyhead turbot  3.8868356192
## 1036          Midwater    5                kelp bass  4.2854595409
## 1037     Benthopelagic   21          spotfin croaker  4.2533063570
## 1038           Pelagic    5            chub mackerel  4.1134894043
## 1039     Benthopelagic    5       vermilion rockfish  4.2843394471
## 1040     Benthopelagic    1         barred surfperch  3.9810626856
## 1041     Benthopelagic   11            white croaker  4.0458881000
## 1042     Benthopelagic    4         barred sand bass  4.2065228224
## 1043     Benthopelagic   17       vermilion rockfish  3.9831110710
## 1044     Benthopelagic   11          white surfperch  4.1072812203
## 1045     Benthopelagic    8          copper rockfish  3.9069161927
## 1046          Midwater   11            kelp rockfish  4.1681899404
## 1047     Benthopelagic    5            white croaker  4.1292570539
## 1048     Benthopelagic    4         barred surfperch  3.9983519285
## 1049     Benthopelagic    4       california corbina  4.2586647115
## 1050           Benthic   20       california halibut  4.0169880855
## 1051           Benthic    3           diamond turbot  4.1737928005
## 1052     Benthopelagic   12         barred sand bass  4.0035398515
## 1053          Midwater    1                 halfmoon  4.2040229005
## 1054     Benthopelagic   13       vermilion rockfish  4.0049982026
## 1055           Pelagic    5        pacific barracuda  4.1824612845
## 1056     Benthopelagic    3              black perch  3.9925729310
## 1057           Pelagic   21            chub mackerel  4.1815780243
## 1058     Benthopelagic   14            white croaker  4.1442941761
## 1059     Benthopelagic   24       vermilion rockfish  4.1067652423
## 1060     Benthopelagic   20       california corbina  4.0502051485
## 1061     Benthopelagic   21         barred sand bass  4.0285809343
## 1062     Benthopelagic   11            white croaker  4.1348704978
## 1063          Midwater   21                kelp bass  4.1023434708
## 1064          Midwater    1         shiner surfperch  4.0421550794
## 1065          Midwater    5         shiner surfperch  3.9657423505
## 1066     Benthopelagic   11           brown rockfish  4.0898715283
## 1067     Benthopelagic    5         barred sand bass  4.0575110249
## 1068           Pelagic    5          pacific sardine  4.0803034297
## 1069           Benthic   16         hornyhead turbot  4.1607885026
## 1070          Midwater    1         shiner surfperch  4.1797364002
## 1071     Benthopelagic    5                  opaleye  3.9382506879
## 1072     Benthopelagic   20            white croaker  4.1461539299
## 1073     Benthopelagic   21            white croaker  4.1088261708
## 1074     Benthopelagic   11          spotfin croaker  3.9930000122
## 1075           Benthic   22  california scorpionfish  4.1187515736
## 1076           Pelagic    5          pacific sardine  4.2196393103
## 1077     Benthopelagic    1                  opaleye  4.0899431566
## 1078          Midwater    1         shiner surfperch  4.0131817483
## 1079     Benthopelagic   11         barred surfperch  4.2057006718
## 1080          Midwater   11         shiner surfperch  4.0956363496
## 1081     Benthopelagic   12            white croaker  4.0235841157
## 1082          Midwater   21                queenfish  3.9375268241
## 1083           Benthic    4    shovelnose guitarfish  4.2045274682
## 1084     Benthopelagic   21         barred sand bass  3.9795430574
## 1085     Benthopelagic   10            white croaker  4.3447997076
## 1086     Benthopelagic    1       california corbina  4.2687846480
## 1087     Benthopelagic   11            white croaker  3.7510248757
## 1088          Midwater   11                kelp bass  4.0906895330
## 1089     Benthopelagic    3        spotted sand bass  4.0383999012
## 1090     Benthopelagic    3          copper rockfish  4.1340042243
## 1091           Pelagic   11            chub mackerel  3.8971278155
## 1092           Pelagic    5             market squid  4.0258385662
## 1093           Pelagic   11            chub mackerel  4.0823218926
## 1094           Pelagic   21            chub mackerel  4.0671436369
## 1095           Benthic   22  california scorpionfish  4.0747798142
## 1096          Midwater    4         shiner surfperch  3.9893033902
## 1097           Benthic   18  california scorpionfish  4.0892730361
## 1098     Benthopelagic    5                  opaleye  3.9703632641
## 1099          Midwater   21                queenfish  3.9909802065
## 1100     Benthopelagic    5          copper rockfish  4.1676899494
## 1101     Benthopelagic   11         barred sand bass  4.0440948377
## 1102     Benthopelagic   21        spotted sand bass  4.0021354586
## 1103     Benthopelagic   22            white croaker  4.0318958888
## 1104           Pelagic    5         northern anchovy  4.1737102560
## 1105     Benthopelagic   21            leopard shark  4.1058094101
## 1106          Midwater   11         shiner surfperch  4.2471199937
## 1107     Benthopelagic   21            white croaker  4.2310596519
## 1108           Benthic    5       california halibut  3.8951711824
## 1109          Midwater   11                kelp bass  4.1012414015
## 1110          Midwater   18                kelp bass  4.2664144102
## 1111     Benthopelagic    5            white croaker  3.7848594466
## 1112     Benthopelagic    1         barred surfperch  4.1136429347
## 1113     Benthopelagic   20            white croaker  4.0909433194
## 1114     Benthopelagic    4 brown smooth-hound shark  3.9968670204
## 1115     Benthopelagic   11         barred sand bass  4.1322249025
## 1116           Benthic   15         hornyhead turbot  4.2935400026
## 1117           Benthic    5  california scorpionfish  4.1531131274
## 1118     Benthopelagic   14       vermilion rockfish  4.1767892645
## 1119           Pelagic    5             market squid  4.0021476664
## 1120     Benthopelagic    5            black croaker  4.2531212265
## 1121     Benthopelagic    1         barred surfperch  4.0318178706
## 1122          Midwater    2        walleye surfperch  4.1179409164
## 1123     Benthopelagic   16       vermilion rockfish  3.9655508328
## 1124           Pelagic    4            chub mackerel  4.1623843315
## 1125     Benthopelagic    1        yellowfin croaker  3.9600437622
## 1126          Midwater    5                kelp bass  4.3917437172
## 1127     Benthopelagic    6          copper rockfish  4.2204223599
## 1128           Benthic    9         hornyhead turbot  3.9060659076
## 1129     Benthopelagic   13           brown rockfish  3.9098243817
## 1130     Benthopelagic    4            white croaker  4.2047471699
## 1131     Benthopelagic   21        spotted sand bass  4.0592404865
## 1132           Pelagic    6             market squid  3.8459690899
## 1133     Benthopelagic   11            white croaker  4.0096209401
## 1134     Benthopelagic   16       vermilion rockfish  4.2033428127
## 1135           Benthic    5           diamond turbot  4.0486966718
## 1136          Midwater    5                kelp bass  4.3198461361
## 1137     Benthopelagic    3        rainbow surfperch  3.9489169682
## 1138           Benthic   21       california halibut  4.1177588671
## 1139     Benthopelagic   21            white croaker  3.9714950630
## 1140     Benthopelagic   11          white surfperch  4.0613548165
## 1141     Benthopelagic    4        yellowfin croaker  4.0348420809
## 1142           Pelagic    5         northern anchovy  4.0933709473
## 1143           Pelagic   21         northern anchovy  4.1186011143
## 1144     Benthopelagic   21        yellowfin croaker  4.1516261780
## 1145     Benthopelagic   13       vermilion rockfish  4.0886078852
## 1146     Benthopelagic   11         barred sand bass  3.9242908183
## 1147     Benthopelagic    1       california corbina  4.1481438869
## 1148     Benthopelagic    5       vermilion rockfish  4.1593638777
## 1149          Midwater    1                 halfmoon  4.0997707123
## 1150     Benthopelagic   23          starry rockfish  4.0021185253
## 1151     Benthopelagic    9          copper rockfish  4.2817277768
## 1152     Benthopelagic    5            white croaker  4.2062578852
## 1153     Benthopelagic   12         barred sand bass  4.1588248038
## 1154     Benthopelagic   23            white croaker  4.1247952140
## 1155           Pelagic    5            chub mackerel  4.2344825734
## 1156          Midwater    4                kelp bass  3.9522368603
## 1157           Pelagic    5         northern anchovy  4.0554591489
## 1158     Benthopelagic    1        spotted sand bass  4.2770366730
## 1159           Benthic   16         hornyhead turbot  4.1004626230
## 1160          Midwater   11                kelp bass  4.0159989520
## 1161           Pelagic   21            chub mackerel  4.0254373948
## 1162     Benthopelagic    1          ocean whitefish  4.2241955360
## 1163     Benthopelagic    1       california corbina  4.0719018922
## 1164     Benthopelagic   21        spotted sand bass  3.8178770978
## 1165           Pelagic    5          pacific sardine  4.2189344019
## 1166     Benthopelagic    4                  opaleye  3.9970753640
## 1167           Pelagic    6          pacific sardine  4.0282110855
## 1168           Pelagic   11            chub mackerel  3.9326242986
## 1169          Midwater   21                kelp bass  4.2085187426
## 1170     Benthopelagic    1     california sheephead  3.9453970139
## 1171          Midwater   10                kelp bass  3.9783444819
## 1172     Benthopelagic   13            white croaker  4.1003173506
## 1173           Pelagic    5            chub mackerel  4.1282774488
## 1174           Benthic   15         hornyhead turbot  4.2125196681
## 1175     Benthopelagic   24          starry rockfish  4.1760949734
## 1176     Benthopelagic   14       vermilion rockfish  4.0620633127
## 1177     Benthopelagic   22            white croaker  4.0886793457
## 1178           Benthic    5    shovelnose guitarfish  4.2322401142
## 1179           Benthic   12  california scorpionfish  4.1551662185
## 1180     Benthopelagic   11   gray smoothhound shark  4.2724849370
## 1181     Benthopelagic    3        rainbow surfperch  3.8672315091
## 1182     Benthopelagic    1                  opaleye  4.1561209443
## 1183           Pelagic    5             market squid  4.0513211663
## 1184           Pelagic    4            chub mackerel  4.1728010936
## 1185           Pelagic    5          pacific sardine  3.9102094023
## 1186     Benthopelagic   15            white croaker  4.1652960181
## 1187           Pelagic    5             market squid  4.0942068080
## 1188           Pelagic   21            chub mackerel  4.0169563173
## 1189     Benthopelagic   11           brown rockfish  3.9518943880
## 1190     Benthopelagic   20        yellowfin croaker  3.9494698686
## 1191     Benthopelagic   22         barred sand bass  3.9404193952
## 1192           Pelagic    5          pacific sardine  4.1939532373
## 1193           Benthic   13         hornyhead turbot  4.0601201305
## 1194          Midwater   12                kelp bass  3.7833874562
## 1195     Benthopelagic   22            white croaker  4.1733378108
## 1196           Pelagic    6             market squid  4.0081820584
## 1197           Pelagic    5          pacific sardine  4.2663298858
## 1198     Benthopelagic    4       california corbina  4.1929353153
## 1199     Benthopelagic   21        spotted sand bass  4.0264240798
## 1200     Benthopelagic    6    greenspotted rockfish  4.1267679191
## 1201           Pelagic    5             market squid  2.6033555468
## 1202     Benthopelagic    4            white croaker  2.1814909727
## 1203     Benthopelagic    1       california corbina  2.2757211067
## 1204          Midwater    4         shiner surfperch  2.3403321455
## 1205     Benthopelagic   23       vermilion rockfish  2.3920965410
## 1206     Benthopelagic   20       california corbina  2.0253964468
## 1207           Pelagic    5            chub mackerel  2.2745036713
## 1208     Benthopelagic   21         barred sand bass  2.2254378444
## 1209           Benthic    5  california scorpionfish  2.5568746865
## 1210           Pelagic    5             market squid  2.2194082411
## 1211     Benthopelagic   21        yellowfin croaker  2.0335667847
## 1212           Benthic    5          longfin sanddab  2.4719103521
## 1213     Benthopelagic    5       vermilion rockfish  2.2450867761
## 1214          Midwater   13     chilipepper rockfish  2.0134324011
## 1215     Benthopelagic    4        yellowfin croaker  2.1684742906
## 1216     Benthopelagic   21        yellowfin croaker  2.4364907660
## 1217     Benthopelagic    1        yellowfin croaker  2.5283187224
## 1218     Benthopelagic    3                  opaleye  2.6101915678
## 1219     Benthopelagic   11        yellowfin croaker  2.2580511735
## 1220           Benthic   15         hornyhead turbot  2.1707220773
## 1221          Midwater    3         shiner surfperch  2.5261049457
## 1222     Benthopelagic    3        spotted sand bass  1.9726138449
## 1223           Benthic   13         hornyhead turbot  2.0511402317
## 1224     Benthopelagic    7       vermilion rockfish  2.1958670873
## 1225          Midwater    3                kelp bass  2.5160447109
## 1226     Benthopelagic   22       vermilion rockfish  2.3947510425
## 1227     Benthopelagic   11          gopher rockfish  2.2088897605
## 1228     Benthopelagic    4         barred sand bass  2.1491015905
## 1229     Benthopelagic    5         barred sand bass  2.3518785430
## 1230          Midwater   10                kelp bass  2.3902918371
## 1231           Benthic    4    california lizardfish  2.0668407225
## 1232     Benthopelagic    8            white croaker  2.2605797950
## 1233          Midwater   11         shiner surfperch  2.7453495804
## 1234     Benthopelagic    1     california sheephead  2.1786624693
## 1235     Benthopelagic    5            white croaker  2.2346931166
## 1236     Benthopelagic   11            white croaker  2.4669335394
## 1237           Benthic    1           diamond turbot  2.4443175105
## 1238     Benthopelagic    6       vermilion rockfish  2.4266138483
## 1239           Pelagic   21            chub mackerel  2.7744653868
## 1240          Midwater    4           striped mullet  2.2823258747
## 1241           Benthic   19  california scorpionfish  2.0152210474
## 1242          Midwater    1         shiner surfperch  2.1961555313
## 1243     Benthopelagic   11         barred surfperch  2.0756035575
## 1244     Benthopelagic   11        spotted sand bass  2.1303102861
## 1245           Pelagic    5            chub mackerel  2.4466764455
## 1246           Pelagic    5            chub mackerel  2.1221868968
## 1247     Benthopelagic   11            white croaker  2.7678466990
## 1248     Benthopelagic    5           brown rockfish  2.3908902402
## 1249          Midwater    4           striped mullet  2.2017084816
## 1250          Midwater   21                kelp bass  1.9636949925
## 1251     Benthopelagic   21        yellowfin croaker  1.8913768963
## 1252     Benthopelagic    1         barred surfperch  2.2370981097
## 1253     Benthopelagic   14          starry rockfish  1.9282707424
## 1254     Benthopelagic   11 brown smooth-hound shark  2.0673034583
## 1255     Benthopelagic   11           brown rockfish  2.2306548628
## 1256          Midwater    1        walleye surfperch  2.0067022672
## 1257     Benthopelagic   20              black perch  2.1847686529
## 1258           Benthic   10  california scorpionfish  2.1768362449
## 1259          Midwater   22                kelp bass  2.1004690566
## 1260     Benthopelagic    1        rainbow surfperch  2.3690243282
## 1261          Midwater   24      squarespot rockfish  2.5114445974
## 1262     Benthopelagic   21        yellowfin croaker  2.1640573664
## 1263     Benthopelagic   11       vermilion rockfish  2.1257031186
## 1264     Benthopelagic   11         barred sand bass  2.7652272267
## 1265           Benthic   22  california scorpionfish  2.1408534215
## 1266     Benthopelagic    1                  opaleye  2.5636761857
## 1267     Benthopelagic   21          white surfperch  2.3333808728
## 1268          Midwater    4           striped mullet  2.1482128248
## 1269           Pelagic   21            chub mackerel  2.0936668719
## 1270     Benthopelagic   22       vermilion rockfish  2.3993953568
## 1271     Benthopelagic   13            white croaker  2.1898124371
## 1272           Benthic    8  california scorpionfish  2.3976317306
## 1273     Benthopelagic    5       vermilion rockfish  1.8571949651
## 1274     Benthopelagic    3        rainbow surfperch  2.2247539434
## 1275     Benthopelagic    9   greenblotched rockfish  2.1366594635
## 1276           Pelagic   21            chub mackerel  2.3767859983
## 1277     Benthopelagic    5            white croaker  2.1851560267
## 1278           Pelagic   21            chub mackerel  2.1005777847
## 1279           Pelagic    5          pacific sardine  2.3669818258
## 1280          Midwater   12                kelp bass  2.4361467936
## 1281     Benthopelagic   11         barred sand bass  2.4831707160
## 1282           Benthic    8         hornyhead turbot  2.5822666570
## 1283           Benthic    4           spotted turbot  2.3076264053
## 1284           Benthic    5  california scorpionfish  2.3999069611
## 1285          Midwater   21                kelp bass  2.2142965716
## 1286     Benthopelagic    1       california corbina  2.4508991046
## 1287           Pelagic   21            chub mackerel  2.1854471014
## 1288           Benthic    3           diamond turbot  2.4557815041
## 1289           Pelagic   11            chub mackerel  2.2392967772
## 1290     Benthopelagic    9   greenblotched rockfish  2.5235253396
## 1291     Benthopelagic    5            white croaker  2.3400419355
## 1292     Benthopelagic    4        yellowfin croaker  1.9660300910
## 1293          Midwater    7      squarespot rockfish  1.8362432822
## 1294     Benthopelagic   15        speckled rockfish  2.3515831186
## 1295     Benthopelagic   11          white surfperch  2.3529584256
## 1296     Benthopelagic   13       vermilion rockfish  2.2961285695
## 1297     Benthopelagic    2        spotted sand bass  2.7181413047
## 1298     Benthopelagic   15       vermilion rockfish  2.5506421404
## 1299     Benthopelagic   13            white croaker  2.4020204328
## 1300     Benthopelagic    1              black perch  2.5419786397
## 1301     Benthopelagic    8         barred sand bass  2.2573493809
## 1302           Pelagic   11            chub mackerel  2.1120108286
## 1303           Pelagic    6             market squid  2.3479425190
## 1304     Benthopelagic   10            white croaker  2.2301562293
## 1305           Benthic    4           spotted turbot  2.1680937094
## 1306          Midwater   11                kelp bass  2.0520636374
## 1307     Benthopelagic    1              black perch  2.2424250770
## 1308     Benthopelagic   21            white croaker  1.9847461617
## 1309     Benthopelagic   20       california corbina  1.9683289797
## 1310     Benthopelagic   11              black perch  2.3908923046
## 1311           Pelagic   21            chub mackerel  1.9975825217
## 1312     Benthopelagic    1        yellowfin croaker  2.4308433776
## 1313     Benthopelagic   10           brown rockfish  2.3180045882
## 1314           Pelagic   11            chub mackerel  2.5218252633
## 1315     Benthopelagic   11          gopher rockfish  2.0390144514
## 1316     Benthopelagic   21        spotted sand bass  2.5732773226
## 1317     Benthopelagic   23       vermilion rockfish  2.5371656274
## 1318           Pelagic    5            chub mackerel  1.9068973587
## 1319          Midwater    3         shiner surfperch  2.4856979751
## 1320          Midwater   11         shiner surfperch  2.4053974395
## 1321     Benthopelagic   20         barred surfperch  2.2512159290
## 1322     Benthopelagic    3         barred surfperch  2.4709101197
## 1323     Benthopelagic   21        yellowfin croaker  2.0752985848
## 1324     Benthopelagic    5       california corbina  2.3986292628
## 1325     Benthopelagic    5            white croaker  2.1537262687
## 1326           Pelagic    5             market squid  2.0986008636
## 1327     Benthopelagic   17            white croaker  2.2795553180
## 1328     Benthopelagic   20         barred sand bass  2.3574954475
## 1329     Benthopelagic    3              black perch  2.2422772077
## 1330     Benthopelagic   11            white croaker  2.4199416215
## 1331     Benthopelagic    5                  opaleye  2.2194187134
## 1332     Benthopelagic    5            white croaker  2.6126910030
## 1333          Midwater   21                kelp bass  2.4444429260
## 1334     Benthopelagic   23       vermilion rockfish  2.0864632119
## 1335     Benthopelagic    4       california corbina  2.2502402096
## 1336     Benthopelagic   11              black perch  2.4516489685
## 1337     Benthopelagic    5                  opaleye  2.1540529226
## 1338     Benthopelagic    5            white croaker  2.4462115038
## 1339     Benthopelagic   11        spotted sand bass  2.3873037940
## 1340           Pelagic   21            chub mackerel  2.2258708779
## 1341           Pelagic    5         northern anchovy  1.9098134431
## 1342     Benthopelagic    3        spotted sand bass  2.1836757140
## 1343     Benthopelagic   20           pile surfperch  2.0470280702
## 1344           Pelagic    5         northern anchovy  2.5232119448
## 1345           Benthic   11         hornyhead turbot  2.3551101331
## 1346     Benthopelagic   11            black croaker  2.2371626074
## 1347     Benthopelagic    1          white surfperch  2.4649361925
## 1348     Benthopelagic   11         barred sand bass  2.1537921327
## 1349     Benthopelagic   14            white croaker  2.4968900612
## 1350     Benthopelagic    3       california corbina  2.6714126012
## 1351           Pelagic    5            chub mackerel  2.1366680069
## 1352     Benthopelagic   12            white croaker  2.2374530648
## 1353     Benthopelagic    1        yellowfin croaker  2.2723780974
## 1354     Benthopelagic   22          starry rockfish  2.4245128162
## 1355     Benthopelagic    5                  opaleye  2.4820788542
## 1356           Pelagic   11            chub mackerel  2.4286685738
## 1357     Benthopelagic   22            white croaker  2.4029021379
## 1358     Benthopelagic   17        speckled rockfish  2.2000815888
## 1359     Benthopelagic   11         barred sand bass  2.7340191324
## 1360     Benthopelagic   21        spotted sand bass  2.2252328787
## 1361     Benthopelagic    1        spotted sand bass  2.8581886009
## 1362     Benthopelagic    4           pile surfperch  2.1142072474
## 1363     Benthopelagic    5                  opaleye  2.3060520004
## 1364          Midwater    2                kelp bass  2.5025228227
## 1365     Benthopelagic   10              black perch  2.1111025014
## 1366           Pelagic    5          pacific sardine  1.9841620626
## 1367          Midwater    1         shiner surfperch  2.2212507285
## 1368     Benthopelagic    1         barred surfperch  2.1827621207
## 1369     Benthopelagic    2            white croaker  2.3634723102
## 1370     Benthopelagic    1            white croaker  2.7165251828
## 1371     Benthopelagic    5         barred sand bass  1.9970617021
## 1372     Benthopelagic   24       vermilion rockfish  2.0056993328
## 1373          Midwater    3          canary rockfish  2.1027753686
## 1374     Benthopelagic   18            white croaker  2.4953162249
## 1375     Benthopelagic    7           brown rockfish  2.1469313020
## 1376          Midwater    5                queenfish  1.8520645819
## 1377           Benthic    1           diamond turbot  2.0762420534
## 1378     Benthopelagic    1            white croaker  2.4164656403
## 1379           Pelagic    5             market squid  2.1126746207
## 1380           Pelagic    5             market squid  2.4724720160
## 1381     Benthopelagic    3        spotted sand bass  2.7516319618
## 1382           Pelagic    5             market squid  2.4488942809
## 1383          Midwater   11                kelp bass  2.0659931383
## 1384           Benthic    5       california halibut  2.3219965787
## 1385           Benthic   19         hornyhead turbot  2.1811651878
## 1386           Pelagic    5         northern anchovy  2.0239998768
## 1387          Midwater   21                kelp bass  2.2686367073
## 1388           Pelagic   21            chub mackerel  2.1983733783
## 1389          Midwater    1                queenfish  2.0963533315
## 1390     Benthopelagic    3        spotted sand bass  2.5043820644
## 1391     Benthopelagic   14    greenspotted rockfish  1.9855056231
## 1392     Benthopelagic    5            white croaker  2.3609414377
## 1393     Benthopelagic   10   greenblotched rockfish  2.2753646508
## 1394     Benthopelagic    5                  opaleye  2.1938874582
## 1395     Benthopelagic    1            white croaker  2.4497192708
## 1396           Pelagic    5          pacific sardine  2.4685428833
## 1397          Midwater    1            blue rockfish  2.3953528266
## 1398          Midwater   21                kelp bass  2.1030441338
## 1399     Benthopelagic    3         barred sand bass  2.5822909492
## 1400           Pelagic   21            chub mackerel  2.1923056611
## 1401     Benthopelagic    4                  opaleye  2.0376891884
## 1402     Benthopelagic    1     california sheephead  2.2775399232
## 1403     Benthopelagic   11              black perch  2.3353623352
## 1404     Benthopelagic    1        yellowfin croaker  2.5504050039
## 1405     Benthopelagic   18              black perch  2.2311956854
## 1406     Benthopelagic    1        yellowfin croaker  2.1813445360
## 1407     Benthopelagic   21        spotted sand bass  2.3241907587
## 1408     Benthopelagic    5                  opaleye  2.2112639614
## 1409     Benthopelagic   12       vermilion rockfish  2.7835058491
## 1410     Benthopelagic   18       vermilion rockfish  2.4316241246
## 1411     Benthopelagic    3              black perch  2.3934174796
## 1412          Midwater    3                kelp bass  1.9898659685
## 1413     Benthopelagic   12            white croaker  2.2918032553
## 1414          Midwater   21                kelp bass  1.9298254654
## 1415          Midwater    4         shiner surfperch  1.8611440684
## 1416     Benthopelagic   11          gopher rockfish  2.3220214046
## 1417     Benthopelagic    3       vermilion rockfish  2.2378480311
## 1418     Benthopelagic   14         barred sand bass  2.1916918635
## 1419          Midwater   21                kelp bass  2.1555970041
## 1420          Midwater    1                queenfish  2.1033003688
## 1421     Benthopelagic   22          starry rockfish  2.2911449443
## 1422     Benthopelagic   20            white croaker  2.2215994207
## 1423     Benthopelagic    4       california corbina  2.0167398831
## 1424     Benthopelagic    8              black perch  2.1410222891
## 1425           Benthic   20         hornyhead turbot  2.4139182682
## 1426          Midwater   21                kelp bass  1.9752482003
## 1427     Benthopelagic    4              black perch  2.1625185597
## 1428     Benthopelagic    4            white croaker  2.5104370875
## 1429     Benthopelagic    4              black perch  2.2971162874
## 1430     Benthopelagic   21        yellowfin croaker  2.1795825651
## 1431     Benthopelagic    1                  opaleye  2.4624885670
## 1432           Benthic   21         hornyhead turbot  2.4139832970
## 1433     Benthopelagic    4         barred surfperch  2.1126223127
## 1434          Midwater   11                kelp bass  1.8971667132
## 1435           Pelagic    5             market squid  2.0605896703
## 1436           Benthic    1           diamond turbot  2.5500703295
## 1437     Benthopelagic    1            white croaker  2.8378265589
## 1438     Benthopelagic    4              black perch  2.0187500132
## 1439           Pelagic    6             market squid  2.5359778090
## 1440     Benthopelagic   11            white croaker  2.6796526975
## 1441     Benthopelagic    9            white croaker  2.0839085673
## 1442           Pelagic   21         northern anchovy  2.4371628577
## 1443     Benthopelagic   11           brown rockfish  2.4432126220
## 1444     Benthopelagic   11          ocean whitefish  2.3417157995
## 1445           Benthic   17         hornyhead turbot  2.1346795081
## 1446           Benthic   11  california scorpionfish  2.0299884465
## 1447           Benthic   20           diamond turbot  2.2077898743
## 1448     Benthopelagic    4        spotted sand bass  2.2383324357
## 1449          Midwater   11           olive rockfish  2.2114526644
## 1450     Benthopelagic    1              black perch  1.8949785196
## 1451     Benthopelagic    5            white croaker  2.3889826011
## 1452           Pelagic    5         northern anchovy  2.4957389116
## 1453     Benthopelagic   11        yellowfin croaker  2.4852410660
## 1454          Midwater   16                kelp bass  2.3181657616
## 1455     Benthopelagic   11            white croaker  2.6742750878
## 1456     Benthopelagic   11              black perch  2.3515255443
## 1457          Midwater   18                kelp bass  2.2393008983
## 1458     Benthopelagic    3              black perch  2.1099560729
## 1459          Midwater    1                kelp bass  2.0735069566
## 1460     Benthopelagic   15            white croaker  2.2989407703
## 1461     Benthopelagic   22         barred sand bass  2.1098547670
## 1462     Benthopelagic    1            white croaker  2.1804887466
## 1463     Benthopelagic   21        yellowfin croaker  2.0082681135
## 1464           Benthic    5  california scorpionfish  2.1637971342
## 1465           Pelagic   21            chub mackerel  2.1160647218
## 1466           Benthic    1           spotted turbot  2.2054930417
## 1467     Benthopelagic   11          gopher rockfish  2.5068143019
## 1468     Benthopelagic    1            white croaker  2.2595926006
## 1469     Benthopelagic    5       california corbina  2.4995815665
## 1470     Benthopelagic    1              black perch  1.6984983292
## 1471     Benthopelagic   11          spotfin croaker  1.8982683973
## 1472     Benthopelagic    8          copper rockfish  2.2314758290
## 1473     Benthopelagic    4        yellowfin croaker  2.1971149563
## 1474     Benthopelagic   12            white croaker  2.0169152819
## 1475          Midwater    8      yellowtail rockfish  2.4752749995
## 1476          Midwater    3                kelp bass  1.8057832273
## 1477     Benthopelagic    5          spotfin croaker  2.2591542157
## 1478           Pelagic    5          pacific sardine  2.0134360795
## 1479           Benthic    5  california scorpionfish  2.2401820648
## 1480     Benthopelagic    3         barred surfperch  2.4620331660
## 1481           Pelagic    6          pacific sardine  2.4697854382
## 1482     Benthopelagic   11       vermilion rockfish  2.2348104564
## 1483           Pelagic    5         northern anchovy  2.3905940449
## 1484           Pelagic   11            chub mackerel  2.3685242924
## 1485           Pelagic   21            chub mackerel  2.2281556357
## 1486          Midwater    5                top smelt  2.2976851373
## 1487          Midwater    2                queenfish  2.0887443163
## 1488     Benthopelagic    4            white croaker  2.5857434442
## 1489     Benthopelagic   18              black perch  1.9161519131
## 1490          Midwater   21                kelp bass  2.2006723384
## 1491     Benthopelagic    4          copper rockfish  2.1524558504
## 1492     Benthopelagic   20              black perch  2.2668287561
## 1493           Benthic    1         speckled sanddab  2.1887454036
## 1494     Benthopelagic   18            white croaker  2.3028536439
## 1495     Benthopelagic   11         barred sand bass  2.2867031530
## 1496     Benthopelagic   11          spotfin croaker  2.1855172873
## 1497           Pelagic   11            chub mackerel  2.5643514509
## 1498           Pelagic    5            chub mackerel  2.0879989199
## 1499           Benthic   18         hornyhead turbot  2.0145944105
## 1500           Benthic   12  california scorpionfish  2.1762242816
## 1501           Benthic    1             fantail sole  2.3859241425
## 1502          Midwater   21                kelp bass  2.0831520169
## 1503     Benthopelagic    3          white surfperch  2.1638128043
## 1504     Benthopelagic   13       vermilion rockfish  2.3028808969
## 1505     Benthopelagic   18            white croaker  2.0628842709
## 1506          Midwater    1         shiner surfperch  2.3300172045
## 1507     Benthopelagic   14            white croaker  2.5135538437
## 1508          Midwater   11                kelp bass  2.5735783338
## 1509           Benthic    5         speckled sanddab  2.1688336568
## 1510           Benthic   17  california scorpionfish  2.2453935991
## 1511     Benthopelagic   21       california corbina  2.2462850900
## 1512           Benthic   11  california scorpionfish  2.1848022429
## 1513           Benthic   17         hornyhead turbot  2.2846852886
## 1514     Benthopelagic   12              black perch  2.4893743071
## 1515     Benthopelagic    1            white croaker  2.1141563066
## 1516     Benthopelagic    5       california corbina  2.1430096666
## 1517     Benthopelagic    4              black perch  2.3260234458
## 1518     Benthopelagic    5            white croaker  2.2608908833
## 1519     Benthopelagic    1            white croaker  2.1861342594
## 1520           Benthic   14         hornyhead turbot  2.8019087615
## 1521           Benthic    4    shovelnose guitarfish  2.1029069441
## 1522          Midwater    1        walleye surfperch  2.5541127083
## 1523          Midwater   18                kelp bass  2.1751033101
## 1524     Benthopelagic    5            white croaker  2.5875450227
## 1525     Benthopelagic    5         barred sand bass  2.3892787603
## 1526          Midwater    2                kelp bass  2.2666722692
## 1527     Benthopelagic   21         barred sand bass  2.2877558509
## 1528     Benthopelagic   12       vermilion rockfish  2.0749465520
## 1529     Benthopelagic    2       quillback rockfish  2.4717680670
## 1530     Benthopelagic   21            white croaker  2.3095392509
## 1531     Benthopelagic   16       vermilion rockfish  2.3544364923
## 1532     Benthopelagic    3              black perch  1.7691876279
## 1533           Benthic    8  california scorpionfish  2.1068043953
## 1534           Pelagic    5          pacific sardine  2.4968698217
## 1535           Benthic    5  california scorpionfish  2.2591020565
## 1536     Benthopelagic    8          copper rockfish  2.1550175897
## 1537           Pelagic    5          pacific sardine  2.0013132465
## 1538     Benthopelagic    2            white croaker  2.2085291577
## 1539     Benthopelagic    1            white croaker  2.5148196924
## 1540     Benthopelagic   21            leopard shark  2.3668326552
## 1541     Benthopelagic   14              black perch  2.0799987138
## 1542     Benthopelagic   16       vermilion rockfish  2.3390494536
## 1543     Benthopelagic   10       vermilion rockfish  2.3083834754
## 1544          Midwater   21                kelp bass  2.2924787753
## 1545     Benthopelagic    1            rosy rockfish  2.1621848686
## 1546          Midwater    3         shiner surfperch  1.9866938544
## 1547     Benthopelagic   11            white croaker  2.0273896313
## 1548     Benthopelagic    1         barred surfperch  2.5452150005
## 1549          Midwater    1         shiner surfperch  2.4001849460
## 1550           Pelagic   21            chub mackerel  2.3370477945
## 1551     Benthopelagic   16       vermilion rockfish  2.1065824938
## 1552     Benthopelagic    7        speckled rockfish  2.2395148409
## 1553          Midwater    4         shiner surfperch  2.2184968988
## 1554     Benthopelagic   11       vermilion rockfish  2.0359417258
## 1555           Pelagic    5            chub mackerel  2.4039938261
## 1556          Midwater   14                kelp bass  2.2508859007
## 1557     Benthopelagic    3              black perch  2.2134911439
## 1558     Benthopelagic    5            black croaker  2.2495992308
## 1559          Midwater    5                top smelt  2.4407661368
## 1560          Midwater   11                top smelt  2.4325556333
## 1561           Benthic   10         hornyhead turbot  2.0778657129
## 1562           Pelagic    5             market squid  2.1765520257
## 1563     Benthopelagic   12              black perch  2.1259289677
## 1564     Benthopelagic    1       california corbina  2.5303113314
## 1565     Benthopelagic    3         barred surfperch  2.4495881380
## 1566     Benthopelagic   19       vermilion rockfish  1.9691302266
## 1567     Benthopelagic   15        speckled rockfish  2.0013499442
## 1568           Pelagic    5          pacific sardine  1.9742844981
## 1569     Benthopelagic    4         barred surfperch  2.3443455468
## 1570     Benthopelagic   11              black perch  2.5522940651
## 1571          Midwater   11                kelp bass  2.0291401343
## 1572     Benthopelagic   11         barred surfperch  2.1529918422
## 1573           Pelagic    5         northern anchovy  2.1676742863
## 1574           Pelagic    5          pacific sardine  2.5339758029
## 1575     Benthopelagic   11            white croaker  2.3739270655
## 1576     Benthopelagic   19            white croaker  2.0649991154
## 1577     Benthopelagic    3              black perch  2.6056411614
## 1578     Benthopelagic   19       vermilion rockfish  2.0539235262
## 1579     Benthopelagic   12           brown rockfish  2.2676924764
## 1580     Benthopelagic    6          copper rockfish  2.4470266847
## 1581           Pelagic    5             market squid  2.3115832668
## 1582     Benthopelagic   22              black perch  2.5637594887
## 1583           Benthic   20       california halibut  2.1952482755
## 1584     Benthopelagic    2        spotted sand bass  2.6491863503
## 1585           Benthic    1           diamond turbot  2.2190956861
## 1586           Benthic   23         hornyhead turbot  2.3479146234
## 1587     Benthopelagic    5         barred sand bass  2.1936512953
## 1588           Benthic    4    california lizardfish  2.3396281199
## 1589     Benthopelagic   11 brown smooth-hound shark  2.3014033780
## 1590     Benthopelagic   21            white croaker  2.0535351341
## 1591     Benthopelagic    4            flag rockfish  2.3080819078
## 1592           Benthic   12         hornyhead turbot  2.1821540103
## 1593           Benthic    4    shovelnose guitarfish  2.4657637927
## 1594     Benthopelagic   14            white croaker  2.5348697567
## 1595     Benthopelagic    5     california sheephead  2.3167546435
## 1596           Pelagic    5         northern anchovy  2.6165336335
## 1597     Benthopelagic   20       vermilion rockfish  2.2589382711
## 1598     Benthopelagic    2         barred surfperch  2.3576604605
## 1599          Midwater   17      squarespot rockfish  2.5938429237
## 1600     Benthopelagic   18       vermilion rockfish  2.3626538988
## 1601     Benthopelagic   11            white croaker  4.2014104693
## 1602     Benthopelagic    4         barred sand bass  3.9586628015
## 1603          Midwater    4                top smelt  3.9214259921
## 1604           Benthic   17         hornyhead turbot  3.6515648353
## 1605     Benthopelagic   11            white croaker  4.0672911071
## 1606     Benthopelagic   11         barred surfperch  3.9032798398
## 1607           Pelagic    5             market squid  3.7479268044
## 1608           Benthic   19  california scorpionfish  3.9676708375
## 1609           Pelagic    5             market squid  4.2058488764
## 1610     Benthopelagic   10         barred sand bass  4.0797041110
## 1611           Pelagic   11            chub mackerel  4.1383835319
## 1612     Benthopelagic   11              black perch  4.0738924799
## 1613     Benthopelagic   22              black perch  3.7230471937
## 1614     Benthopelagic   12            white croaker  3.9558446125
## 1615           Benthic    5    shovelnose guitarfish  3.9518860388
## 1616     Benthopelagic   20       california corbina  4.0381125980
## 1617     Benthopelagic    5                  opaleye  4.1336366656
## 1618     Benthopelagic   16       vermilion rockfish  3.9579835269
## 1619     Benthopelagic    1        spotted sand bass  4.0925717137
## 1620     Benthopelagic    3        rainbow surfperch  4.2482683890
## 1621     Benthopelagic   17            white croaker  4.2667940968
## 1622           Benthic   22  california scorpionfish  3.8629686580
## 1623          Midwater   21                kelp bass  4.0032551604
## 1624           Pelagic    5             market squid  3.8842955221
## 1625     Benthopelagic   21            white croaker  3.9357952027
## 1626     Benthopelagic    1        rainbow surfperch  4.1327233220
## 1627     Benthopelagic    4       california corbina  4.0823482532
## 1628           Pelagic   21            chub mackerel  4.3914464284
## 1629     Benthopelagic   20            white croaker  4.3304321395
## 1630           Pelagic    6          pacific sardine  4.0011108636
## 1631          Midwater    4           striped mullet  4.1264953186
## 1632           Pelagic   21            chub mackerel  3.7758472606
## 1633           Benthic    1         speckled sanddab  4.2008227550
## 1634     Benthopelagic   11            white croaker  4.0288856685
## 1635           Benthic    8         hornyhead turbot  4.3504464057
## 1636          Midwater    4         shiner surfperch  3.9128869568
## 1637     Benthopelagic   10       vermilion rockfish  4.2385752074
## 1638     Benthopelagic    1        rainbow surfperch  4.1271608598
## 1639          Midwater   11         shiner surfperch  4.2802615437
## 1640     Benthopelagic    5            leopard shark  3.7994980161
## 1641           Pelagic   21            chub mackerel  3.9228028792
## 1642     Benthopelagic   11              black perch  3.9884558643
## 1643          Midwater    4         shiner surfperch  3.6544046143
## 1644     Benthopelagic   14              black perch  3.8697593492
## 1645          Midwater   11                kelp bass  3.8540001458
## 1646     Benthopelagic   18            white croaker  4.0196087063
## 1647          Midwater    4                top smelt  4.2210660134
## 1648     Benthopelagic    5   gray smoothhound shark  3.7270018086
## 1649     Benthopelagic   23            white croaker  4.0852983380
## 1650           Pelagic   21           slough anchovy  3.9629269876
## 1651          Midwater    1                queenfish  3.9293204533
## 1652     Benthopelagic   21            white croaker  3.9288951390
## 1653          Midwater    1                kelp bass  4.1451834482
## 1654     Benthopelagic   24       vermilion rockfish  3.9151539188
## 1655           Pelagic   21            chub mackerel  4.1556484197
## 1656           Pelagic    5          pacific sardine  3.8515782663
## 1657     Benthopelagic    4       california corbina  4.1550566622
## 1658     Benthopelagic    3       california corbina  3.8232323587
## 1659     Benthopelagic   16              black perch  4.1149461541
## 1660           Pelagic    5          pacific sardine  4.1593343750
## 1661           Pelagic   21            chub mackerel  4.1387602048
## 1662     Benthopelagic   21         barred sand bass  3.6426701423
## 1663           Pelagic    6          pacific sardine  4.0938588904
## 1664     Benthopelagic    5        yellowfin croaker  4.2784009440
## 1665           Benthic    1  california scorpionfish  3.9850612980
## 1666          Midwater    4         shiner surfperch  4.0524501843
## 1667           Benthic    5  california scorpionfish  3.8996940377
## 1668     Benthopelagic    5       california corbina  3.6687175377
## 1669           Benthic   19         hornyhead turbot  3.9557226264
## 1670     Benthopelagic    2              black perch  3.6978704512
## 1671     Benthopelagic   21        spotted sand bass  3.6343716384
## 1672     Benthopelagic    7       vermilion rockfish  3.7455643769
## 1673     Benthopelagic    3              black perch  4.1042180554
## 1674           Pelagic   11            chub mackerel  3.8794660614
## 1675     Benthopelagic   22            white croaker  4.1127455968
## 1676          Midwater    2         shiner surfperch  3.9293452860
## 1677     Benthopelagic   11   gray smoothhound shark  4.0814678320
## 1678     Benthopelagic   19            white croaker  3.5516747743
## 1679     Benthopelagic   11            white croaker  3.9267143382
## 1680     Benthopelagic    5            white croaker  3.9637694788
## 1681     Benthopelagic   21          white surfperch  3.9197738421
## 1682          Midwater    5                 halfmoon  4.4408127982
## 1683          Midwater   10                kelp bass  3.9208874710
## 1684          Midwater    1                kelp bass  3.7208760659
## 1685          Midwater    3         shiner surfperch  3.8983168319
## 1686     Benthopelagic   10            white croaker  3.9966257860
## 1687          Midwater    5                queenfish  4.0049886049
## 1688     Benthopelagic    1            white croaker  4.0156248383
## 1689     Benthopelagic    4              black perch  3.9677288614
## 1690     Benthopelagic    1         barred sand bass  3.9086394156
## 1691          Midwater    5                kelp bass  4.0589803031
## 1692           Pelagic    5          pacific sardine  4.1342391577
## 1693     Benthopelagic   21         barred sand bass  4.1403330386
## 1694     Benthopelagic    4           pile surfperch  3.8288690752
## 1695          Midwater   14                kelp bass  3.9076079713
## 1696     Benthopelagic   16          copper rockfish  4.0622927608
## 1697     Benthopelagic    3        spotted sand bass  4.0670074749
## 1698          Midwater   16                kelp bass  4.0866477811
## 1699          Midwater    4                kelp bass  4.0643280512
## 1700     Benthopelagic   14              black perch  3.9334851972
## 1701           Pelagic    6          pacific sardine  3.9654733717
## 1702     Benthopelagic   11              black perch  3.8037008536
## 1703     Benthopelagic    4           pile surfperch  4.0897986788
## 1704     Benthopelagic    5        yellowfin croaker  3.7627115661
## 1705           Benthic   14         hornyhead turbot  3.8078348278
## 1706           Pelagic    5          pacific sardine  3.9997446787
## 1707           Pelagic   21            chub mackerel  3.9259393946
## 1708          Midwater   21                kelp bass  3.9515394183
## 1709     Benthopelagic   10              black perch  3.7126578233
## 1710          Midwater   21                kelp bass  4.2055335901
## 1711           Pelagic    5          pacific sardine  3.9808176256
## 1712          Midwater    3         shiner surfperch  3.9218142302
## 1713     Benthopelagic    8         barred sand bass  3.9153741146
## 1714     Benthopelagic   11         barred sand bass  3.7466981350
## 1715          Midwater    1        walleye surfperch  3.6838511977
## 1716           Benthic   20  california scorpionfish  3.9841222554
## 1717           Benthic   23         hornyhead turbot  3.7836150153
## 1718           Benthic   19  california scorpionfish  3.9452021661
## 1719     Benthopelagic   12           brown rockfish  3.9754399343
## 1720     Benthopelagic   11          white surfperch  3.5688296403
## 1721     Benthopelagic    5       california corbina  4.3257271172
## 1722     Benthopelagic    4              black perch  3.9183683942
## 1723     Benthopelagic    5            white croaker  4.0220929891
## 1724     Benthopelagic    3        spotted sand bass  4.1152220796
## 1725     Benthopelagic   20            white croaker  4.1012271246
## 1726          Midwater    1         shiner surfperch  3.8111836044
## 1727           Benthic   20         hornyhead turbot  3.8781645752
## 1728           Benthic    1           spotted turbot  4.0068489875
## 1729           Benthic   23         hornyhead turbot  4.0018896327
## 1730     Benthopelagic   14       vermilion rockfish  4.2680958670
## 1731           Pelagic    5             market squid  4.1031535104
## 1732     Benthopelagic    8            white croaker  4.3130445377
## 1733           Pelagic    5             market squid  4.0492055521
## 1734     Benthopelagic    5       vermilion rockfish  4.0540752112
## 1735     Benthopelagic   11            white croaker  4.1584587646
## 1736           Benthic    3           diamond turbot  4.0581809266
## 1737           Pelagic   21         northern anchovy  4.1344452327
## 1738           Benthic    8         hornyhead turbot  3.9750226852
## 1739     Benthopelagic    4         barred sand bass  4.1864346263
## 1740          Midwater    3                jacksmelt  4.4522117676
## 1741          Midwater   21                kelp bass  4.3395278642
## 1742     Benthopelagic   11        yellowfin croaker  3.9561508744
## 1743          Midwater    8                kelp bass  3.5325600061
## 1744     Benthopelagic    9       vermilion rockfish  4.0254143138
## 1745          Midwater   21                kelp bass  3.8366746147
## 1746     Benthopelagic    1         barred surfperch  3.7301017894
## 1747          Midwater   11                top smelt  4.1668327296
## 1748     Benthopelagic    5            white croaker  3.9250094405
## 1749     Benthopelagic    4         barred surfperch  3.7833924331
## 1750     Benthopelagic   21        yellowfin croaker  4.0641715523
## 1751     Benthopelagic    5         barred sand bass  3.9411716625
## 1752           Pelagic   21            chub mackerel  3.9450069446
## 1753          Midwater   21                kelp bass  3.6662465528
## 1754     Benthopelagic    8            white croaker  4.0840030863
## 1755           Pelagic   21            chub mackerel  4.3170815899
## 1756     Benthopelagic   16        speckled rockfish  4.3266814054
## 1757     Benthopelagic    5         barred sand bass  3.9772504251
## 1758           Pelagic   21           slough anchovy  4.1005871452
## 1759     Benthopelagic   11            rosy rockfish  4.1344436736
## 1760           Benthic    4           diamond turbot  3.9832111616
## 1761           Benthic   16  california scorpionfish  3.6340181309
## 1762     Benthopelagic   20       vermilion rockfish  4.2643330176
## 1763          Midwater   20                kelp bass  3.9099104207
## 1764          Midwater   21                kelp bass  3.9773274411
## 1765           Benthic   13         hornyhead turbot  3.7398486437
## 1766           Pelagic   21            chub mackerel  3.9967738050
## 1767     Benthopelagic   14       vermilion rockfish  4.0030531585
## 1768          Midwater    5                kelp bass  3.8565893771
## 1769           Benthic   10  california scorpionfish  4.1448120773
## 1770     Benthopelagic    5         barred sand bass  4.1533211115
## 1771          Midwater    4                kelp bass  3.6982571124
## 1772     Benthopelagic    1        yellowfin croaker  4.2295860948
## 1773     Benthopelagic   10           brown rockfish  3.8991426397
## 1774           Benthic    5          longfin sanddab  3.6617397185
## 1775     Benthopelagic    3        yellowfin croaker  4.3076802985
## 1776     Benthopelagic   11            white croaker  3.9606440019
## 1777          Midwater   20                kelp bass  3.5300285562
## 1778           Benthic    5       california halibut  4.0265159044
## 1779           Pelagic    5          pacific sardine  3.8005823720
## 1780          Midwater   21                kelp bass  4.0631678443
## 1781     Benthopelagic    8            white croaker  4.0503450182
## 1782     Benthopelagic    3       california corbina  4.2414979102
## 1783     Benthopelagic    4        spotted sand bass  3.8762916674
## 1784           Benthic   10  california scorpionfish  3.9578559010
## 1785           Benthic    5  california scorpionfish  4.0970091747
## 1786          Midwater   11                top smelt  3.7528276635
## 1787     Benthopelagic   17            white croaker  3.6164950016
## 1788     Benthopelagic    5            white croaker  4.0345193521
## 1789           Pelagic   21         northern anchovy  3.9494729303
## 1790           Pelagic    5          pacific sardine  4.0685254698
## 1791     Benthopelagic    1       california corbina  4.0513998568
## 1792          Midwater    5                kelp bass  4.1715799082
## 1793     Benthopelagic   20            white croaker  3.9572174891
## 1794     Benthopelagic    3            rosy rockfish  3.7162862689
## 1795     Benthopelagic   21        yellowfin croaker  3.9441396101
## 1796     Benthopelagic    1         barred surfperch  4.1264064618
## 1797     Benthopelagic   14         barred sand bass  3.9976168495
## 1798     Benthopelagic    5       vermilion rockfish  3.9854134464
## 1799          Midwater   21                kelp bass  3.7111190820
## 1800     Benthopelagic    3           pile surfperch  4.0891705423
## 1801     Benthopelagic   19       vermilion rockfish  3.8486832651
## 1802           Pelagic    5            chub mackerel  3.9344684258
## 1803          Midwater   21                kelp bass  3.6032234162
## 1804          Midwater    5                queenfish  4.1719413691
## 1805     Benthopelagic   11            white croaker  4.2271200655
## 1806           Benthic    1           diamond turbot  4.2279732707
## 1807           Benthic   22         hornyhead turbot  4.1156086187
## 1808          Midwater    5                kelp bass  3.9644835434
## 1809     Benthopelagic   21          spotfin croaker  3.9794237100
## 1810           Pelagic    5            chub mackerel  4.1473417307
## 1811     Benthopelagic    5       vermilion rockfish  4.0564430142
## 1812     Benthopelagic    1         barred surfperch  3.6151999858
## 1813     Benthopelagic   11            white croaker  4.0033597965
## 1814     Benthopelagic    4         barred sand bass  3.8857140302
## 1815     Benthopelagic   17       vermilion rockfish  3.7830954927
## 1816     Benthopelagic   11          white surfperch  3.6571677448
## 1817     Benthopelagic    8          copper rockfish  4.0661690930
## 1818          Midwater   11            kelp rockfish  4.2335941729
## 1819     Benthopelagic    5            white croaker  3.9593770445
## 1820     Benthopelagic    4         barred surfperch  4.3521345110
## 1821     Benthopelagic    4       california corbina  3.8740130959
## 1822           Benthic   20       california halibut  4.1928096793
## 1823           Benthic    3           diamond turbot  3.9637677416
## 1824     Benthopelagic   12         barred sand bass  3.9798923873
## 1825          Midwater    1                 halfmoon  3.6774794755
## 1826     Benthopelagic   13       vermilion rockfish  3.9147566088
## 1827           Pelagic    5        pacific barracuda  4.4287488984
## 1828     Benthopelagic    3              black perch  4.1180156245
## 1829           Pelagic   21            chub mackerel  3.9271787355
## 1830     Benthopelagic   14            white croaker  3.9908671735
## 1831     Benthopelagic   24       vermilion rockfish  3.9947912309
## 1832     Benthopelagic   20       california corbina  3.6963254321
## 1833     Benthopelagic   21         barred sand bass  3.9209103845
## 1834     Benthopelagic   11            white croaker  4.0233122958
## 1835          Midwater   21                kelp bass  3.9960740614
## 1836          Midwater    1         shiner surfperch  4.0243162102
## 1837          Midwater    5         shiner surfperch  4.1781011339
## 1838     Benthopelagic   11           brown rockfish  3.7048877333
## 1839     Benthopelagic    5         barred sand bass  4.1343205536
## 1840           Pelagic    5          pacific sardine  4.0259668788
## 1841           Benthic   16         hornyhead turbot  4.0203724231
## 1842          Midwater    1         shiner surfperch  3.8544042040
## 1843     Benthopelagic    5                  opaleye  4.2019166384
## 1844     Benthopelagic   20            white croaker  4.3340805760
## 1845     Benthopelagic   21            white croaker  3.9284370347
## 1846     Benthopelagic   11          spotfin croaker  3.7746007542
## 1847           Benthic   22  california scorpionfish  3.8791864114
## 1848           Pelagic    5          pacific sardine  4.0874782620
## 1849     Benthopelagic    1                  opaleye  4.0372965380
## 1850          Midwater    1         shiner surfperch  3.6548037942
## 1851     Benthopelagic   11         barred surfperch  3.9299241467
## 1852          Midwater   11         shiner surfperch  4.0658476542
## 1853     Benthopelagic   12            white croaker  4.0925247798
## 1854          Midwater   21                queenfish  4.5127608335
## 1855           Benthic    4    shovelnose guitarfish  3.8873498102
## 1856     Benthopelagic   21         barred sand bass  4.0187128723
## 1857     Benthopelagic   10            white croaker  4.2015212678
## 1858     Benthopelagic    1       california corbina  4.1443152718
## 1859     Benthopelagic   11            white croaker  4.0515499143
## 1860          Midwater   11                kelp bass  4.2544627791
## 1861     Benthopelagic    3        spotted sand bass  4.1249064648
## 1862     Benthopelagic    3          copper rockfish  3.7477982487
## 1863           Pelagic   11            chub mackerel  3.7796315820
## 1864           Pelagic    5             market squid  4.2920635003
## 1865           Pelagic   11            chub mackerel  3.8595502730
## 1866           Pelagic   21            chub mackerel  4.1258175219
## 1867           Benthic   22  california scorpionfish  4.0120942934
## 1868          Midwater    4         shiner surfperch  3.7202208285
## 1869           Benthic   18  california scorpionfish  3.8296256959
## 1870     Benthopelagic    5                  opaleye  3.9224390781
## 1871          Midwater   21                queenfish  4.0644735568
## 1872     Benthopelagic    5          copper rockfish  3.9302352968
## 1873     Benthopelagic   11         barred sand bass  4.1759114409
## 1874     Benthopelagic   21        spotted sand bass  4.0745463778
## 1875     Benthopelagic   22            white croaker  4.4061456650
## 1876           Pelagic    5         northern anchovy  3.9828960988
## 1877     Benthopelagic   21            leopard shark  4.0287955029
## 1878          Midwater   11         shiner surfperch  3.5057550570
## 1879     Benthopelagic   21            white croaker  4.3483599322
## 1880           Benthic    5       california halibut  4.0432528997
## 1881          Midwater   11                kelp bass  4.0176953249
## 1882          Midwater   18                kelp bass  3.8410727495
## 1883     Benthopelagic    5            white croaker  3.9185401939
## 1884     Benthopelagic    1         barred surfperch  4.1394003648
## 1885     Benthopelagic   20            white croaker  4.0668695936
## 1886     Benthopelagic    4 brown smooth-hound shark  3.7125671237
## 1887     Benthopelagic   11         barred sand bass  3.9103140083
## 1888           Benthic   15         hornyhead turbot  3.9704893142
## 1889           Benthic    5  california scorpionfish  4.0275631658
## 1890     Benthopelagic   14       vermilion rockfish  3.9958256984
## 1891           Pelagic    5             market squid  3.9310044638
## 1892     Benthopelagic    5            black croaker  3.7516987429
## 1893     Benthopelagic    1         barred surfperch  3.8291000938
## 1894          Midwater    2        walleye surfperch  3.6518389603
## 1895     Benthopelagic   16       vermilion rockfish  3.6944806913
## 1896           Pelagic    4            chub mackerel  4.1171439893
## 1897     Benthopelagic    1        yellowfin croaker  4.0212008344
## 1898          Midwater    5                kelp bass  4.3347445641
## 1899     Benthopelagic    6          copper rockfish  4.1541065703
## 1900           Benthic    9         hornyhead turbot  3.8209357693
## 1901     Benthopelagic   13           brown rockfish  4.0850820137
## 1902     Benthopelagic    4            white croaker  3.9945685552
## 1903     Benthopelagic   21        spotted sand bass  4.1864219743
## 1904           Pelagic    6             market squid  3.6764486296
## 1905     Benthopelagic   11            white croaker  3.9731718382
## 1906     Benthopelagic   16       vermilion rockfish  4.1075883678
## 1907           Benthic    5           diamond turbot  4.1271848658
## 1908          Midwater    5                kelp bass  3.9642659446
## 1909     Benthopelagic    3        rainbow surfperch  3.6691499329
## 1910           Benthic   21       california halibut  3.9805308249
## 1911     Benthopelagic   21            white croaker  4.0835217292
## 1912     Benthopelagic   11          white surfperch  4.2468095839
## 1913     Benthopelagic    4        yellowfin croaker  3.6721574882
## 1914           Pelagic    5         northern anchovy  3.8704559987
## 1915           Pelagic   21         northern anchovy  3.8958209804
## 1916     Benthopelagic   21        yellowfin croaker  4.0730767943
## 1917     Benthopelagic   13       vermilion rockfish  4.1152631624
## 1918     Benthopelagic   11         barred sand bass  3.9219040138
## 1919     Benthopelagic    1       california corbina  4.0234710148
## 1920     Benthopelagic    5       vermilion rockfish  3.8722734308
## 1921          Midwater    1                 halfmoon  4.2120808527
## 1922     Benthopelagic   23          starry rockfish  4.0545331318
## 1923     Benthopelagic    9          copper rockfish  4.2898936853
## 1924     Benthopelagic    5            white croaker  3.9212027123
## 1925     Benthopelagic   12         barred sand bass  4.1755009851
## 1926     Benthopelagic   23            white croaker  4.0047291265
## 1927           Pelagic    5            chub mackerel  4.1029571975
## 1928          Midwater    4                kelp bass  4.1300841471
## 1929           Pelagic    5         northern anchovy  3.9587253330
## 1930     Benthopelagic    1        spotted sand bass  3.5907274242
## 1931           Benthic   16         hornyhead turbot  4.1478572134
## 1932          Midwater   11                kelp bass  3.8419043826
## 1933           Pelagic   21            chub mackerel  3.5697151312
## 1934     Benthopelagic    1          ocean whitefish  3.7963475456
## 1935     Benthopelagic    1       california corbina  3.9638561643
## 1936     Benthopelagic   21        spotted sand bass  4.2149923724
## 1937           Pelagic    5          pacific sardine  4.0091935921
## 1938     Benthopelagic    4                  opaleye  3.9124904299
## 1939           Pelagic    6          pacific sardine  4.0392070655
## 1940           Pelagic   11            chub mackerel  4.1995728519
## 1941          Midwater   21                kelp bass  4.0713404595
## 1942     Benthopelagic    1     california sheephead  4.2631255789
## 1943          Midwater   10                kelp bass  4.0291688891
## 1944     Benthopelagic   13            white croaker  4.0716540144
## 1945           Pelagic    5            chub mackerel  3.8632517117
## 1946           Benthic   15         hornyhead turbot  4.2429890890
## 1947     Benthopelagic   24          starry rockfish  4.0216453259
## 1948     Benthopelagic   14       vermilion rockfish  3.9432285145
## 1949     Benthopelagic   22            white croaker  4.2548374484
## 1950           Benthic    5    shovelnose guitarfish  3.9712095504
## 1951           Benthic   12  california scorpionfish  3.9925385677
## 1952     Benthopelagic   11   gray smoothhound shark  4.1579979520
## 1953     Benthopelagic    3        rainbow surfperch  3.7544704763
## 1954     Benthopelagic    1                  opaleye  4.2453626659
## 1955           Pelagic    5             market squid  3.9186291653
## 1956           Pelagic    4            chub mackerel  3.9536535137
## 1957           Pelagic    5          pacific sardine  3.9660256193
## 1958     Benthopelagic   15            white croaker  4.1049032066
## 1959           Pelagic    5             market squid  4.0946334428
## 1960           Pelagic   21            chub mackerel  3.9564940132
## 1961     Benthopelagic   11           brown rockfish  4.1846409851
## 1962     Benthopelagic   20        yellowfin croaker  3.8121635481
## 1963     Benthopelagic   22         barred sand bass  4.0115869384
## 1964           Pelagic    5          pacific sardine  4.0663939806
## 1965           Benthic   13         hornyhead turbot  4.0200293414
## 1966          Midwater   12                kelp bass  4.0567811699
## 1967     Benthopelagic   22            white croaker  3.8647116273
## 1968           Pelagic    6             market squid  3.8404088224
## 1969           Pelagic    5          pacific sardine  4.0181070403
## 1970     Benthopelagic    4       california corbina  3.8677860495
## 1971     Benthopelagic   21        spotted sand bass  4.3254619871
## 1972     Benthopelagic    6    greenspotted rockfish  3.8587189584
## 1973           Pelagic    5             market squid  3.8402076438
## 1974     Benthopelagic    4            white croaker  3.7905765223
## 1975     Benthopelagic    1       california corbina  3.7668322531
## 1976          Midwater    4         shiner surfperch  3.8988731626
## 1977     Benthopelagic   23       vermilion rockfish  3.7587066617
## 1978     Benthopelagic   20       california corbina  3.7097351319
## 1979           Pelagic    5            chub mackerel  4.1578015305
## 1980     Benthopelagic   21         barred sand bass  3.6112407377
## 1981           Benthic    5  california scorpionfish  4.1331293602
## 1982           Pelagic    5             market squid  4.0866941688
## 1983     Benthopelagic   21        yellowfin croaker  4.2476178608
## 1984           Benthic    5          longfin sanddab  4.1446772060
## 1985     Benthopelagic    5       vermilion rockfish  3.9086850354
## 1986          Midwater   13     chilipepper rockfish  3.6825609729
## 1987     Benthopelagic    4        yellowfin croaker  3.6770760865
## 1988     Benthopelagic   21        yellowfin croaker  3.9251109308
## 1989     Benthopelagic    1        yellowfin croaker  4.0029872803
## 1990     Benthopelagic    3                  opaleye  4.4653454622
## 1991     Benthopelagic   11        yellowfin croaker  4.3776378754
## 1992           Benthic   15         hornyhead turbot  3.9093422866
## 1993          Midwater    3         shiner surfperch  3.9116480265
## 1994     Benthopelagic    3        spotted sand bass  3.7043531260
## 1995           Benthic   13         hornyhead turbot  4.2924669970
## 1996     Benthopelagic    7       vermilion rockfish  4.0444483114
## 1997          Midwater    3                kelp bass  4.0932574216
## 1998     Benthopelagic   22       vermilion rockfish  3.7570562003
## 1999     Benthopelagic   11          gopher rockfish  3.9875594350
## 2000     Benthopelagic    4         barred sand bass  3.9236347205
## 2001     Benthopelagic    5         barred sand bass  1.7084528783
## 2002          Midwater   10                kelp bass  1.4641511420
## 2003           Benthic    4    california lizardfish  1.4885256971
## 2004     Benthopelagic    8            white croaker  1.3000217945
## 2005          Midwater   11         shiner surfperch  1.4402263737
## 2006     Benthopelagic    1     california sheephead  1.2885029730
## 2007     Benthopelagic    5            white croaker  1.5847358607
## 2008     Benthopelagic   11            white croaker  1.5221816209
## 2009           Benthic    1           diamond turbot  1.2134419943
## 2010     Benthopelagic    6       vermilion rockfish  1.8594323823
## 2011           Pelagic   21            chub mackerel  1.5286084008
## 2012          Midwater    4           striped mullet  1.7333371250
## 2013           Benthic   19  california scorpionfish  1.4764287273
## 2014          Midwater    1         shiner surfperch  1.4828699810
## 2015     Benthopelagic   11         barred surfperch  1.3791301958
## 2016     Benthopelagic   11        spotted sand bass  1.4635103978
## 2017           Pelagic    5            chub mackerel  1.8035661951
## 2018           Pelagic    5            chub mackerel  1.8366661020
## 2019     Benthopelagic   11            white croaker  1.3120661228
## 2020     Benthopelagic    5           brown rockfish  1.4228665758
## 2021          Midwater    4           striped mullet  1.6814278453
## 2022          Midwater   21                kelp bass  1.6959249219
## 2023     Benthopelagic   21        yellowfin croaker  1.4604336295
## 2024     Benthopelagic    1         barred surfperch  1.7081261753
## 2025     Benthopelagic   14          starry rockfish  1.3593838834
## 2026     Benthopelagic   11 brown smooth-hound shark  1.6618171116
## 2027     Benthopelagic   11           brown rockfish  1.7445816039
## 2028          Midwater    1        walleye surfperch  1.2336103104
## 2029     Benthopelagic   20              black perch  1.3612554055
## 2030           Benthic   10  california scorpionfish  1.5245220934
## 2031          Midwater   22                kelp bass  1.5330492696
## 2032     Benthopelagic    1        rainbow surfperch  1.5460622734
## 2033          Midwater   24      squarespot rockfish  1.6955361592
## 2034     Benthopelagic   21        yellowfin croaker  1.7706637098
## 2035     Benthopelagic   11       vermilion rockfish  1.6089540787
## 2036     Benthopelagic   11         barred sand bass  1.7165209685
## 2037           Benthic   22  california scorpionfish  1.3440183779
## 2038     Benthopelagic    1                  opaleye  1.3715802818
## 2039     Benthopelagic   21          white surfperch  1.4299404585
## 2040          Midwater    4           striped mullet  1.3595115527
## 2041           Pelagic   21            chub mackerel  1.3557079198
## 2042     Benthopelagic   22       vermilion rockfish  1.5269532648
## 2043     Benthopelagic   13            white croaker  1.9314063856
## 2044           Benthic    8  california scorpionfish  1.4837676879
## 2045     Benthopelagic    5       vermilion rockfish  1.8324395406
## 2046     Benthopelagic    3        rainbow surfperch  1.6692434254
## 2047     Benthopelagic    9   greenblotched rockfish  1.6117184367
## 2048           Pelagic   21            chub mackerel  1.4052322621
## 2049     Benthopelagic    5            white croaker  1.3393737173
## 2050           Pelagic   21            chub mackerel  1.3759160109
## 2051           Pelagic    5          pacific sardine  1.6419732871
## 2052          Midwater   12                kelp bass  1.5920824913
## 2053     Benthopelagic   11         barred sand bass  1.7264542580
## 2054           Benthic    8         hornyhead turbot  1.4121875390
## 2055           Benthic    4           spotted turbot  1.6102466777
## 2056           Benthic    5  california scorpionfish  1.4811275099
## 2057          Midwater   21                kelp bass  1.5143163253
## 2058     Benthopelagic    1       california corbina  1.5778117754
## 2059           Pelagic   21            chub mackerel  1.7823973759
## 2060           Benthic    3           diamond turbot  1.6247625869
## 2061           Pelagic   11            chub mackerel  1.3591199169
## 2062     Benthopelagic    9   greenblotched rockfish  1.6270342923
## 2063     Benthopelagic    5            white croaker  1.6098573884
## 2064     Benthopelagic    4        yellowfin croaker  1.4209735567
## 2065          Midwater    7      squarespot rockfish  1.4579294622
## 2066     Benthopelagic   15        speckled rockfish  1.7075936292
## 2067     Benthopelagic   11          white surfperch  1.5798549991
## 2068     Benthopelagic   13       vermilion rockfish  1.6513965389
## 2069     Benthopelagic    2        spotted sand bass  1.4959953033
## 2070     Benthopelagic   15       vermilion rockfish  1.7030888938
## 2071     Benthopelagic   13            white croaker  1.8119233079
## 2072     Benthopelagic    1              black perch  1.2922447278
## 2073     Benthopelagic    8         barred sand bass  1.8201586569
## 2074           Pelagic   11            chub mackerel  1.7943422271
## 2075           Pelagic    6             market squid  1.4197052418
## 2076     Benthopelagic   10            white croaker  1.3369873455
## 2077           Benthic    4           spotted turbot  1.8449855822
## 2078          Midwater   11                kelp bass  1.8211210010
## 2079     Benthopelagic    1              black perch  1.5249622891
## 2080     Benthopelagic   21            white croaker  1.7618807792
## 2081     Benthopelagic   20       california corbina  1.7462805286
## 2082     Benthopelagic   11              black perch  1.6844415022
## 2083           Pelagic   21            chub mackerel  1.4845385552
## 2084     Benthopelagic    1        yellowfin croaker  1.3667714591
## 2085     Benthopelagic   10           brown rockfish  1.4167753205
## 2086           Pelagic   11            chub mackerel  1.7928894141
## 2087     Benthopelagic   11          gopher rockfish  1.5476104182
## 2088     Benthopelagic   21        spotted sand bass  1.5388637659
## 2089     Benthopelagic   23       vermilion rockfish  1.5270467372
## 2090           Pelagic    5            chub mackerel  1.6782695775
## 2091          Midwater    3         shiner surfperch  1.5337449490
## 2092          Midwater   11         shiner surfperch  1.3810551557
## 2093     Benthopelagic   20         barred surfperch  1.2215367618
## 2094     Benthopelagic    3         barred surfperch  1.6937240723
## 2095     Benthopelagic   21        yellowfin croaker  1.4603392051
## 2096     Benthopelagic    5       california corbina  1.3902788855
## 2097     Benthopelagic    5            white croaker  1.7436991680
## 2098           Pelagic    5             market squid  1.6521766060
## 2099     Benthopelagic   17            white croaker  1.7567767783
## 2100     Benthopelagic   20         barred sand bass  1.6049657095
## 2101     Benthopelagic    3              black perch  1.4127828283
## 2102     Benthopelagic   11            white croaker  1.6644347001
## 2103     Benthopelagic    5                  opaleye  1.3717994450
## 2104     Benthopelagic    5            white croaker  1.6914556510
## 2105          Midwater   21                kelp bass  1.9289502787
## 2106     Benthopelagic   23       vermilion rockfish  1.4410617851
## 2107     Benthopelagic    4       california corbina  1.6112855744
## 2108     Benthopelagic   11              black perch  1.5019918692
## 2109     Benthopelagic    5                  opaleye  1.6168692007
## 2110     Benthopelagic    5            white croaker  1.4975953693
## 2111     Benthopelagic   11        spotted sand bass  1.7094804774
## 2112           Pelagic   21            chub mackerel  1.3799962930
## 2113           Pelagic    5         northern anchovy  1.5281956871
## 2114     Benthopelagic    3        spotted sand bass  1.6366290220
## 2115     Benthopelagic   20           pile surfperch  1.6855639801
## 2116           Pelagic    5         northern anchovy  1.4973548320
## 2117           Benthic   11         hornyhead turbot  1.4435532063
## 2118     Benthopelagic   11            black croaker  1.6936349454
## 2119     Benthopelagic    1          white surfperch  1.6192741215
## 2120     Benthopelagic   11         barred sand bass  1.5760498257
## 2121     Benthopelagic   14            white croaker  1.5156595281
## 2122     Benthopelagic    3       california corbina  1.5906377524
## 2123           Pelagic    5            chub mackerel  1.7878783905
## 2124     Benthopelagic   12            white croaker  1.4002246955
## 2125     Benthopelagic    1        yellowfin croaker  1.6755519816
## 2126     Benthopelagic   22          starry rockfish  1.4702586201
## 2127     Benthopelagic    5                  opaleye  1.8185270687
## 2128           Pelagic   11            chub mackerel  1.8056562615
## 2129     Benthopelagic   22            white croaker  1.5940878047
## 2130     Benthopelagic   17        speckled rockfish  1.4321853825
## 2131     Benthopelagic   11         barred sand bass  1.4867890680
## 2132     Benthopelagic   21        spotted sand bass  1.3148278721
## 2133     Benthopelagic    1        spotted sand bass  1.7961692265
## 2134     Benthopelagic    4           pile surfperch  1.7874889775
## 2135     Benthopelagic    5                  opaleye  1.2419588778
## 2136          Midwater    2                kelp bass  1.9179543300
## 2137     Benthopelagic   10              black perch  1.5789771549
## 2138           Pelagic    5          pacific sardine  1.5217802489
## 2139          Midwater    1         shiner surfperch  1.4855406936
## 2140     Benthopelagic    1         barred surfperch  1.4098842643
## 2141     Benthopelagic    2            white croaker  1.4554115236
## 2142     Benthopelagic    1            white croaker  1.4765323357
## 2143     Benthopelagic    5         barred sand bass  1.9571036287
## 2144     Benthopelagic   24       vermilion rockfish  1.6535322538
## 2145          Midwater    3          canary rockfish  1.3438637081
## 2146     Benthopelagic   18            white croaker  1.4720905111
## 2147     Benthopelagic    7           brown rockfish  1.7197776643
## 2148          Midwater    5                queenfish  1.7828658947
## 2149           Benthic    1           diamond turbot  1.5794613647
## 2150     Benthopelagic    1            white croaker  1.5064637397
## 2151           Pelagic    5             market squid  1.5889092834
## 2152           Pelagic    5             market squid  1.4446191945
## 2153     Benthopelagic    3        spotted sand bass  1.6470676157
## 2154           Pelagic    5             market squid  1.5344601294
## 2155          Midwater   11                kelp bass  1.3638424541
## 2156           Benthic    5       california halibut  1.4880408790
## 2157           Benthic   19         hornyhead turbot  1.4664005451
## 2158           Pelagic    5         northern anchovy  1.9679198986
## 2159          Midwater   21                kelp bass  1.4890509870
## 2160           Pelagic   21            chub mackerel  1.7630022194
## 2161          Midwater    1                queenfish  1.3495725841
## 2162     Benthopelagic    3        spotted sand bass  1.5536859192
## 2163     Benthopelagic   14    greenspotted rockfish  1.4107769817
## 2164     Benthopelagic    5            white croaker  1.9377319414
## 2165     Benthopelagic   10   greenblotched rockfish  1.7505503554
## 2166     Benthopelagic    5                  opaleye  1.3057958283
## 2167     Benthopelagic    1            white croaker  1.3649753559
## 2168           Pelagic    5          pacific sardine  1.6732924832
## 2169          Midwater    1            blue rockfish  1.1824322195
## 2170          Midwater   21                kelp bass  1.3088637672
## 2171     Benthopelagic    3         barred sand bass  1.7234158080
## 2172           Pelagic   21            chub mackerel  1.1899705271
## 2173     Benthopelagic    4                  opaleye  1.6874731638
## 2174     Benthopelagic    1     california sheephead  1.8640529073
## 2175     Benthopelagic   11              black perch  1.2429789080
## 2176     Benthopelagic    1        yellowfin croaker  1.8416363996
## 2177     Benthopelagic   18              black perch  1.6260883352
## 2178     Benthopelagic    1        yellowfin croaker  1.6555723054
## 2179     Benthopelagic   21        spotted sand bass  1.7745129005
## 2180     Benthopelagic    5                  opaleye  1.3518465636
## 2181     Benthopelagic   12       vermilion rockfish  1.4563736744
## 2182     Benthopelagic   18       vermilion rockfish  1.7534868107
## 2183     Benthopelagic    3              black perch  1.4311973966
## 2184          Midwater    3                kelp bass  1.5526351483
## 2185     Benthopelagic   12            white croaker  1.8029588784
## 2186          Midwater   21                kelp bass  1.0626768700
## 2187          Midwater    4         shiner surfperch  1.7836487132
## 2188     Benthopelagic   11          gopher rockfish  2.0105158486
## 2189     Benthopelagic    3       vermilion rockfish  1.7914814668
## 2190     Benthopelagic   14         barred sand bass  1.7592639495
## 2191          Midwater   21                kelp bass  1.6558944850
## 2192          Midwater    1                queenfish  1.6049741652
## 2193     Benthopelagic   22          starry rockfish  1.8871792493
## 2194     Benthopelagic   20            white croaker  1.6605427655
## 2195     Benthopelagic    4       california corbina  1.4713475019
## 2196     Benthopelagic    8              black perch  1.5401040314
## 2197           Benthic   20         hornyhead turbot  1.5771024918
## 2198          Midwater   21                kelp bass  1.4617607548
## 2199     Benthopelagic    4              black perch  1.6659505473
## 2200     Benthopelagic    4            white croaker  1.8313310781
## 2201     Benthopelagic    4              black perch  1.6660945641
## 2202     Benthopelagic   21        yellowfin croaker  1.4439114104
## 2203     Benthopelagic    1                  opaleye  1.1671666313
## 2204           Benthic   21         hornyhead turbot  1.7482620127
## 2205     Benthopelagic    4         barred surfperch  1.7358757183
## 2206          Midwater   11                kelp bass  1.3025821857
## 2207           Pelagic    5             market squid  1.6432497190
## 2208           Benthic    1           diamond turbot  1.5661768051
## 2209     Benthopelagic    1            white croaker  1.6628668271
## 2210     Benthopelagic    4              black perch  1.6487376488
## 2211           Pelagic    6             market squid  2.0852599067
## 2212     Benthopelagic   11            white croaker  1.7139368513
## 2213     Benthopelagic    9            white croaker  1.2244528530
## 2214           Pelagic   21         northern anchovy  1.7192197615
## 2215     Benthopelagic   11           brown rockfish  1.1694710903
## 2216     Benthopelagic   11          ocean whitefish  1.6234322072
## 2217           Benthic   17         hornyhead turbot  1.7976983376
## 2218           Benthic   11  california scorpionfish  1.5195637044
## 2219           Benthic   20           diamond turbot  1.3001859478
## 2220     Benthopelagic    4        spotted sand bass  1.9696967106
## 2221          Midwater   11           olive rockfish  1.8255532241
## 2222     Benthopelagic    1              black perch  1.6110187393
## 2223     Benthopelagic    5            white croaker  1.4566145708
## 2224           Pelagic    5         northern anchovy  1.4962011599
## 2225     Benthopelagic   11        yellowfin croaker  1.7055425656
## 2226          Midwater   16                kelp bass  1.6287171310
## 2227     Benthopelagic   11            white croaker  1.5637637538
## 2228     Benthopelagic   11              black perch  1.6433498735
## 2229          Midwater   18                kelp bass  1.4443504361
## 2230     Benthopelagic    3              black perch  1.8200064561
## 2231          Midwater    1                kelp bass  1.1800983182
## 2232     Benthopelagic   15            white croaker  1.7882014765
## 2233     Benthopelagic   22         barred sand bass  1.5123539492
## 2234     Benthopelagic    1            white croaker  1.7686343488
## 2235     Benthopelagic   21        yellowfin croaker  1.5670382378
## 2236           Benthic    5  california scorpionfish  1.5017296302
## 2237           Pelagic   21            chub mackerel  1.5251413328
## 2238           Benthic    1           spotted turbot  1.6295259355
## 2239     Benthopelagic   11          gopher rockfish  1.5015635519
## 2240     Benthopelagic    1            white croaker  1.4413386805
## 2241     Benthopelagic    5       california corbina  1.3973291206
## 2242     Benthopelagic    1              black perch  1.6919782578
## 2243     Benthopelagic   11          spotfin croaker  1.3381726704
## 2244     Benthopelagic    8          copper rockfish  1.6772181338
## 2245     Benthopelagic    4        yellowfin croaker  1.7406219519
## 2246     Benthopelagic   12            white croaker  1.6118731222
## 2247          Midwater    8      yellowtail rockfish  1.6820638844
## 2248          Midwater    3                kelp bass  1.9915724641
## 2249     Benthopelagic    5          spotfin croaker  1.6635651733
## 2250           Pelagic    5          pacific sardine  1.8939843907
## 2251           Benthic    5  california scorpionfish  1.5517670530
## 2252     Benthopelagic    3         barred surfperch  1.7288642030
## 2253           Pelagic    6          pacific sardine  1.8838823417
## 2254     Benthopelagic   11       vermilion rockfish  1.6167917379
## 2255           Pelagic    5         northern anchovy  1.6193202832
## 2256           Pelagic   11            chub mackerel  1.4616190726
## 2257           Pelagic   21            chub mackerel  1.5932602484
## 2258          Midwater    5                top smelt  2.0298454138
## 2259          Midwater    2                queenfish  1.4564594068
## 2260     Benthopelagic    4            white croaker  1.6072826206
## 2261     Benthopelagic   18              black perch  1.1380431678
## 2262          Midwater   21                kelp bass  1.6357783660
## 2263     Benthopelagic    4          copper rockfish  1.4969544330
## 2264     Benthopelagic   20              black perch  1.7477332127
## 2265           Benthic    1         speckled sanddab  1.3892122471
## 2266     Benthopelagic   18            white croaker  1.6525274603
## 2267     Benthopelagic   11         barred sand bass  1.4961110900
## 2268     Benthopelagic   11          spotfin croaker  1.7673438378
## 2269           Pelagic   11            chub mackerel  1.4611604077
## 2270           Pelagic    5            chub mackerel  1.5009970619
## 2271           Benthic   18         hornyhead turbot  1.7367792062
## 2272           Benthic   12  california scorpionfish  1.5921885744
## 2273           Benthic    1             fantail sole  1.2803401914
## 2274          Midwater   21                kelp bass  1.5505004036
## 2275     Benthopelagic    3          white surfperch  1.4591429894
## 2276     Benthopelagic   13       vermilion rockfish  1.5948050086
## 2277     Benthopelagic   18            white croaker  1.8403806940
## 2278          Midwater    1         shiner surfperch  1.6889527455
## 2279     Benthopelagic   14            white croaker  1.7068210039
## 2280          Midwater   11                kelp bass  1.5009779066
## 2281           Benthic    5         speckled sanddab  1.9124947919
## 2282           Benthic   17  california scorpionfish  1.4366926927
## 2283     Benthopelagic   21       california corbina  1.5216683332
## 2284           Benthic   11  california scorpionfish  1.1684699305
## 2285           Benthic   17         hornyhead turbot  1.5333231808
## 2286     Benthopelagic   12              black perch  1.8514266637
## 2287     Benthopelagic    1            white croaker  1.6334360757
## 2288     Benthopelagic    5       california corbina  1.3810212936
## 2289     Benthopelagic    4              black perch  1.6613337787
## 2290     Benthopelagic    5            white croaker  1.3356111822
## 2291     Benthopelagic    1            white croaker  1.3487284264
## 2292           Benthic   14         hornyhead turbot  1.3652169950
## 2293           Benthic    4    shovelnose guitarfish  1.3769866236
## 2294          Midwater    1        walleye surfperch  1.6946838055
## 2295          Midwater   18                kelp bass  1.7502774548
## 2296     Benthopelagic    5            white croaker  1.2123863110
## 2297     Benthopelagic    5         barred sand bass  1.6444448868
## 2298          Midwater    2                kelp bass  1.7046150448
## 2299     Benthopelagic   21         barred sand bass  1.4861825514
## 2300     Benthopelagic   12       vermilion rockfish  1.5410729588
## 2301     Benthopelagic    2       quillback rockfish  1.5804420216
## 2302     Benthopelagic   21            white croaker  1.6905321409
## 2303     Benthopelagic   16       vermilion rockfish  1.6401575143
## 2304     Benthopelagic    3              black perch  1.5136010857
## 2305           Benthic    8  california scorpionfish  1.6769417991
## 2306           Pelagic    5          pacific sardine  1.4969068475
## 2307           Benthic    5  california scorpionfish  1.4905215847
## 2308     Benthopelagic    8          copper rockfish  1.5796740343
## 2309           Pelagic    5          pacific sardine  1.6977730929
## 2310     Benthopelagic    2            white croaker  1.7982279134
## 2311     Benthopelagic    1            white croaker  1.4398732547
## 2312     Benthopelagic   21            leopard shark  1.5300893224
## 2313     Benthopelagic   14              black perch  1.3784500195
## 2314     Benthopelagic   16       vermilion rockfish  1.7436032307
## 2315     Benthopelagic   10       vermilion rockfish  1.4040508935
## 2316          Midwater   21                kelp bass  1.5724566659
## 2317     Benthopelagic    1            rosy rockfish  1.8744767250
## 2318          Midwater    3         shiner surfperch  1.7903520447
## 2319     Benthopelagic   11            white croaker  1.5976642356
## 2320     Benthopelagic    1         barred surfperch  1.5160176852
## 2321          Midwater    1         shiner surfperch  1.6753840613
## 2322           Pelagic   21            chub mackerel  1.3232644950
## 2323     Benthopelagic   16       vermilion rockfish  1.2811980035
## 2324     Benthopelagic    7        speckled rockfish  1.5085650972
## 2325          Midwater    4         shiner surfperch  1.6267809268
## 2326     Benthopelagic   11       vermilion rockfish  1.5081381806
## 2327           Pelagic    5            chub mackerel  1.7488569002
## 2328          Midwater   14                kelp bass  1.4014771118
## 2329     Benthopelagic    3              black perch  1.8672341833
## 2330     Benthopelagic    5            black croaker  1.2234451798
## 2331          Midwater    5                top smelt  1.4082258125
## 2332          Midwater   11                top smelt  1.6359195052
## 2333           Benthic   10         hornyhead turbot  1.6279364100
## 2334           Pelagic    5             market squid  1.3567480121
## 2335     Benthopelagic   12              black perch  1.7417825229
## 2336     Benthopelagic    1       california corbina  1.9051405770
## 2337     Benthopelagic    3         barred surfperch  1.7892105726
## 2338     Benthopelagic   19       vermilion rockfish  1.6256138538
## 2339     Benthopelagic   15        speckled rockfish  1.8415645381
## 2340           Pelagic    5          pacific sardine  1.8331606965
## 2341     Benthopelagic    4         barred surfperch  1.3093043440
## 2342     Benthopelagic   11              black perch  1.3994638244
## 2343          Midwater   11                kelp bass  1.3398241197
## 2344     Benthopelagic   11         barred surfperch  1.4283468780
## 2345           Pelagic    5         northern anchovy  1.6487440685
## 2346           Pelagic    5          pacific sardine  1.5695046316
## 2347     Benthopelagic   11            white croaker  1.6329123654
## 2348     Benthopelagic   19            white croaker  1.8375826321
## 2349     Benthopelagic    3              black perch  1.5539948681
## 2350     Benthopelagic   19       vermilion rockfish  1.4044586078
## 2351     Benthopelagic   12           brown rockfish  1.7188455076
## 2352     Benthopelagic    6          copper rockfish  1.6871950125
## 2353           Pelagic    5             market squid  1.6082553594
## 2354     Benthopelagic   22              black perch  1.7204831704
## 2355           Benthic   20       california halibut  1.4588233028
## 2356     Benthopelagic    2        spotted sand bass  1.5359651967
## 2357           Benthic    1           diamond turbot  1.7168601248
## 2358           Benthic   23         hornyhead turbot  1.6067923661
## 2359     Benthopelagic    5         barred sand bass  1.4079959715
## 2360           Benthic    4    california lizardfish  1.5303981503
## 2361     Benthopelagic   11 brown smooth-hound shark  1.8742625760
## 2362     Benthopelagic   21            white croaker  1.6349747042
## 2363     Benthopelagic    4            flag rockfish  1.4083844508
## 2364           Benthic   12         hornyhead turbot  1.4775811283
## 2365           Benthic    4    shovelnose guitarfish  1.2210060088
## 2366     Benthopelagic   14            white croaker  1.4418093994
## 2367     Benthopelagic    5     california sheephead  1.8313486461
## 2368           Pelagic    5         northern anchovy  1.5272026969
## 2369     Benthopelagic   20       vermilion rockfish  1.7962802751
## 2370     Benthopelagic    2         barred surfperch  1.4406486430
## 2371          Midwater   17      squarespot rockfish  1.8056163325
## 2372     Benthopelagic   18       vermilion rockfish  1.7200912936
## 2373     Benthopelagic   11            white croaker  1.6230815367
## 2374     Benthopelagic    4         barred sand bass  1.7211548445
## 2375          Midwater    4                top smelt  2.0193946961
## 2376           Benthic   17         hornyhead turbot  1.5002179802
## 2377     Benthopelagic   11            white croaker  1.7821465537
## 2378     Benthopelagic   11         barred surfperch  1.5633853019
## 2379           Pelagic    5             market squid  1.6045748183
## 2380           Benthic   19  california scorpionfish  1.4126031341
## 2381           Pelagic    5             market squid  1.6235093993
## 2382     Benthopelagic   10         barred sand bass  1.3998947789
## 2383           Pelagic   11            chub mackerel  1.7512165228
## 2384     Benthopelagic   11              black perch  1.3440040217
## 2385     Benthopelagic   22              black perch  1.3262115281
## 2386     Benthopelagic   12            white croaker  1.6626519906
## 2387           Benthic    5    shovelnose guitarfish  1.6031905467
## 2388     Benthopelagic   20       california corbina  1.5841678355
## 2389     Benthopelagic    5                  opaleye  1.7792628485
## 2390     Benthopelagic   16       vermilion rockfish  1.3702212850
## 2391     Benthopelagic    1        spotted sand bass  1.5982714037
## 2392     Benthopelagic    3        rainbow surfperch  1.3751705136
## 2393     Benthopelagic   17            white croaker  1.6320864213
## 2394           Benthic   22  california scorpionfish  1.7152160795
## 2395          Midwater   21                kelp bass  1.5099666282
## 2396           Pelagic    5             market squid  1.4482161097
## 2397     Benthopelagic   21            white croaker  1.6434831055
## 2398     Benthopelagic    1        rainbow surfperch  1.6270971326
## 2399     Benthopelagic    4       california corbina  1.4500621949
## 2400           Pelagic   21            chub mackerel  1.3435614169
## 2401     Benthopelagic   20            white croaker  4.9341988571
## 2402           Pelagic    6          pacific sardine  4.7274027760
## 2403          Midwater    4           striped mullet  5.0044504078
## 2404           Pelagic   21            chub mackerel  5.1445021274
## 2405           Benthic    1         speckled sanddab  5.0481379198
## 2406     Benthopelagic   11            white croaker  4.5538917222
## 2407           Benthic    8         hornyhead turbot  5.0467198847
## 2408          Midwater    4         shiner surfperch  5.4009743102
## 2409     Benthopelagic   10       vermilion rockfish  4.7211305326
## 2410     Benthopelagic    1        rainbow surfperch  5.1231324847
## 2411          Midwater   11         shiner surfperch  4.7080934406
## 2412     Benthopelagic    5            leopard shark  5.0009852520
## 2413           Pelagic   21            chub mackerel  4.7544234839
## 2414     Benthopelagic   11              black perch  5.2054892417
## 2415          Midwater    4         shiner surfperch  4.8939239682
## 2416     Benthopelagic   14              black perch  4.9076802227
## 2417          Midwater   11                kelp bass  4.6409691471
## 2418     Benthopelagic   18            white croaker  5.1398201365
## 2419          Midwater    4                top smelt  5.2830203050
## 2420     Benthopelagic    5   gray smoothhound shark  5.1068815466
## 2421     Benthopelagic   23            white croaker  5.1104441477
## 2422           Pelagic   21           slough anchovy  4.7953281334
## 2423          Midwater    1                queenfish  5.3870732122
## 2424     Benthopelagic   21            white croaker  4.5875062214
## 2425          Midwater    1                kelp bass  5.0250128139
## 2426     Benthopelagic   24       vermilion rockfish  4.9199114713
## 2427           Pelagic   21            chub mackerel  5.3155117643
## 2428           Pelagic    5          pacific sardine  4.8093623757
## 2429     Benthopelagic    4       california corbina  5.0691936089
## 2430     Benthopelagic    3       california corbina  5.2944047010
## 2431     Benthopelagic   16              black perch  5.1908309028
## 2432           Pelagic    5          pacific sardine  4.9913321263
## 2433           Pelagic   21            chub mackerel  5.3639003273
## 2434     Benthopelagic   21         barred sand bass  4.8220824423
## 2435           Pelagic    6          pacific sardine  5.0388263036
## 2436     Benthopelagic    5        yellowfin croaker  4.9582030990
## 2437           Benthic    1  california scorpionfish  5.0773632647
## 2438          Midwater    4         shiner surfperch  5.0118552666
## 2439           Benthic    5  california scorpionfish  4.9072590005
## 2440     Benthopelagic    5       california corbina  4.9837026997
## 2441           Benthic   19         hornyhead turbot  5.1367728654
## 2442     Benthopelagic    2              black perch  4.7953459578
## 2443     Benthopelagic   21        spotted sand bass  5.1844177053
## 2444     Benthopelagic    7       vermilion rockfish  5.2490322308
## 2445     Benthopelagic    3              black perch  5.1972366716
## 2446           Pelagic   11            chub mackerel  5.2432493967
## 2447     Benthopelagic   22            white croaker  5.2164938300
## 2448          Midwater    2         shiner surfperch  5.2212855102
## 2449     Benthopelagic   11   gray smoothhound shark  4.8187416719
## 2450     Benthopelagic   19            white croaker  4.9467819519
## 2451     Benthopelagic   11            white croaker  5.1738321997
## 2452     Benthopelagic    5            white croaker  4.7744575379
## 2453     Benthopelagic   21          white surfperch  5.2285714158
## 2454          Midwater    5                 halfmoon  5.1487141058
## 2455          Midwater   10                kelp bass  4.9602571298
## 2456          Midwater    1                kelp bass  4.9447395509
## 2457          Midwater    3         shiner surfperch  5.0159867765
## 2458     Benthopelagic   10            white croaker  5.3010915514
## 2459          Midwater    5                queenfish  5.5458864872
## 2460     Benthopelagic    1            white croaker  4.9749944461
## 2461     Benthopelagic    4              black perch  4.9782243690
## 2462     Benthopelagic    1         barred sand bass  4.9296042636
## 2463          Midwater    5                kelp bass  4.9906240912
## 2464           Pelagic    5          pacific sardine  4.7068647801
## 2465     Benthopelagic   21         barred sand bass  4.9516350344
## 2466     Benthopelagic    4           pile surfperch  4.8256067567
## 2467          Midwater   14                kelp bass  5.0190205953
## 2468     Benthopelagic   16          copper rockfish  4.5381132100
## 2469     Benthopelagic    3        spotted sand bass  5.1423938773
## 2470          Midwater   16                kelp bass  5.1140690464
## 2471          Midwater    4                kelp bass  5.0449766308
## 2472     Benthopelagic   14              black perch  5.0825651419
## 2473           Pelagic    6          pacific sardine  5.1930586352
## 2474     Benthopelagic   11              black perch  4.8040220194
## 2475     Benthopelagic    4           pile surfperch  5.0674686996
## 2476     Benthopelagic    5        yellowfin croaker  5.1653083808
## 2477           Benthic   14         hornyhead turbot  5.2569663758
## 2478           Pelagic    5          pacific sardine  4.9518882810
## 2479           Pelagic   21            chub mackerel  5.0224398853
## 2480          Midwater   21                kelp bass  4.9451319639
## 2481     Benthopelagic   10              black perch  5.1252064580
## 2482          Midwater   21                kelp bass  5.0858748424
## 2483           Pelagic    5          pacific sardine  5.1221948021
## 2484          Midwater    3         shiner surfperch  5.2185447830
## 2485     Benthopelagic    8         barred sand bass  5.2694588994
## 2486     Benthopelagic   11         barred sand bass  4.9714002943
## 2487          Midwater    1        walleye surfperch  5.1671495785
## 2488           Benthic   20  california scorpionfish  5.3608635364
## 2489           Benthic   23         hornyhead turbot  5.1243327759
## 2490           Benthic   19  california scorpionfish  5.2578778774
## 2491     Benthopelagic   12           brown rockfish  4.6374275355
## 2492     Benthopelagic   11          white surfperch  4.8212124450
## 2493     Benthopelagic    5       california corbina  5.1431484436
## 2494     Benthopelagic    4              black perch  5.1336048156
## 2495     Benthopelagic    5            white croaker  4.8967776600
## 2496     Benthopelagic    3        spotted sand bass  5.1063623693
## 2497     Benthopelagic   20            white croaker  4.6782406373
## 2498          Midwater    1         shiner surfperch  4.9673485988
## 2499           Benthic   20         hornyhead turbot  4.7883768211
## 2500           Benthic    1           spotted turbot  4.8690243541
## 2501           Benthic   23         hornyhead turbot  5.4130677608
## 2502     Benthopelagic   14       vermilion rockfish  5.0142794858
## 2503           Pelagic    5             market squid  4.7841303879
## 2504     Benthopelagic    8            white croaker  4.8025220391
## 2505           Pelagic    5             market squid  5.0596499599
## 2506     Benthopelagic    5       vermilion rockfish  4.9566648573
## 2507     Benthopelagic   11            white croaker  4.8066310604
## 2508           Benthic    3           diamond turbot  5.3160592108
## 2509           Pelagic   21         northern anchovy  4.9826263729
## 2510           Benthic    8         hornyhead turbot  5.0357382583
## 2511     Benthopelagic    4         barred sand bass  5.0375258406
## 2512          Midwater    3                jacksmelt  5.0299501000
## 2513          Midwater   21                kelp bass  5.1044690698
## 2514     Benthopelagic   11        yellowfin croaker  4.9977003907
## 2515          Midwater    8                kelp bass  4.9309569471
## 2516     Benthopelagic    9       vermilion rockfish  5.3458635229
## 2517          Midwater   21                kelp bass  4.9677781601
## 2518     Benthopelagic    1         barred surfperch  5.3765538253
## 2519          Midwater   11                top smelt  4.8396409194
## 2520     Benthopelagic    5            white croaker  5.1234517985
## 2521     Benthopelagic    4         barred surfperch  5.3025068821
## 2522     Benthopelagic   21        yellowfin croaker  5.1396036058
## 2523     Benthopelagic    5         barred sand bass  5.2670358352
## 2524           Pelagic   21            chub mackerel  4.9679834174
## 2525          Midwater   21                kelp bass  5.4779852456
## 2526     Benthopelagic    8            white croaker  4.8288168815
## 2527           Pelagic   21            chub mackerel  5.0550942614
## 2528     Benthopelagic   16        speckled rockfish  4.9665333775
## 2529     Benthopelagic    5         barred sand bass  5.0888150232
## 2530           Pelagic   21           slough anchovy  5.1602792670
## 2531     Benthopelagic   11            rosy rockfish  5.1382013620
## 2532           Benthic    4           diamond turbot  5.1927675040
## 2533           Benthic   16  california scorpionfish  4.9521002414
## 2534     Benthopelagic   20       vermilion rockfish  5.1182751644
## 2535          Midwater   20                kelp bass  5.0169944096
## 2536          Midwater   21                kelp bass  4.9099845323
## 2537           Benthic   13         hornyhead turbot  5.0450108621
## 2538           Pelagic   21            chub mackerel  5.1698159318
## 2539     Benthopelagic   14       vermilion rockfish  4.7879282807
## 2540          Midwater    5                kelp bass  4.9327782420
## 2541           Benthic   10  california scorpionfish  5.2830647956
## 2542     Benthopelagic    5         barred sand bass  4.7722018391
## 2543          Midwater    4                kelp bass  5.1464320639
## 2544     Benthopelagic    1        yellowfin croaker  4.9430548686
## 2545     Benthopelagic   10           brown rockfish  4.8800460316
## 2546           Benthic    5          longfin sanddab  5.2059608565
## 2547     Benthopelagic    3        yellowfin croaker  5.2163575137
## 2548     Benthopelagic   11            white croaker  5.1173265298
## 2549          Midwater   20                kelp bass  5.0094001676
## 2550           Benthic    5       california halibut  5.3474684696
## 2551           Pelagic    5          pacific sardine  5.0862510530
## 2552          Midwater   21                kelp bass  5.1336894077
## 2553     Benthopelagic    8            white croaker  5.0540817204
## 2554     Benthopelagic    3       california corbina  5.1493433846
## 2555     Benthopelagic    4        spotted sand bass  5.0343625277
## 2556           Benthic   10  california scorpionfish  4.6688622007
## 2557           Benthic    5  california scorpionfish  4.7548981323
## 2558          Midwater   11                top smelt  5.0677201978
## 2559     Benthopelagic   17            white croaker  5.3313845601
## 2560     Benthopelagic    5            white croaker  5.0965689542
## 2561           Pelagic   21         northern anchovy  5.1488111500
## 2562           Pelagic    5          pacific sardine  5.3390708348
## 2563     Benthopelagic    1       california corbina  4.8593708273
## 2564          Midwater    5                kelp bass  5.0947525813
## 2565     Benthopelagic   20            white croaker  5.2210404319
## 2566     Benthopelagic    3            rosy rockfish  5.2758853651
## 2567     Benthopelagic   21        yellowfin croaker  5.2216610467
## 2568     Benthopelagic    1         barred surfperch  5.0804078367
## 2569     Benthopelagic   14         barred sand bass  5.0094952025
## 2570     Benthopelagic    5       vermilion rockfish  4.8943760632
## 2571          Midwater   21                kelp bass  5.0029354742
## 2572     Benthopelagic    3           pile surfperch  5.1752070991
## 2573     Benthopelagic   19       vermilion rockfish  5.0235832166
## 2574           Pelagic    5            chub mackerel  5.1745869055
## 2575          Midwater   21                kelp bass  5.0336147958
## 2576          Midwater    5                queenfish  5.0543345534
## 2577     Benthopelagic   11            white croaker  4.8407794574
## 2578           Benthic    1           diamond turbot  4.9078455495
## 2579           Benthic   22         hornyhead turbot  5.1014777329
## 2580          Midwater    5                kelp bass  5.0022623650
## 2581     Benthopelagic   21          spotfin croaker  5.2066581512
## 2582           Pelagic    5            chub mackerel  4.8648400862
## 2583     Benthopelagic    5       vermilion rockfish  4.9776492982
## 2584     Benthopelagic    1         barred surfperch  4.9429701917
## 2585     Benthopelagic   11            white croaker  5.2898208020
## 2586     Benthopelagic    4         barred sand bass  4.4680682080
## 2587     Benthopelagic   17       vermilion rockfish  5.0811460897
## 2588     Benthopelagic   11          white surfperch  4.8278779229
## 2589     Benthopelagic    8          copper rockfish  4.7955080918
## 2590          Midwater   11            kelp rockfish  5.1719052684
## 2591     Benthopelagic    5            white croaker  4.8814099820
## 2592     Benthopelagic    4         barred surfperch  4.9780980266
## 2593     Benthopelagic    4       california corbina  5.1447678495
## 2594           Benthic   20       california halibut  5.0878177138
## 2595           Benthic    3           diamond turbot  5.0489995836
## 2596     Benthopelagic   12         barred sand bass  5.1971188744
## 2597          Midwater    1                 halfmoon  5.2410356853
## 2598     Benthopelagic   13       vermilion rockfish  4.9358620478
## 2599           Pelagic    5        pacific barracuda  5.2803507405
## 2600     Benthopelagic    3              black perch  5.2701289336
## 2601           Pelagic   21            chub mackerel  4.7778586863
## 2602     Benthopelagic   14            white croaker  4.9323269369
## 2603     Benthopelagic   24       vermilion rockfish  5.4231931903
## 2604     Benthopelagic   20       california corbina  4.9218268832
## 2605     Benthopelagic   21         barred sand bass  5.1591573309
## 2606     Benthopelagic   11            white croaker  5.0140846168
## 2607          Midwater   21                kelp bass  5.0654762684
## 2608          Midwater    1         shiner surfperch  5.3977645935
## 2609          Midwater    5         shiner surfperch  4.7069476569
## 2610     Benthopelagic   11           brown rockfish  4.9698765263
## 2611     Benthopelagic    5         barred sand bass  4.8185942853
## 2612           Pelagic    5          pacific sardine  5.0244637944
## 2613           Benthic   16         hornyhead turbot  5.1756039690
## 2614          Midwater    1         shiner surfperch  5.4828619846
## 2615     Benthopelagic    5                  opaleye  5.1819938719
## 2616     Benthopelagic   20            white croaker  4.6464875715
## 2617     Benthopelagic   21            white croaker  5.0448280086
## 2618     Benthopelagic   11          spotfin croaker  4.9879806617
## 2619           Benthic   22  california scorpionfish  4.6900757998
## 2620           Pelagic    5          pacific sardine  5.3465912123
## 2621     Benthopelagic    1                  opaleye  5.0615764485
## 2622          Midwater    1         shiner surfperch  5.3095865618
## 2623     Benthopelagic   11         barred surfperch  4.5719507147
## 2624          Midwater   11         shiner surfperch  5.0924905988
## 2625     Benthopelagic   12            white croaker  4.7573487427
## 2626          Midwater   21                queenfish  5.2019486958
## 2627           Benthic    4    shovelnose guitarfish  5.1830680584
## 2628     Benthopelagic   21         barred sand bass  5.1385158865
## 2629     Benthopelagic   10            white croaker  5.0030628477
## 2630     Benthopelagic    1       california corbina  5.1754765125
## 2631     Benthopelagic   11            white croaker  5.2429105493
## 2632          Midwater   11                kelp bass  4.7846953223
## 2633     Benthopelagic    3        spotted sand bass  5.1744337810
## 2634     Benthopelagic    3          copper rockfish  5.2930860139
## 2635           Pelagic   11            chub mackerel  5.1762230173
## 2636           Pelagic    5             market squid  4.8019002185
## 2637           Pelagic   11            chub mackerel  4.7860400615
## 2638           Pelagic   21            chub mackerel  4.7158075745
## 2639           Benthic   22  california scorpionfish  4.6268430541
## 2640          Midwater    4         shiner surfperch  5.1926291598
## 2641           Benthic   18  california scorpionfish  5.2821879766
## 2642     Benthopelagic    5                  opaleye  4.9820199704
## 2643          Midwater   21                queenfish  5.1941943407
## 2644     Benthopelagic    5          copper rockfish  5.2813919123
## 2645     Benthopelagic   11         barred sand bass  5.0718536780
## 2646     Benthopelagic   21        spotted sand bass  5.0120745487
## 2647     Benthopelagic   22            white croaker  4.9321720673
## 2648           Pelagic    5         northern anchovy  5.2447756780
## 2649     Benthopelagic   21            leopard shark  4.8327241069
## 2650          Midwater   11         shiner surfperch  4.9077672041
## 2651     Benthopelagic   21            white croaker  5.0059455466
## 2652           Benthic    5       california halibut  4.9897389386
## 2653          Midwater   11                kelp bass  5.1880905201
## 2654          Midwater   18                kelp bass  5.0866074800
## 2655     Benthopelagic    5            white croaker  5.3177132371
## 2656     Benthopelagic    1         barred surfperch  5.0855676489
## 2657     Benthopelagic   20            white croaker  5.1228907051
## 2658     Benthopelagic    4 brown smooth-hound shark  5.0040050037
## 2659     Benthopelagic   11         barred sand bass  4.8194698214
## 2660           Benthic   15         hornyhead turbot  5.0013876575
## 2661           Benthic    5  california scorpionfish  5.1870861662
## 2662     Benthopelagic   14       vermilion rockfish  4.6409085698
## 2663           Pelagic    5             market squid  5.1571801697
## 2664     Benthopelagic    5            black croaker  5.0071770542
## 2665     Benthopelagic    1         barred surfperch  5.0904490790
## 2666          Midwater    2        walleye surfperch  5.2451056699
## 2667     Benthopelagic   16       vermilion rockfish  5.1693644339
## 2668           Pelagic    4            chub mackerel  5.2221934727
## 2669     Benthopelagic    1        yellowfin croaker  5.0184831255
## 2670          Midwater    5                kelp bass  4.8175901165
## 2671     Benthopelagic    6          copper rockfish  5.4593106533
## 2672           Benthic    9         hornyhead turbot  5.1980580463
## 2673     Benthopelagic   13           brown rockfish  4.8478424479
## 2674     Benthopelagic    4            white croaker  5.4383893221
## 2675     Benthopelagic   21        spotted sand bass  4.9872865986
## 2676           Pelagic    6             market squid  4.9756544079
## 2677     Benthopelagic   11            white croaker  4.9747921871
## 2678     Benthopelagic   16       vermilion rockfish  5.2021338916
## 2679           Benthic    5           diamond turbot  4.6561897848
## 2680          Midwater    5                kelp bass  5.0672232840
## 2681     Benthopelagic    3        rainbow surfperch  4.9211174102
## 2682           Benthic   21       california halibut  5.3419192638
## 2683     Benthopelagic   21            white croaker  4.7074881579
## 2684     Benthopelagic   11          white surfperch  5.1794640159
## 2685     Benthopelagic    4        yellowfin croaker  5.0756087634
## 2686           Pelagic    5         northern anchovy  4.7340197942
## 2687           Pelagic   21         northern anchovy  5.2403028046
## 2688     Benthopelagic   21        yellowfin croaker  4.7909390366
## 2689     Benthopelagic   13       vermilion rockfish  5.0162919339
## 2690     Benthopelagic   11         barred sand bass  4.7523864006
## 2691     Benthopelagic    1       california corbina  5.3138091742
## 2692     Benthopelagic    5       vermilion rockfish  4.7056465744
## 2693          Midwater    1                 halfmoon  5.0970088509
## 2694     Benthopelagic   23          starry rockfish  5.1863695952
## 2695     Benthopelagic    9          copper rockfish  4.6168439630
## 2696     Benthopelagic    5            white croaker  5.1671365750
## 2697     Benthopelagic   12         barred sand bass  5.1110229941
## 2698     Benthopelagic   23            white croaker  5.0028250531
## 2699           Pelagic    5            chub mackerel  5.0347574757
## 2700          Midwater    4                kelp bass  5.0166843812
## 2701           Pelagic    5         northern anchovy  5.4240299620
## 2702     Benthopelagic    1        spotted sand bass  5.1272603877
## 2703           Benthic   16         hornyhead turbot  4.8528560298
## 2704          Midwater   11                kelp bass  4.9453643687
## 2705           Pelagic   21            chub mackerel  4.8902494043
## 2706     Benthopelagic    1          ocean whitefish  5.1794421234
## 2707     Benthopelagic    1       california corbina  4.8112181151
## 2708     Benthopelagic   21        spotted sand bass  5.1215201236
## 2709           Pelagic    5          pacific sardine  4.9274785231
## 2710     Benthopelagic    4                  opaleye  4.9165129345
## 2711           Pelagic    6          pacific sardine  5.3568982513
## 2712           Pelagic   11            chub mackerel  5.1744580711
## 2713          Midwater   21                kelp bass  5.0650717551
## 2714     Benthopelagic    1     california sheephead  5.2514720639
## 2715          Midwater   10                kelp bass  5.0038590857
## 2716     Benthopelagic   13            white croaker  4.9645874842
## 2717           Pelagic    5            chub mackerel  4.9033157731
## 2718           Benthic   15         hornyhead turbot  5.0626100577
## 2719     Benthopelagic   24          starry rockfish  5.1055975506
## 2720     Benthopelagic   14       vermilion rockfish  4.8962429462
## 2721     Benthopelagic   22            white croaker  4.6365812340
## 2722           Benthic    5    shovelnose guitarfish  5.0147346289
## 2723           Benthic   12  california scorpionfish  5.2389411573
## 2724     Benthopelagic   11   gray smoothhound shark  4.9521887342
## 2725     Benthopelagic    3        rainbow surfperch  5.2936920106
## 2726     Benthopelagic    1                  opaleye  5.0597334707
## 2727           Pelagic    5             market squid  4.9680762241
## 2728           Pelagic    4            chub mackerel  5.1007203877
## 2729           Pelagic    5          pacific sardine  5.2155356439
## 2730     Benthopelagic   15            white croaker  4.7408472271
## 2731           Pelagic    5             market squid  5.1020593211
## 2732           Pelagic   21            chub mackerel  5.2465098853
## 2733     Benthopelagic   11           brown rockfish  4.8613530383
## 2734     Benthopelagic   20        yellowfin croaker  4.9384899603
## 2735     Benthopelagic   22         barred sand bass  5.0800833302
## 2736           Pelagic    5          pacific sardine  5.2224185683
## 2737           Benthic   13         hornyhead turbot  5.2003541678
## 2738          Midwater   12                kelp bass  4.9691145934
## 2739     Benthopelagic   22            white croaker  4.9796090437
## 2740           Pelagic    6             market squid  5.0098531063
## 2741           Pelagic    5          pacific sardine  4.9792106912
## 2742     Benthopelagic    4       california corbina  5.1287516357
## 2743     Benthopelagic   21        spotted sand bass  5.0356771080
## 2744     Benthopelagic    6    greenspotted rockfish  4.8124913758
## 2745           Pelagic    5             market squid  5.1144408485
## 2746     Benthopelagic    4            white croaker  5.1225549897
## 2747     Benthopelagic    1       california corbina  5.0214400072
## 2748          Midwater    4         shiner surfperch  4.7272498794
## 2749     Benthopelagic   23       vermilion rockfish  4.8503862040
## 2750     Benthopelagic   20       california corbina  5.0084899391
## 2751           Pelagic    5            chub mackerel  4.8404319485
## 2752     Benthopelagic   21         barred sand bass  5.0322575280
## 2753           Benthic    5  california scorpionfish  5.2818733181
## 2754           Pelagic    5             market squid  5.3770768992
## 2755     Benthopelagic   21        yellowfin croaker  5.1425905515
## 2756           Benthic    5          longfin sanddab  5.4365330160
## 2757     Benthopelagic    5       vermilion rockfish  4.9132226265
## 2758          Midwater   13     chilipepper rockfish  4.9954138938
## 2759     Benthopelagic    4        yellowfin croaker  4.7427548538
## 2760     Benthopelagic   21        yellowfin croaker  4.8667422195
## 2761     Benthopelagic    1        yellowfin croaker  5.2312046748
## 2762     Benthopelagic    3                  opaleye  4.8383421236
## 2763     Benthopelagic   11        yellowfin croaker  5.2638067855
## 2764           Benthic   15         hornyhead turbot  5.2576479439
## 2765          Midwater    3         shiner surfperch  4.9729276862
## 2766     Benthopelagic    3        spotted sand bass  5.2986683632
## 2767           Benthic   13         hornyhead turbot  5.1167587803
## 2768     Benthopelagic    7       vermilion rockfish  4.9902725418
## 2769          Midwater    3                kelp bass  5.1079659404
## 2770     Benthopelagic   22       vermilion rockfish  5.2508199331
## 2771     Benthopelagic   11          gopher rockfish  5.2888200239
## 2772     Benthopelagic    4         barred sand bass  5.0223288309
## 2773     Benthopelagic    5         barred sand bass  4.8308444218
## 2774          Midwater   10                kelp bass  4.7454469058
## 2775           Benthic    4    california lizardfish  4.8088554989
## 2776     Benthopelagic    8            white croaker  4.8989303867
## 2777          Midwater   11         shiner surfperch  5.1729769297
## 2778     Benthopelagic    1     california sheephead  4.7916623326
## 2779     Benthopelagic    5            white croaker  5.0593648272
## 2780     Benthopelagic   11            white croaker  5.1555338170
## 2781           Benthic    1           diamond turbot  5.2541230020
## 2782     Benthopelagic    6       vermilion rockfish  4.9093036559
## 2783           Pelagic   21            chub mackerel  5.3079523981
## 2784          Midwater    4           striped mullet  4.4324198555
## 2785           Benthic   19  california scorpionfish  4.7714003747
## 2786          Midwater    1         shiner surfperch  4.8384697762
## 2787     Benthopelagic   11         barred surfperch  4.9579724924
## 2788     Benthopelagic   11        spotted sand bass  4.9964923643
## 2789           Pelagic    5            chub mackerel  4.8064661328
## 2790           Pelagic    5            chub mackerel  5.0135876215
## 2791     Benthopelagic   11            white croaker  4.8377949961
## 2792     Benthopelagic    5           brown rockfish  4.9303047002
## 2793          Midwater    4           striped mullet  4.8833826987
## 2794          Midwater   21                kelp bass  5.3554472777
## 2795     Benthopelagic   21        yellowfin croaker  4.9203359654
## 2796     Benthopelagic    1         barred surfperch  5.2598050987
## 2797     Benthopelagic   14          starry rockfish  5.1908305313
## 2798     Benthopelagic   11 brown smooth-hound shark  4.6379444455
## 2799     Benthopelagic   11           brown rockfish  5.2738014554
## 2800          Midwater    1        walleye surfperch  5.2181534073
## 2801     Benthopelagic   20              black perch  1.3468140645
## 2802           Benthic   10  california scorpionfish  1.4555451072
## 2803          Midwater   22                kelp bass  2.3289324144
## 2804     Benthopelagic    1        rainbow surfperch  1.4943684567
## 2805          Midwater   24      squarespot rockfish  1.6331311822
## 2806     Benthopelagic   21        yellowfin croaker  1.6708364707
## 2807     Benthopelagic   11       vermilion rockfish  2.0401432604
## 2808     Benthopelagic   11         barred sand bass  1.6571551728
## 2809           Benthic   22  california scorpionfish  1.0603045207
## 2810     Benthopelagic    1                  opaleye  1.7260482669
## 2811     Benthopelagic   21          white surfperch  1.9446752410
## 2812          Midwater    4           striped mullet  1.8037786053
## 2813           Pelagic   21            chub mackerel  1.4751413034
## 2814     Benthopelagic   22       vermilion rockfish  1.5218578544
## 2815     Benthopelagic   13            white croaker  1.1714306219
## 2816           Benthic    8  california scorpionfish  1.4762943584
## 2817     Benthopelagic    5       vermilion rockfish  0.5849737810
## 2818     Benthopelagic    3        rainbow surfperch  1.4603928773
## 2819     Benthopelagic    9   greenblotched rockfish  1.1565524868
## 2820           Pelagic   21            chub mackerel  1.5151490716
## 2821     Benthopelagic    5            white croaker  1.5242720122
## 2822           Pelagic   21            chub mackerel  1.0672473163
## 2823           Pelagic    5          pacific sardine  1.6611001922
## 2824          Midwater   12                kelp bass  2.4558389399
## 2825     Benthopelagic   11         barred sand bass  1.8377277163
## 2826           Benthic    8         hornyhead turbot  1.1124621167
## 2827           Benthic    4           spotted turbot  1.7905954427
## 2828           Benthic    5  california scorpionfish  2.3413392858
## 2829          Midwater   21                kelp bass  2.1861066438
## 2830     Benthopelagic    1       california corbina  1.8818939945
## 2831           Pelagic   21            chub mackerel  2.0109847680
## 2832           Benthic    3           diamond turbot  1.2465769797
## 2833           Pelagic   11            chub mackerel  1.1646784714
## 2834     Benthopelagic    9   greenblotched rockfish  0.9936001169
## 2835     Benthopelagic    5            white croaker  1.5050148493
## 2836     Benthopelagic    4        yellowfin croaker  0.5473226579
## 2837          Midwater    7      squarespot rockfish  2.1308816426
## 2838     Benthopelagic   15        speckled rockfish  2.2582512349
## 2839     Benthopelagic   11          white surfperch  1.3024982228
## 2840     Benthopelagic   13       vermilion rockfish  1.5103785698
## 2841     Benthopelagic    2        spotted sand bass  1.7653200462
## 2842     Benthopelagic   15       vermilion rockfish  1.6180067847
## 2843     Benthopelagic   13            white croaker  1.2974726934
## 2844     Benthopelagic    1              black perch  1.0821381961
## 2845     Benthopelagic    8         barred sand bass  1.5940478820
## 2846           Pelagic   11            chub mackerel  2.4504512815
## 2847           Pelagic    6             market squid  2.0077861060
## 2848     Benthopelagic   10            white croaker  2.0637305890
## 2849           Benthic    4           spotted turbot  1.6575189949
## 2850          Midwater   11                kelp bass  1.2922291927
## 2851     Benthopelagic    1              black perch  2.8652669483
## 2852     Benthopelagic   21            white croaker  0.7584306375
## 2853     Benthopelagic   20       california corbina  1.2973386091
## 2854     Benthopelagic   11              black perch  1.0910550089
## 2855           Pelagic   21            chub mackerel  1.7895031799
## 2856     Benthopelagic    1        yellowfin croaker  0.8275470456
## 2857     Benthopelagic   10           brown rockfish  1.1072040942
## 2858           Pelagic   11            chub mackerel  1.5658219765
## 2859     Benthopelagic   11          gopher rockfish  1.9887404687
## 2860     Benthopelagic   21        spotted sand bass  1.0813276688
## 2861     Benthopelagic   23       vermilion rockfish  1.6794224544
## 2862           Pelagic    5            chub mackerel  1.7256867841
## 2863          Midwater    3         shiner surfperch  2.3121234513
## 2864          Midwater   11         shiner surfperch  1.2961147489
## 2865     Benthopelagic   20         barred surfperch  2.3379873863
## 2866     Benthopelagic    3         barred surfperch  1.6752544986
## 2867     Benthopelagic   21        yellowfin croaker  0.9471477824
## 2868     Benthopelagic    5       california corbina  2.0774946430
## 2869     Benthopelagic    5            white croaker  1.4911660700
## 2870           Pelagic    5             market squid  1.9208101988
## 2871     Benthopelagic   17            white croaker  1.0624558106
## 2872     Benthopelagic   20         barred sand bass  1.5982724858
## 2873     Benthopelagic    3              black perch  1.9371940574
## 2874     Benthopelagic   11            white croaker  1.1187533802
## 2875     Benthopelagic    5                  opaleye  2.0762010273
## 2876     Benthopelagic    5            white croaker  1.2714038679
## 2877          Midwater   21                kelp bass  1.4001849976
## 2878     Benthopelagic   23       vermilion rockfish  1.7950268640
## 2879     Benthopelagic    4       california corbina  1.3469706856
## 2880     Benthopelagic   11              black perch  2.2196823889
## 2881     Benthopelagic    5                  opaleye  1.4059581590
## 2882     Benthopelagic    5            white croaker  1.3346253344
## 2883     Benthopelagic   11        spotted sand bass  1.7455012146
## 2884           Pelagic   21            chub mackerel  1.6553624806
## 2885           Pelagic    5         northern anchovy  0.9938854379
## 2886     Benthopelagic    3        spotted sand bass  1.1935672279
## 2887     Benthopelagic   20           pile surfperch  1.5445839935
## 2888           Pelagic    5         northern anchovy  1.9585296230
## 2889           Benthic   11         hornyhead turbot  1.9993623579
## 2890     Benthopelagic   11            black croaker  2.1065103821
## 2891     Benthopelagic    1          white surfperch  1.4214192765
## 2892     Benthopelagic   11         barred sand bass  1.1593921550
## 2893     Benthopelagic   14            white croaker  1.3319146147
## 2894     Benthopelagic    3       california corbina  1.4176410317
## 2895           Pelagic    5            chub mackerel  1.1580980724
## 2896     Benthopelagic   12            white croaker  1.7068224722
## 2897     Benthopelagic    1        yellowfin croaker  0.9995274444
## 2898     Benthopelagic   22          starry rockfish  1.1811939735
## 2899     Benthopelagic    5                  opaleye  1.1067194165
## 2900           Pelagic   11            chub mackerel  2.2599398971
## 2901     Benthopelagic   22            white croaker  1.7111063256
## 2902     Benthopelagic   17        speckled rockfish  1.4589071280
## 2903     Benthopelagic   11         barred sand bass  1.9685998596
## 2904     Benthopelagic   21        spotted sand bass  1.2213151980
## 2905     Benthopelagic    1        spotted sand bass  2.2497271687
## 2906     Benthopelagic    4           pile surfperch  1.7088955275
## 2907     Benthopelagic    5                  opaleye  1.4099354830
## 2908          Midwater    2                kelp bass  1.5457767960
## 2909     Benthopelagic   10              black perch  1.6056704040
## 2910           Pelagic    5          pacific sardine  1.9939356903
## 2911          Midwater    1         shiner surfperch  1.4877489179
## 2912     Benthopelagic    1         barred surfperch  1.4227784468
## 2913     Benthopelagic    2            white croaker  1.2407052122
## 2914     Benthopelagic    1            white croaker  1.9097025081
## 2915     Benthopelagic    5         barred sand bass  1.6641173013
## 2916     Benthopelagic   24       vermilion rockfish  1.2013896611
## 2917          Midwater    3          canary rockfish  1.6028008341
## 2918     Benthopelagic   18            white croaker  1.1359625196
## 2919     Benthopelagic    7           brown rockfish  1.5369168480
## 2920          Midwater    5                queenfish  1.9277647165
## 2921           Benthic    1           diamond turbot  1.5425964932
## 2922     Benthopelagic    1            white croaker  1.6847042553
## 2923           Pelagic    5             market squid  1.0966068495
## 2924           Pelagic    5             market squid  0.9991736934
## 2925     Benthopelagic    3        spotted sand bass  1.4834852661
## 2926           Pelagic    5             market squid  1.3481202527
## 2927          Midwater   11                kelp bass  2.5593178858
## 2928           Benthic    5       california halibut  1.2094522038
## 2929           Benthic   19         hornyhead turbot  2.0530596655
## 2930           Pelagic    5         northern anchovy  1.5558836105
## 2931          Midwater   21                kelp bass  2.2024130328
## 2932           Pelagic   21            chub mackerel  1.8897488925
## 2933          Midwater    1                queenfish  1.4351111277
## 2934     Benthopelagic    3        spotted sand bass  1.5616633370
## 2935     Benthopelagic   14    greenspotted rockfish  1.3775728050
## 2936     Benthopelagic    5            white croaker  1.6291263373
## 2937     Benthopelagic   10   greenblotched rockfish  1.8050708912
## 2938     Benthopelagic    5                  opaleye  1.6394136319
## 2939     Benthopelagic    1            white croaker  1.0033665124
## 2940           Pelagic    5          pacific sardine  1.8313362606
## 2941          Midwater    1            blue rockfish  1.6361684778
## 2942          Midwater   21                kelp bass  1.4045871933
## 2943     Benthopelagic    3         barred sand bass  0.9506591366
## 2944           Pelagic   21            chub mackerel  1.8028611040
## 2945     Benthopelagic    4                  opaleye  1.4941083028
## 2946     Benthopelagic    1     california sheephead  1.9511114360
## 2947     Benthopelagic   11              black perch  1.6283453088
## 2948     Benthopelagic    1        yellowfin croaker  1.5512770929
## 2949     Benthopelagic   18              black perch  1.6539555642
## 2950     Benthopelagic    1        yellowfin croaker  1.3525570441
## 2951     Benthopelagic   21        spotted sand bass  1.0110058585
## 2952     Benthopelagic    5                  opaleye  1.0102518210
## 2953     Benthopelagic   12       vermilion rockfish  1.7375874832
## 2954     Benthopelagic   18       vermilion rockfish  1.8017947839
## 2955     Benthopelagic    3              black perch  1.5180529648
## 2956          Midwater    3                kelp bass  1.9056304800
## 2957     Benthopelagic   12            white croaker  1.3978953236
## 2958          Midwater   21                kelp bass  1.9313098776
## 2959          Midwater    4         shiner surfperch  1.7664054512
## 2960     Benthopelagic   11          gopher rockfish  1.0764158593
## 2961     Benthopelagic    3       vermilion rockfish  1.2794214122
## 2962     Benthopelagic   14         barred sand bass  1.2601410169
## 2963          Midwater   21                kelp bass  1.5324271570
## 2964          Midwater    1                queenfish  1.6034777517
## 2965     Benthopelagic   22          starry rockfish  2.0088366012
## 2966     Benthopelagic   20            white croaker  2.2046705910
## 2967     Benthopelagic    4       california corbina  1.5443228829
## 2968     Benthopelagic    8              black perch  1.7795044388
## 2969           Benthic   20         hornyhead turbot  1.5094204160
## 2970          Midwater   21                kelp bass  1.6472399709
## 2971     Benthopelagic    4              black perch  2.0133609923
## 2972     Benthopelagic    4            white croaker  1.0901993531
## 2973     Benthopelagic    4              black perch  1.7192169623
## 2974     Benthopelagic   21        yellowfin croaker  1.3387593049
## 2975     Benthopelagic    1                  opaleye  1.5569608514
## 2976           Benthic   21         hornyhead turbot  1.2093120176
## 2977     Benthopelagic    4         barred surfperch  0.6808710766
## 2978          Midwater   11                kelp bass  1.2612234922
## 2979           Pelagic    5             market squid  1.2710004831
## 2980           Benthic    1           diamond turbot  2.2245742371
## 2981     Benthopelagic    1            white croaker  2.0225402691
## 2982     Benthopelagic    4              black perch  1.4104250337
## 2983           Pelagic    6             market squid  1.4979959973
## 2984     Benthopelagic   11            white croaker  1.4664090946
## 2985     Benthopelagic    9            white croaker  1.8034841299
## 2986           Pelagic   21         northern anchovy  1.6428042314
## 2987     Benthopelagic   11           brown rockfish  0.8895430853
## 2988     Benthopelagic   11          ocean whitefish  0.7146736116
## 2989           Benthic   17         hornyhead turbot  1.0306759730
## 2990           Benthic   11  california scorpionfish  1.7552474768
## 2991           Benthic   20           diamond turbot  1.3590394006
## 2992     Benthopelagic    4        spotted sand bass  1.5702232980
## 2993          Midwater   11           olive rockfish  1.0263533302
## 2994     Benthopelagic    1              black perch  1.5349277185
## 2995     Benthopelagic    5            white croaker  1.1196497408
## 2996           Pelagic    5         northern anchovy  1.4837900608
## 2997     Benthopelagic   11        yellowfin croaker  1.7358283990
## 2998          Midwater   16                kelp bass  1.6511656570
## 2999     Benthopelagic   11            white croaker  1.7751931473
## 3000     Benthopelagic   11              black perch  1.3852951536
## 3001          Midwater   18                kelp bass  2.2995848637
## 3002     Benthopelagic    3              black perch  1.4977633758
## 3003          Midwater    1                kelp bass  1.1802814253
## 3004     Benthopelagic   15            white croaker  1.9200858644
## 3005     Benthopelagic   22         barred sand bass  2.3400901935
## 3006     Benthopelagic    1            white croaker  1.1790265140
## 3007     Benthopelagic   21        yellowfin croaker  1.1634004841
## 3008           Benthic    5  california scorpionfish  1.7124903827
## 3009           Pelagic   21            chub mackerel  1.6248247485
## 3010           Benthic    1           spotted turbot  0.8800312066
## 3011     Benthopelagic   11          gopher rockfish  1.1876093984
## 3012     Benthopelagic    1            white croaker  1.3989541020
## 3013     Benthopelagic    5       california corbina  1.5956616758
## 3014     Benthopelagic    1              black perch  1.2964362812
## 3015     Benthopelagic   11          spotfin croaker  1.9007250035
## 3016     Benthopelagic    8          copper rockfish  1.6247751073
## 3017     Benthopelagic    4        yellowfin croaker  1.9685282451
## 3018     Benthopelagic   12            white croaker  1.4149428526
## 3019          Midwater    8      yellowtail rockfish  1.3475605248
## 3020          Midwater    3                kelp bass  1.6717900102
## 3021     Benthopelagic    5          spotfin croaker  1.5707450063
## 3022           Pelagic    5          pacific sardine  2.6857322072
## 3023           Benthic    5  california scorpionfish  1.8266631810
## 3024     Benthopelagic    3         barred surfperch  1.4907079194
## 3025           Pelagic    6          pacific sardine  1.5596714666
## 3026     Benthopelagic   11       vermilion rockfish  2.0860850688
## 3027           Pelagic    5         northern anchovy  1.2278729806
## 3028           Pelagic   11            chub mackerel  2.0383984008
## 3029           Pelagic   21            chub mackerel  1.4321881187
## 3030          Midwater    5                top smelt  1.8528950586
## 3031          Midwater    2                queenfish  1.8648061068
## 3032     Benthopelagic    4            white croaker  1.9954782150
## 3033     Benthopelagic   18              black perch  1.6863673042
## 3034          Midwater   21                kelp bass  2.5294578644
## 3035     Benthopelagic    4          copper rockfish  1.3587693238
## 3036     Benthopelagic   20              black perch  1.6712701137
## 3037           Benthic    1         speckled sanddab  1.2435523296
## 3038     Benthopelagic   18            white croaker  2.5874003959
## 3039     Benthopelagic   11         barred sand bass  1.7664963751
## 3040     Benthopelagic   11          spotfin croaker  1.8368332398
## 3041           Pelagic   11            chub mackerel  2.2796903760
## 3042           Pelagic    5            chub mackerel  1.2471824040
## 3043           Benthic   18         hornyhead turbot  1.4329646220
## 3044           Benthic   12  california scorpionfish  1.6250828607
## 3045           Benthic    1             fantail sole  1.9033650246
## 3046          Midwater   21                kelp bass  1.3582902339
## 3047     Benthopelagic    3          white surfperch  1.4232569751
## 3048     Benthopelagic   13       vermilion rockfish  1.4775730107
## 3049     Benthopelagic   18            white croaker  1.7700949143
## 3050          Midwater    1         shiner surfperch  2.2619658256
## 3051     Benthopelagic   14            white croaker  1.3159648407
## 3052          Midwater   11                kelp bass  1.3314246631
## 3053           Benthic    5         speckled sanddab  1.2967984218
## 3054           Benthic   17  california scorpionfish  1.5868136149
## 3055     Benthopelagic   21       california corbina  1.6485493755
## 3056           Benthic   11  california scorpionfish  1.4434759367
## 3057           Benthic   17         hornyhead turbot  1.4266016238
## 3058     Benthopelagic   12              black perch  1.5897726667
## 3059     Benthopelagic    1            white croaker  1.6361042181
## 3060     Benthopelagic    5       california corbina  1.4021779867
## 3061     Benthopelagic    4              black perch  1.5139137381
## 3062     Benthopelagic    5            white croaker  1.1132676226
## 3063     Benthopelagic    1            white croaker  1.6884023622
## 3064           Benthic   14         hornyhead turbot  2.4654974788
## 3065           Benthic    4    shovelnose guitarfish  1.4784007790
## 3066          Midwater    1        walleye surfperch  1.9726780834
## 3067          Midwater   18                kelp bass  1.0969871692
## 3068     Benthopelagic    5            white croaker  1.0917939084
## 3069     Benthopelagic    5         barred sand bass  0.8236528539
## 3070          Midwater    2                kelp bass  2.5185857943
## 3071     Benthopelagic   21         barred sand bass  1.7248053003
## 3072     Benthopelagic   12       vermilion rockfish  1.1166761301
## 3073     Benthopelagic    2       quillback rockfish  1.4148294690
## 3074     Benthopelagic   21            white croaker  1.1941661722
## 3075     Benthopelagic   16       vermilion rockfish  1.6771662130
## 3076     Benthopelagic    3              black perch  2.0352035401
## 3077           Benthic    8  california scorpionfish  1.4333072146
## 3078           Pelagic    5          pacific sardine  1.5338192815
## 3079           Benthic    5  california scorpionfish  1.7504669650
## 3080     Benthopelagic    8          copper rockfish  1.1134064207
## 3081           Pelagic    5          pacific sardine  2.5918096967
## 3082     Benthopelagic    2            white croaker  0.8420373536
## 3083     Benthopelagic    1            white croaker  1.8181839990
## 3084     Benthopelagic   21            leopard shark  2.1230174414
## 3085     Benthopelagic   14              black perch  1.2829613520
## 3086     Benthopelagic   16       vermilion rockfish  1.9294580144
## 3087     Benthopelagic   10       vermilion rockfish  1.3989288103
## 3088          Midwater   21                kelp bass  1.5771447088
## 3089     Benthopelagic    1            rosy rockfish  2.2259895102
## 3090          Midwater    3         shiner surfperch  1.7969493503
## 3091     Benthopelagic   11            white croaker  1.9858308916
## 3092     Benthopelagic    1         barred surfperch  2.1855224594
## 3093          Midwater    1         shiner surfperch  1.3053842452
## 3094           Pelagic   21            chub mackerel  1.5044730540
## 3095     Benthopelagic   16       vermilion rockfish  1.8127375736
## 3096     Benthopelagic    7        speckled rockfish  2.0958268043
## 3097          Midwater    4         shiner surfperch  2.4007388163
## 3098     Benthopelagic   11       vermilion rockfish  2.0238161328
## 3099           Pelagic    5            chub mackerel  1.2512271480
## 3100          Midwater   14                kelp bass  1.2764547689
## 3101     Benthopelagic    3              black perch  1.7462022394
## 3102     Benthopelagic    5            black croaker  1.4663176525
## 3103          Midwater    5                top smelt  1.7738383844
## 3104          Midwater   11                top smelt  1.2731014017
## 3105           Benthic   10         hornyhead turbot  1.8799398384
## 3106           Pelagic    5             market squid  1.5039862604
## 3107     Benthopelagic   12              black perch  1.2788326269
## 3108     Benthopelagic    1       california corbina  1.0737121388
## 3109     Benthopelagic    3         barred surfperch  1.3015138932
## 3110     Benthopelagic   19       vermilion rockfish  1.3183372996
## 3111     Benthopelagic   15        speckled rockfish  1.9264545405
## 3112           Pelagic    5          pacific sardine  1.9632958543
## 3113     Benthopelagic    4         barred surfperch  1.5639616476
## 3114     Benthopelagic   11              black perch  1.9980528037
## 3115          Midwater   11                kelp bass  1.4991520828
## 3116     Benthopelagic   11         barred surfperch  0.7905598666
## 3117           Pelagic    5         northern anchovy  1.3113553009
## 3118           Pelagic    5          pacific sardine  1.0049237051
## 3119     Benthopelagic   11            white croaker  1.1432779364
## 3120     Benthopelagic   19            white croaker  1.4205872684
## 3121     Benthopelagic    3              black perch  1.7099739604
## 3122     Benthopelagic   19       vermilion rockfish  1.1402344931
## 3123     Benthopelagic   12           brown rockfish  2.1019773729
## 3124     Benthopelagic    6          copper rockfish  2.0000565037
## 3125           Pelagic    5             market squid  2.5766853811
## 3126     Benthopelagic   22              black perch  1.3208426670
## 3127           Benthic   20       california halibut  1.5233567044
## 3128     Benthopelagic    2        spotted sand bass  1.4599286616
## 3129           Benthic    1           diamond turbot  1.6270502972
## 3130           Benthic   23         hornyhead turbot  1.4776149886
## 3131     Benthopelagic    5         barred sand bass  2.0136401508
## 3132           Benthic    4    california lizardfish  1.8054167086
## 3133     Benthopelagic   11 brown smooth-hound shark  1.5842464655
## 3134     Benthopelagic   21            white croaker  1.6842132135
## 3135     Benthopelagic    4            flag rockfish  1.5012565710
## 3136           Benthic   12         hornyhead turbot  1.8863929999
## 3137           Benthic    4    shovelnose guitarfish  1.7178975162
## 3138     Benthopelagic   14            white croaker  1.7088234393
## 3139     Benthopelagic    5     california sheephead  0.8405975527
## 3140           Pelagic    5         northern anchovy  1.6447407405
## 3141     Benthopelagic   20       vermilion rockfish  1.0152749424
## 3142     Benthopelagic    2         barred surfperch  2.1277598511
## 3143          Midwater   17      squarespot rockfish  1.9653952768
## 3144     Benthopelagic   18       vermilion rockfish  1.3706075280
## 3145     Benthopelagic   11            white croaker  1.3092338885
## 3146     Benthopelagic    4         barred sand bass  2.3739447694
## 3147          Midwater    4                top smelt  1.1713197878
## 3148           Benthic   17         hornyhead turbot  1.7769998118
## 3149     Benthopelagic   11            white croaker  2.1075426963
## 3150     Benthopelagic   11         barred surfperch  1.7645347306
## 3151           Pelagic    5             market squid  1.8330314282
## 3152           Benthic   19  california scorpionfish  1.2665258314
## 3153           Pelagic    5             market squid  1.9474376154
## 3154     Benthopelagic   10         barred sand bass  1.3963186790
## 3155           Pelagic   11            chub mackerel  1.4085547740
## 3156     Benthopelagic   11              black perch  1.9734593162
## 3157     Benthopelagic   22              black perch  1.9321778680
## 3158     Benthopelagic   12            white croaker  1.6319415133
## 3159           Benthic    5    shovelnose guitarfish  0.5175888534
## 3160     Benthopelagic   20       california corbina  2.0024257253
## 3161     Benthopelagic    5                  opaleye  2.1295616691
## 3162     Benthopelagic   16       vermilion rockfish  1.9931850714
## 3163     Benthopelagic    1        spotted sand bass  1.6344209121
## 3164     Benthopelagic    3        rainbow surfperch  1.7240930966
## 3165     Benthopelagic   17            white croaker  1.4193544198
## 3166           Benthic   22  california scorpionfish  1.9841527485
## 3167          Midwater   21                kelp bass  1.4932435075
## 3168           Pelagic    5             market squid  1.9911423293
## 3169     Benthopelagic   21            white croaker  2.2947388646
## 3170     Benthopelagic    1        rainbow surfperch  2.0221355756
## 3171     Benthopelagic    4       california corbina  1.4737386094
## 3172           Pelagic   21            chub mackerel  2.0723116593
## 3173     Benthopelagic   20            white croaker  1.5630390368
## 3174           Pelagic    6          pacific sardine  0.7718728910
## 3175          Midwater    4           striped mullet  1.6667893295
## 3176           Pelagic   21            chub mackerel  1.6968036060
## 3177           Benthic    1         speckled sanddab  2.1614948936
## 3178     Benthopelagic   11            white croaker  1.1862372904
## 3179           Benthic    8         hornyhead turbot  1.5003392948
## 3180          Midwater    4         shiner surfperch  1.7613521290
## 3181     Benthopelagic   10       vermilion rockfish  1.7805022379
## 3182     Benthopelagic    1        rainbow surfperch  1.1265795581
## 3183          Midwater   11         shiner surfperch  0.9550183516
## 3184     Benthopelagic    5            leopard shark  2.1585338523
## 3185           Pelagic   21            chub mackerel  1.3867398036
## 3186     Benthopelagic   11              black perch  1.0498308715
## 3187          Midwater    4         shiner surfperch  1.6045317807
## 3188     Benthopelagic   14              black perch  1.4140678979
## 3189          Midwater   11                kelp bass  1.5654768223
## 3190     Benthopelagic   18            white croaker  2.3383940366
## 3191          Midwater    4                top smelt  2.1694450672
## 3192     Benthopelagic    5   gray smoothhound shark  1.1785940479
## 3193     Benthopelagic   23            white croaker  1.7060631697
## 3194           Pelagic   21           slough anchovy  1.5426530160
## 3195          Midwater    1                queenfish  2.1462846844
## 3196     Benthopelagic   21            white croaker  1.6820477627
## 3197          Midwater    1                kelp bass  0.8998172637
## 3198     Benthopelagic   24       vermilion rockfish  1.1860568129
## 3199           Pelagic   21            chub mackerel  0.8120661528
## 3200           Pelagic    5          pacific sardine  1.2662125530
## 3201     Benthopelagic    4       california corbina  3.5728811444
## 3202     Benthopelagic    3       california corbina  3.3756478551
## 3203     Benthopelagic   16              black perch  3.3132738108
## 3204           Pelagic    5          pacific sardine  3.0336528779
## 3205           Pelagic   21            chub mackerel  3.3704875918
## 3206     Benthopelagic   21         barred sand bass  3.3044301308
## 3207           Pelagic    6          pacific sardine  3.1235656023
## 3208     Benthopelagic    5        yellowfin croaker  3.3184319918
## 3209           Benthic    1  california scorpionfish  3.5172656784
## 3210          Midwater    4         shiner surfperch  3.3598401313
## 3211           Benthic    5  california scorpionfish  3.4970076304
## 3212     Benthopelagic    5       california corbina  3.4859201350
## 3213           Benthic   19         hornyhead turbot  3.1224572607
## 3214     Benthopelagic    2              black perch  3.3164633525
## 3215     Benthopelagic   21        spotted sand bass  3.3094955249
## 3216     Benthopelagic    7       vermilion rockfish  3.3620696928
## 3217     Benthopelagic    3              black perch  3.4286272958
## 3218           Pelagic   11            chub mackerel  3.3022373227
## 3219     Benthopelagic   22            white croaker  3.4618227432
## 3220          Midwater    2         shiner surfperch  3.5181402970
## 3221     Benthopelagic   11   gray smoothhound shark  3.6048424836
## 3222     Benthopelagic   19            white croaker  3.2808717488
## 3223     Benthopelagic   11            white croaker  3.4068376552
## 3224     Benthopelagic    5            white croaker  3.2056993097
## 3225     Benthopelagic   21          white surfperch  3.2000886216
## 3226          Midwater    5                 halfmoon  3.4831738397
## 3227          Midwater   10                kelp bass  3.3929022291
## 3228          Midwater    1                kelp bass  3.8059671772
## 3229          Midwater    3         shiner surfperch  3.7500184673
## 3230     Benthopelagic   10            white croaker  3.3244093912
## 3231          Midwater    5                queenfish  3.4234890721
## 3232     Benthopelagic    1            white croaker  3.0920428895
## 3233     Benthopelagic    4              black perch  3.6509917079
## 3234     Benthopelagic    1         barred sand bass  3.4498528778
## 3235          Midwater    5                kelp bass  3.6194285824
## 3236           Pelagic    5          pacific sardine  3.3428382086
## 3237     Benthopelagic   21         barred sand bass  3.5971715253
## 3238     Benthopelagic    4           pile surfperch  3.5742066804
## 3239          Midwater   14                kelp bass  3.7529336265
## 3240     Benthopelagic   16          copper rockfish  3.1652155115
## 3241     Benthopelagic    3        spotted sand bass  3.2945612858
## 3242          Midwater   16                kelp bass  3.3564390776
## 3243          Midwater    4                kelp bass  3.1021558427
## 3244     Benthopelagic   14              black perch  3.2382096958
## 3245           Pelagic    6          pacific sardine  3.2543220624
## 3246     Benthopelagic   11              black perch  3.3460731419
## 3247     Benthopelagic    4           pile surfperch  3.5834800696
## 3248     Benthopelagic    5        yellowfin croaker  3.1045955505
## 3249           Benthic   14         hornyhead turbot  3.4058099099
## 3250           Pelagic    5          pacific sardine  3.2403491110
## 3251           Pelagic   21            chub mackerel  3.2665199322
## 3252          Midwater   21                kelp bass  3.3500953772
## 3253     Benthopelagic   10              black perch  3.3842223170
## 3254          Midwater   21                kelp bass  3.1880039137
## 3255           Pelagic    5          pacific sardine  3.5338327480
## 3256          Midwater    3         shiner surfperch  3.2657127961
## 3257     Benthopelagic    8         barred sand bass  3.4759482508
## 3258     Benthopelagic   11         barred sand bass  3.2013040122
## 3259          Midwater    1        walleye surfperch  3.5383067193
## 3260           Benthic   20  california scorpionfish  3.5411352852
## 3261           Benthic   23         hornyhead turbot  3.4746755951
## 3262           Benthic   19  california scorpionfish  3.0558475781
## 3263     Benthopelagic   12           brown rockfish  3.4206916531
## 3264     Benthopelagic   11          white surfperch  3.6935673917
## 3265     Benthopelagic    5       california corbina  3.4078316538
## 3266     Benthopelagic    4              black perch  3.4715950049
## 3267     Benthopelagic    5            white croaker  3.2848769370
## 3268     Benthopelagic    3        spotted sand bass  3.0795866790
## 3269     Benthopelagic   20            white croaker  3.2854859016
## 3270          Midwater    1         shiner surfperch  3.0410874240
## 3271           Benthic   20         hornyhead turbot  2.9155773586
## 3272           Benthic    1           spotted turbot  3.2242504836
## 3273           Benthic   23         hornyhead turbot  3.4347375655
## 3274     Benthopelagic   14       vermilion rockfish  3.2283140973
## 3275           Pelagic    5             market squid  3.6026955319
## 3276     Benthopelagic    8            white croaker  3.1404086796
## 3277           Pelagic    5             market squid  3.4660953454
## 3278     Benthopelagic    5       vermilion rockfish  2.9469722617
## 3279     Benthopelagic   11            white croaker  3.3083494529
## 3280           Benthic    3           diamond turbot  3.2409777979
## 3281           Pelagic   21         northern anchovy  3.1478616672
## 3282           Benthic    8         hornyhead turbot  3.7871061214
## 3283     Benthopelagic    4         barred sand bass  3.2892420510
## 3284          Midwater    3                jacksmelt  3.1066096018
## 3285          Midwater   21                kelp bass  3.2384988538
## 3286     Benthopelagic   11        yellowfin croaker  3.3765098602
## 3287          Midwater    8                kelp bass  3.3503208880
## 3288     Benthopelagic    9       vermilion rockfish  3.4219478772
## 3289          Midwater   21                kelp bass  3.3572654638
## 3290     Benthopelagic    1         barred surfperch  3.2324909085
## 3291          Midwater   11                top smelt  3.4243407748
## 3292     Benthopelagic    5            white croaker  3.5147386124
## 3293     Benthopelagic    4         barred surfperch  3.5895007365
## 3294     Benthopelagic   21        yellowfin croaker  3.1811561744
## 3295     Benthopelagic    5         barred sand bass  3.3056359558
## 3296           Pelagic   21            chub mackerel  3.4391010634
## 3297          Midwater   21                kelp bass  3.4407723643
## 3298     Benthopelagic    8            white croaker  3.3441736322
## 3299           Pelagic   21            chub mackerel  3.4246417164
## 3300     Benthopelagic   16        speckled rockfish  3.2832760984
## 3301     Benthopelagic    5         barred sand bass  3.3052025861
## 3302           Pelagic   21           slough anchovy  3.0987648058
## 3303     Benthopelagic   11            rosy rockfish  3.4085106879
## 3304           Benthic    4           diamond turbot  3.1266953019
## 3305           Benthic   16  california scorpionfish  3.1810474008
## 3306     Benthopelagic   20       vermilion rockfish  3.2837877523
## 3307          Midwater   20                kelp bass  3.3329684237
## 3308          Midwater   21                kelp bass  3.3377909453
## 3309           Benthic   13         hornyhead turbot  3.1245026105
## 3310           Pelagic   21            chub mackerel  3.5203264457
## 3311     Benthopelagic   14       vermilion rockfish  3.3640207768
## 3312          Midwater    5                kelp bass  3.2416231361
## 3313           Benthic   10  california scorpionfish  3.3637183449
## 3314     Benthopelagic    5         barred sand bass  3.0637177295
## 3315          Midwater    4                kelp bass  3.0445153719
## 3316     Benthopelagic    1        yellowfin croaker  3.3572683669
## 3317     Benthopelagic   10           brown rockfish  3.1826883402
## 3318           Benthic    5          longfin sanddab  3.2744433510
## 3319     Benthopelagic    3        yellowfin croaker  3.2309215258
## 3320     Benthopelagic   11            white croaker  2.9980290099
## 3321          Midwater   20                kelp bass  3.7355713130
## 3322           Benthic    5       california halibut  3.3227251371
## 3323           Pelagic    5          pacific sardine  3.3625177023
## 3324          Midwater   21                kelp bass  3.4564317257
## 3325     Benthopelagic    8            white croaker  3.4692323811
## 3326     Benthopelagic    3       california corbina  3.2631385264
## 3327     Benthopelagic    4        spotted sand bass  3.1994924672
## 3328           Benthic   10  california scorpionfish  3.3443884620
## 3329           Benthic    5  california scorpionfish  3.4391933621
## 3330          Midwater   11                top smelt  3.6898623883
## 3331     Benthopelagic   17            white croaker  3.4264619864
## 3332     Benthopelagic    5            white croaker  3.6694427064
## 3333           Pelagic   21         northern anchovy  3.3876465915
## 3334           Pelagic    5          pacific sardine  3.3892995504
## 3335     Benthopelagic    1       california corbina  3.4911303264
## 3336          Midwater    5                kelp bass  3.5655748637
## 3337     Benthopelagic   20            white croaker  3.5132751830
## 3338     Benthopelagic    3            rosy rockfish  3.3029656953
## 3339     Benthopelagic   21        yellowfin croaker  3.5540683147
## 3340     Benthopelagic    1         barred surfperch  3.8116699096
## 3341     Benthopelagic   14         barred sand bass  3.7347366659
## 3342     Benthopelagic    5       vermilion rockfish  3.4440022612
## 3343          Midwater   21                kelp bass  2.9381156347
## 3344     Benthopelagic    3           pile surfperch  3.4529608279
## 3345     Benthopelagic   19       vermilion rockfish  3.1836608615
## 3346           Pelagic    5            chub mackerel  2.9666359542
## 3347          Midwater   21                kelp bass  3.5388471653
## 3348          Midwater    5                queenfish  3.2924476903
## 3349     Benthopelagic   11            white croaker  3.1462660023
## 3350           Benthic    1           diamond turbot  3.4369094314
## 3351           Benthic   22         hornyhead turbot  3.3191443082
## 3352          Midwater    5                kelp bass  3.2680536790
## 3353     Benthopelagic   21          spotfin croaker  3.0207264068
## 3354           Pelagic    5            chub mackerel  3.3858416553
## 3355     Benthopelagic    5       vermilion rockfish  3.6842202148
## 3356     Benthopelagic    1         barred surfperch  3.6357808391
## 3357     Benthopelagic   11            white croaker  3.2942637110
## 3358     Benthopelagic    4         barred sand bass  3.5019794840
## 3359     Benthopelagic   17       vermilion rockfish  3.5381341630
## 3360     Benthopelagic   11          white surfperch  3.3309135005
## 3361     Benthopelagic    8          copper rockfish  2.9895839016
## 3362          Midwater   11            kelp rockfish  3.6966343277
## 3363     Benthopelagic    5            white croaker  3.2829738577
## 3364     Benthopelagic    4         barred surfperch  3.4213474412
## 3365     Benthopelagic    4       california corbina  3.2051263007
## 3366           Benthic   20       california halibut  3.2417133787
## 3367           Benthic    3           diamond turbot  3.4207416389
## 3368     Benthopelagic   12         barred sand bass  3.2289082710
## 3369          Midwater    1                 halfmoon  3.4591448434
## 3370     Benthopelagic   13       vermilion rockfish  3.4457052985
## 3371           Pelagic    5        pacific barracuda  3.0784138272
## 3372     Benthopelagic    3              black perch  3.6058457715
## 3373           Pelagic   21            chub mackerel  3.2898750267
## 3374     Benthopelagic   14            white croaker  3.0115389793
## 3375     Benthopelagic   24       vermilion rockfish  3.6375294903
## 3376     Benthopelagic   20       california corbina  3.2751965401
## 3377     Benthopelagic   21         barred sand bass  2.8763421319
## 3378     Benthopelagic   11            white croaker  3.4012225485
## 3379          Midwater   21                kelp bass  3.1612087344
## 3380          Midwater    1         shiner surfperch  3.4174595858
## 3381          Midwater    5         shiner surfperch  3.3439916265
## 3382     Benthopelagic   11           brown rockfish  3.5657732147
## 3383     Benthopelagic    5         barred sand bass  3.2284306053
## 3384           Pelagic    5          pacific sardine  3.3073305018
## 3385           Benthic   16         hornyhead turbot  3.3870013896
## 3386          Midwater    1         shiner surfperch  3.1577940308
## 3387     Benthopelagic    5                  opaleye  3.0207235276
## 3388     Benthopelagic   20            white croaker  3.3554586658
## 3389     Benthopelagic   21            white croaker  3.3863759821
## 3390     Benthopelagic   11          spotfin croaker  3.4269590302
## 3391           Benthic   22  california scorpionfish  3.5040057672
## 3392           Pelagic    5          pacific sardine  3.4276115050
## 3393     Benthopelagic    1                  opaleye  3.3266581723
## 3394          Midwater    1         shiner surfperch  3.0643088661
## 3395     Benthopelagic   11         barred surfperch  3.3388169563
## 3396          Midwater   11         shiner surfperch  3.4982503603
## 3397     Benthopelagic   12            white croaker  3.3669742570
## 3398          Midwater   21                queenfish  3.2475840949
## 3399           Benthic    4    shovelnose guitarfish  2.9791920215
## 3400     Benthopelagic   21         barred sand bass  3.4396845131
## 3401     Benthopelagic   10            white croaker  3.2052646380
## 3402     Benthopelagic    1       california corbina  3.3030441519
## 3403     Benthopelagic   11            white croaker  2.9726004781
## 3404          Midwater   11                kelp bass  3.6458544209
## 3405     Benthopelagic    3        spotted sand bass  3.6000377907
## 3406     Benthopelagic    3          copper rockfish  3.5880355245
## 3407           Pelagic   11            chub mackerel  3.4584365156
## 3408           Pelagic    5             market squid  3.2658527946
## 3409           Pelagic   11            chub mackerel  3.3422052333
## 3410           Pelagic   21            chub mackerel  3.5042372100
## 3411           Benthic   22  california scorpionfish  3.4204795386
## 3412          Midwater    4         shiner surfperch  3.0439304372
## 3413           Benthic   18  california scorpionfish  3.3712751194
## 3414     Benthopelagic    5                  opaleye  3.2338533929
## 3415          Midwater   21                queenfish  3.0693817771
## 3416     Benthopelagic    5          copper rockfish  2.9016240611
## 3417     Benthopelagic   11         barred sand bass  3.4749898697
## 3418     Benthopelagic   21        spotted sand bass  3.5860029108
## 3419     Benthopelagic   22            white croaker  3.3452049051
## 3420           Pelagic    5         northern anchovy  3.7501124832
## 3421     Benthopelagic   21            leopard shark  3.2435604652
## 3422          Midwater   11         shiner surfperch  3.5992314942
## 3423     Benthopelagic   21            white croaker  3.3461999671
## 3424           Benthic    5       california halibut  3.3084768485
## 3425          Midwater   11                kelp bass  3.0777245532
## 3426          Midwater   18                kelp bass  3.3299024953
## 3427     Benthopelagic    5            white croaker  3.7153854235
## 3428     Benthopelagic    1         barred surfperch  3.4674542946
## 3429     Benthopelagic   20            white croaker  3.2673511344
## 3430     Benthopelagic    4 brown smooth-hound shark  3.3398203753
## 3431     Benthopelagic   11         barred sand bass  3.4204455778
## 3432           Benthic   15         hornyhead turbot  3.1224677928
## 3433           Benthic    5  california scorpionfish  3.2433813723
## 3434     Benthopelagic   14       vermilion rockfish  3.3349767450
## 3435           Pelagic    5             market squid  3.3380640322
## 3436     Benthopelagic    5            black croaker  3.3098621468
## 3437     Benthopelagic    1         barred surfperch  3.5060789351
## 3438          Midwater    2        walleye surfperch  3.1234513057
## 3439     Benthopelagic   16       vermilion rockfish  3.5834037292
## 3440           Pelagic    4            chub mackerel  3.3660135006
## 3441     Benthopelagic    1        yellowfin croaker  3.2645503528
## 3442          Midwater    5                kelp bass  3.2657848113
## 3443     Benthopelagic    6          copper rockfish  3.5527075881
## 3444           Benthic    9         hornyhead turbot  3.6335787718
## 3445     Benthopelagic   13           brown rockfish  3.2864253494
## 3446     Benthopelagic    4            white croaker  3.1378943350
## 3447     Benthopelagic   21        spotted sand bass  3.2193757402
## 3448           Pelagic    6             market squid  3.5148742935
## 3449     Benthopelagic   11            white croaker  3.2926617518
## 3450     Benthopelagic   16       vermilion rockfish  3.0534502644
## 3451           Benthic    5           diamond turbot  3.2644191489
## 3452          Midwater    5                kelp bass  3.4180470095
## 3453     Benthopelagic    3        rainbow surfperch  3.3853043779
## 3454           Benthic   21       california halibut  3.8452254346
## 3455     Benthopelagic   21            white croaker  3.1708521304
## 3456     Benthopelagic   11          white surfperch  3.3701603050
## 3457     Benthopelagic    4        yellowfin croaker  3.4886811730
## 3458           Pelagic    5         northern anchovy  3.5186436908
## 3459           Pelagic   21         northern anchovy  3.3945474925
## 3460     Benthopelagic   21        yellowfin croaker  3.6097960759
## 3461     Benthopelagic   13       vermilion rockfish  3.4516842419
## 3462     Benthopelagic   11         barred sand bass  3.1018196654
## 3463     Benthopelagic    1       california corbina  3.0434070487
## 3464     Benthopelagic    5       vermilion rockfish  3.6083365481
## 3465          Midwater    1                 halfmoon  3.2021696235
## 3466     Benthopelagic   23          starry rockfish  3.4074508313
## 3467     Benthopelagic    9          copper rockfish  3.2537126465
## 3468     Benthopelagic    5            white croaker  3.0687364168
## 3469     Benthopelagic   12         barred sand bass  3.2339635472
## 3470     Benthopelagic   23            white croaker  3.2517295445
## 3471           Pelagic    5            chub mackerel  3.4049758496
## 3472          Midwater    4                kelp bass  3.3868105216
## 3473           Pelagic    5         northern anchovy  3.5899220689
## 3474     Benthopelagic    1        spotted sand bass  3.5168345154
## 3475           Benthic   16         hornyhead turbot  3.6693694524
## 3476          Midwater   11                kelp bass  3.2800787756
## 3477           Pelagic   21            chub mackerel  3.3638278654
## 3478     Benthopelagic    1          ocean whitefish  2.8850884053
## 3479     Benthopelagic    1       california corbina  3.7161908766
## 3480     Benthopelagic   21        spotted sand bass  3.3998361675
## 3481           Pelagic    5          pacific sardine  3.3347196389
## 3482     Benthopelagic    4                  opaleye  3.2187881057
## 3483           Pelagic    6          pacific sardine  3.1865705207
## 3484           Pelagic   11            chub mackerel  3.5745858795
## 3485          Midwater   21                kelp bass  3.4491113330
## 3486     Benthopelagic    1     california sheephead  3.0696103740
## 3487          Midwater   10                kelp bass  3.3664050226
## 3488     Benthopelagic   13            white croaker  3.3498587161
## 3489           Pelagic    5            chub mackerel  3.3994927535
## 3490           Benthic   15         hornyhead turbot  3.3007875780
## 3491     Benthopelagic   24          starry rockfish  3.2854508251
## 3492     Benthopelagic   14       vermilion rockfish  3.0309588790
## 3493     Benthopelagic   22            white croaker  3.1868375881
## 3494           Benthic    5    shovelnose guitarfish  3.0366984881
## 3495           Benthic   12  california scorpionfish  3.0346420426
## 3496     Benthopelagic   11   gray smoothhound shark  3.3668418308
## 3497     Benthopelagic    3        rainbow surfperch  3.4375116781
## 3498     Benthopelagic    1                  opaleye  3.6018236845
## 3499           Pelagic    5             market squid  3.4618319974
## 3500           Pelagic    4            chub mackerel  3.1766353014
## 3501           Pelagic    5          pacific sardine  3.4773967592
## 3502     Benthopelagic   15            white croaker  3.2996216314
## 3503           Pelagic    5             market squid  3.5383172362
## 3504           Pelagic   21            chub mackerel  3.0972924528
## 3505     Benthopelagic   11           brown rockfish  3.3722122482
## 3506     Benthopelagic   20        yellowfin croaker  3.4453544968
## 3507     Benthopelagic   22         barred sand bass  3.4980146944
## 3508           Pelagic    5          pacific sardine  3.3600036341
## 3509           Benthic   13         hornyhead turbot  2.9852226544
## 3510          Midwater   12                kelp bass  3.3543163864
## 3511     Benthopelagic   22            white croaker  3.3400087760
## 3512           Pelagic    6             market squid  3.5849662815
## 3513           Pelagic    5          pacific sardine  3.0239525256
## 3514     Benthopelagic    4       california corbina  3.1145640037
## 3515     Benthopelagic   21        spotted sand bass  3.2220555063
## 3516     Benthopelagic    6    greenspotted rockfish  3.5088678142
## 3517           Pelagic    5             market squid  3.4703439766
## 3518     Benthopelagic    4            white croaker  3.2777249684
## 3519     Benthopelagic    1       california corbina  3.5059057246
## 3520          Midwater    4         shiner surfperch  3.2124895779
## 3521     Benthopelagic   23       vermilion rockfish  3.5289182947
## 3522     Benthopelagic   20       california corbina  3.3805081584
## 3523           Pelagic    5            chub mackerel  3.6118387198
## 3524     Benthopelagic   21         barred sand bass  3.2714250190
## 3525           Benthic    5  california scorpionfish  3.5795172198
## 3526           Pelagic    5             market squid  3.4149769464
## 3527     Benthopelagic   21        yellowfin croaker  3.3896851846
## 3528           Benthic    5          longfin sanddab  3.5141733156
## 3529     Benthopelagic    5       vermilion rockfish  3.2783208048
## 3530          Midwater   13     chilipepper rockfish  2.9712459446
## 3531     Benthopelagic    4        yellowfin croaker  3.5470262427
## 3532     Benthopelagic   21        yellowfin croaker  3.1293118241
## 3533     Benthopelagic    1        yellowfin croaker  2.9306068818
## 3534     Benthopelagic    3                  opaleye  3.1090474297
## 3535     Benthopelagic   11        yellowfin croaker  3.3060209671
## 3536           Benthic   15         hornyhead turbot  3.5461458761
## 3537          Midwater    3         shiner surfperch  3.2288196987
## 3538     Benthopelagic    3        spotted sand bass  3.2658959266
## 3539           Benthic   13         hornyhead turbot  3.4101691584
## 3540     Benthopelagic    7       vermilion rockfish  3.5957130427
## 3541          Midwater    3                kelp bass  3.4820461719
## 3542     Benthopelagic   22       vermilion rockfish  3.6609092252
## 3543     Benthopelagic   11          gopher rockfish  3.4390964234
## 3544     Benthopelagic    4         barred sand bass  3.4539810415
## 3545     Benthopelagic    5         barred sand bass  3.2367027120
## 3546          Midwater   10                kelp bass  3.6026876109
## 3547           Benthic    4    california lizardfish  3.4356987237
## 3548     Benthopelagic    8            white croaker  3.2385872227
## 3549          Midwater   11         shiner surfperch  3.6236477236
## 3550     Benthopelagic    1     california sheephead  3.2827584976
## 3551     Benthopelagic    5            white croaker  3.4139447644
## 3552     Benthopelagic   11            white croaker  3.4964965057
## 3553           Benthic    1           diamond turbot  3.1947837352
## 3554     Benthopelagic    6       vermilion rockfish  3.7034570246
## 3555           Pelagic   21            chub mackerel  3.3312017881
## 3556          Midwater    4           striped mullet  3.2301581727
## 3557           Benthic   19  california scorpionfish  3.3701893371
## 3558          Midwater    1         shiner surfperch  3.4728119217
## 3559     Benthopelagic   11         barred surfperch  3.4020717035
## 3560     Benthopelagic   11        spotted sand bass  3.2240685195
## 3561           Pelagic    5            chub mackerel  3.5750999728
## 3562           Pelagic    5            chub mackerel  3.1461888724
## 3563     Benthopelagic   11            white croaker  3.3384159332
## 3564     Benthopelagic    5           brown rockfish  3.3287138967
## 3565          Midwater    4           striped mullet  3.3845470359
## 3566          Midwater   21                kelp bass  3.4085647383
## 3567     Benthopelagic   21        yellowfin croaker  3.2253377136
## 3568     Benthopelagic    1         barred surfperch  3.2051193252
## 3569     Benthopelagic   14          starry rockfish  3.3931830101
## 3570     Benthopelagic   11 brown smooth-hound shark  3.1644320628
## 3571     Benthopelagic   11           brown rockfish  3.6303251411
## 3572          Midwater    1        walleye surfperch  3.1797690648
## 3573     Benthopelagic   20              black perch  3.2795329596
## 3574           Benthic   10  california scorpionfish  3.0910800929
## 3575          Midwater   22                kelp bass  3.0733196449
## 3576     Benthopelagic    1        rainbow surfperch  3.3622400067
## 3577          Midwater   24      squarespot rockfish  3.1635681852
## 3578     Benthopelagic   21        yellowfin croaker  3.0516518498
## 3579     Benthopelagic   11       vermilion rockfish  3.5600249044
## 3580     Benthopelagic   11         barred sand bass  2.9696198661
## 3581           Benthic   22  california scorpionfish  3.4522430404
## 3582     Benthopelagic    1                  opaleye  3.4933928173
## 3583     Benthopelagic   21          white surfperch  3.5290176688
## 3584          Midwater    4           striped mullet  3.5718745774
## 3585           Pelagic   21            chub mackerel  3.2535989967
## 3586     Benthopelagic   22       vermilion rockfish  3.0065426076
## 3587     Benthopelagic   13            white croaker  2.9961784976
## 3588           Benthic    8  california scorpionfish  3.2748639738
## 3589     Benthopelagic    5       vermilion rockfish  3.4119621642
## 3590     Benthopelagic    3        rainbow surfperch  3.7636689118
## 3591     Benthopelagic    9   greenblotched rockfish  3.6959628266
## 3592           Pelagic   21            chub mackerel  3.3425957903
## 3593     Benthopelagic    5            white croaker  3.3439763383
## 3594           Pelagic   21            chub mackerel  3.0352877003
## 3595           Pelagic    5          pacific sardine  3.5787322549
## 3596          Midwater   12                kelp bass  3.4026755717
## 3597     Benthopelagic   11         barred sand bass  3.4654115715
## 3598           Benthic    8         hornyhead turbot  3.0199957711
## 3599           Benthic    4           spotted turbot  3.4132217416
## 3600           Benthic    5  california scorpionfish  3.2947725223
## 3601          Midwater   21                kelp bass  1.3392898178
## 3602     Benthopelagic    1       california corbina  1.2604026222
## 3603           Pelagic   21            chub mackerel  1.1473003527
## 3604           Benthic    3           diamond turbot  1.2631009207
## 3605           Pelagic   11            chub mackerel  1.3458741462
## 3606     Benthopelagic    9   greenblotched rockfish  0.8489312476
## 3607     Benthopelagic    5            white croaker  1.0341737949
## 3608     Benthopelagic    4        yellowfin croaker  1.4141934765
## 3609          Midwater    7      squarespot rockfish  1.2736604380
## 3610     Benthopelagic   15        speckled rockfish  1.2703242751
## 3611     Benthopelagic   11          white surfperch  1.2213972550
## 3612     Benthopelagic   13       vermilion rockfish  1.0329137807
## 3613     Benthopelagic    2        spotted sand bass  1.0817748960
## 3614     Benthopelagic   15       vermilion rockfish  1.3706394705
## 3615     Benthopelagic   13            white croaker  1.0932874993
## 3616     Benthopelagic    1              black perch  1.1208244278
## 3617     Benthopelagic    8         barred sand bass  1.2101340220
## 3618           Pelagic   11            chub mackerel  1.2066324749
## 3619           Pelagic    6             market squid  1.3740169056
## 3620     Benthopelagic   10            white croaker  1.2088330701
## 3621           Benthic    4           spotted turbot  1.1812282493
## 3622          Midwater   11                kelp bass  1.0888070923
## 3623     Benthopelagic    1              black perch  1.3727611272
## 3624     Benthopelagic   21            white croaker  0.8850221709
## 3625     Benthopelagic   20       california corbina  1.2218670523
## 3626     Benthopelagic   11              black perch  1.2146363804
## 3627           Pelagic   21            chub mackerel  1.2789981536
## 3628     Benthopelagic    1        yellowfin croaker  1.1168669935
## 3629     Benthopelagic   10           brown rockfish  1.1959272992
## 3630           Pelagic   11            chub mackerel  1.3312798922
## 3631     Benthopelagic   11          gopher rockfish  1.6138003357
## 3632     Benthopelagic   21        spotted sand bass  1.2872994349
## 3633     Benthopelagic   23       vermilion rockfish  1.3886800700
## 3634           Pelagic    5            chub mackerel  1.1981987547
## 3635          Midwater    3         shiner surfperch  1.3592269205
## 3636          Midwater   11         shiner surfperch  1.3034605624
## 3637     Benthopelagic   20         barred surfperch  1.2522433462
## 3638     Benthopelagic    3         barred surfperch  1.2304880407
## 3639     Benthopelagic   21        yellowfin croaker  1.1867793284
## 3640     Benthopelagic    5       california corbina  1.0005223913
## 3641     Benthopelagic    5            white croaker  1.0700682666
## 3642           Pelagic    5             market squid  1.1938741090
## 3643     Benthopelagic   17            white croaker  1.2214834059
## 3644     Benthopelagic   20         barred sand bass  1.3958542824
## 3645     Benthopelagic    3              black perch  1.4528464980
## 3646     Benthopelagic   11            white croaker  1.3004905334
## 3647     Benthopelagic    5                  opaleye  1.2337426158
## 3648     Benthopelagic    5            white croaker  1.3775210427
## 3649          Midwater   21                kelp bass  1.0237638874
## 3650     Benthopelagic   23       vermilion rockfish  1.1280811062
## 3651     Benthopelagic    4       california corbina  1.3897355285
## 3652     Benthopelagic   11              black perch  1.0989703409
## 3653     Benthopelagic    5                  opaleye  1.3208077142
## 3654     Benthopelagic    5            white croaker  1.4995661858
## 3655     Benthopelagic   11        spotted sand bass  1.1857254423
## 3656           Pelagic   21            chub mackerel  1.2299769224
## 3657           Pelagic    5         northern anchovy  1.0487254897
## 3658     Benthopelagic    3        spotted sand bass  1.1981237996
## 3659     Benthopelagic   20           pile surfperch  1.4665596591
## 3660           Pelagic    5         northern anchovy  1.1803251471
## 3661           Benthic   11         hornyhead turbot  1.3711872732
## 3662     Benthopelagic   11            black croaker  1.2097416337
## 3663     Benthopelagic    1          white surfperch  1.1238086921
## 3664     Benthopelagic   11         barred sand bass  1.1227899083
## 3665     Benthopelagic   14            white croaker  1.1128057451
## 3666     Benthopelagic    3       california corbina  1.1060418639
## 3667           Pelagic    5            chub mackerel  1.3769367460
## 3668     Benthopelagic   12            white croaker  0.7666716440
## 3669     Benthopelagic    1        yellowfin croaker  1.2535566031
## 3670     Benthopelagic   22          starry rockfish  1.1959156822
## 3671     Benthopelagic    5                  opaleye  1.0760977106
## 3672           Pelagic   11            chub mackerel  1.3380110187
## 3673     Benthopelagic   22            white croaker  1.3253564052
## 3674     Benthopelagic   17        speckled rockfish  1.2231720492
## 3675     Benthopelagic   11         barred sand bass  1.2289372816
## 3676     Benthopelagic   21        spotted sand bass  1.5791186717
## 3677     Benthopelagic    1        spotted sand bass  1.4896248183
## 3678     Benthopelagic    4           pile surfperch  1.0317732785
## 3679     Benthopelagic    5                  opaleye  1.1642989725
## 3680          Midwater    2                kelp bass  1.1339527709
## 3681     Benthopelagic   10              black perch  1.2678690695
## 3682           Pelagic    5          pacific sardine  1.2228460696
## 3683          Midwater    1         shiner surfperch  1.5143934140
## 3684     Benthopelagic    1         barred surfperch  1.1647879431
## 3685     Benthopelagic    2            white croaker  1.5207479436
## 3686     Benthopelagic    1            white croaker  1.4275239718
## 3687     Benthopelagic    5         barred sand bass  1.3838041277
## 3688     Benthopelagic   24       vermilion rockfish  1.5205567573
## 3689          Midwater    3          canary rockfish  1.3480376685
## 3690     Benthopelagic   18            white croaker  1.1569764302
## 3691     Benthopelagic    7           brown rockfish  0.9354489954
## 3692          Midwater    5                queenfish  0.9274883426
## 3693           Benthic    1           diamond turbot  1.2618749513
## 3694     Benthopelagic    1            white croaker  1.2196031527
## 3695           Pelagic    5             market squid  1.1732471645
## 3696           Pelagic    5             market squid  1.2713405176
## 3697     Benthopelagic    3        spotted sand bass  1.1201864491
## 3698           Pelagic    5             market squid  1.0867135009
## 3699          Midwater   11                kelp bass  1.0142091573
## 3700           Benthic    5       california halibut  1.2017965195
## 3701           Benthic   19         hornyhead turbot  1.4635151282
## 3702           Pelagic    5         northern anchovy  1.1135391857
## 3703          Midwater   21                kelp bass  1.1971842965
## 3704           Pelagic   21            chub mackerel  1.0078442317
## 3705          Midwater    1                queenfish  1.0798368820
## 3706     Benthopelagic    3        spotted sand bass  1.1388775686
## 3707     Benthopelagic   14    greenspotted rockfish  1.1112739699
## 3708     Benthopelagic    5            white croaker  1.4026597358
## 3709     Benthopelagic   10   greenblotched rockfish  1.3358224539
## 3710     Benthopelagic    5                  opaleye  1.2293579288
## 3711     Benthopelagic    1            white croaker  1.1406927783
## 3712           Pelagic    5          pacific sardine  1.4599962250
## 3713          Midwater    1            blue rockfish  1.2403511836
## 3714          Midwater   21                kelp bass  1.2219904849
## 3715     Benthopelagic    3         barred sand bass  0.9093722849
## 3716           Pelagic   21            chub mackerel  1.4324418303
## 3717     Benthopelagic    4                  opaleye  1.0832994939
## 3718     Benthopelagic    1     california sheephead  1.2823449445
## 3719     Benthopelagic   11              black perch  1.3367300625
## 3720     Benthopelagic    1        yellowfin croaker  1.3008734536
## 3721     Benthopelagic   18              black perch  1.3709725756
## 3722     Benthopelagic    1        yellowfin croaker  1.4106450440
## 3723     Benthopelagic   21        spotted sand bass  1.4922741804
## 3724     Benthopelagic    5                  opaleye  1.1496949749
## 3725     Benthopelagic   12       vermilion rockfish  1.3363970523
## 3726     Benthopelagic   18       vermilion rockfish  1.2485072879
## 3727     Benthopelagic    3              black perch  1.1560422161
## 3728          Midwater    3                kelp bass  1.3521775023
## 3729     Benthopelagic   12            white croaker  1.3145081593
## 3730          Midwater   21                kelp bass  1.4118606713
## 3731          Midwater    4         shiner surfperch  1.2858861573
## 3732     Benthopelagic   11          gopher rockfish  1.6378859252
## 3733     Benthopelagic    3       vermilion rockfish  1.0870812443
## 3734     Benthopelagic   14         barred sand bass  1.1785455669
## 3735          Midwater   21                kelp bass  1.2433194335
## 3736          Midwater    1                queenfish  1.1355274091
## 3737     Benthopelagic   22          starry rockfish  1.4155033026
## 3738     Benthopelagic   20            white croaker  1.1936302871
## 3739     Benthopelagic    4       california corbina  1.1835129672
## 3740     Benthopelagic    8              black perch  1.3171706440
## 3741           Benthic   20         hornyhead turbot  1.4338447832
## 3742          Midwater   21                kelp bass  1.1268873410
## 3743     Benthopelagic    4              black perch  1.2409230310
## 3744     Benthopelagic    4            white croaker  1.1610778742
## 3745     Benthopelagic    4              black perch  1.1803734308
## 3746     Benthopelagic   21        yellowfin croaker  1.2968227288
## 3747     Benthopelagic    1                  opaleye  1.0454751766
## 3748           Benthic   21         hornyhead turbot  1.1733074322
## 3749     Benthopelagic    4         barred surfperch  1.0382342485
## 3750          Midwater   11                kelp bass  1.2937988659
## 3751           Pelagic    5             market squid  1.1907857438
## 3752           Benthic    1           diamond turbot  1.2797891282
## 3753     Benthopelagic    1            white croaker  1.3540616645
## 3754     Benthopelagic    4              black perch  1.3564765335
## 3755           Pelagic    6             market squid  1.2693483842
## 3756     Benthopelagic   11            white croaker  1.0939092488
## 3757     Benthopelagic    9            white croaker  1.0636433360
## 3758           Pelagic   21         northern anchovy  1.2147000798
## 3759     Benthopelagic   11           brown rockfish  1.4076505178
## 3760     Benthopelagic   11          ocean whitefish  1.2588125250
## 3761           Benthic   17         hornyhead turbot  1.3291479719
## 3762           Benthic   11  california scorpionfish  1.2488712029
## 3763           Benthic   20           diamond turbot  1.1533063872
## 3764     Benthopelagic    4        spotted sand bass  1.4633237819
## 3765          Midwater   11           olive rockfish  1.2911669545
## 3766     Benthopelagic    1              black perch  1.3258651282
## 3767     Benthopelagic    5            white croaker  1.2799075377
## 3768           Pelagic    5         northern anchovy  1.1244408301
## 3769     Benthopelagic   11        yellowfin croaker  1.2120701650
## 3770          Midwater   16                kelp bass  1.2912973815
## 3771     Benthopelagic   11            white croaker  1.2511767234
## 3772     Benthopelagic   11              black perch  1.4665904351
## 3773          Midwater   18                kelp bass  1.2666216762
## 3774     Benthopelagic    3              black perch  1.3920447864
## 3775          Midwater    1                kelp bass  1.3174182182
## 3776     Benthopelagic   15            white croaker  1.3127016643
## 3777     Benthopelagic   22         barred sand bass  1.1654740268
## 3778     Benthopelagic    1            white croaker  1.3185899052
## 3779     Benthopelagic   21        yellowfin croaker  1.4369449664
## 3780           Benthic    5  california scorpionfish  1.3543159115
## 3781           Pelagic   21            chub mackerel  1.1963270577
## 3782           Benthic    1           spotted turbot  1.3059675518
## 3783     Benthopelagic   11          gopher rockfish  1.1486632441
## 3784     Benthopelagic    1            white croaker  1.1092527207
## 3785     Benthopelagic    5       california corbina  1.3004930435
## 3786     Benthopelagic    1              black perch  0.7360045194
## 3787     Benthopelagic   11          spotfin croaker  1.2648873260
## 3788     Benthopelagic    8          copper rockfish  1.0991487433
## 3789     Benthopelagic    4        yellowfin croaker  1.0965259433
## 3790     Benthopelagic   12            white croaker  1.3508715855
## 3791          Midwater    8      yellowtail rockfish  1.1317275148
## 3792          Midwater    3                kelp bass  1.2292575842
## 3793     Benthopelagic    5          spotfin croaker  1.0895052967
## 3794           Pelagic    5          pacific sardine  1.4448886580
## 3795           Benthic    5  california scorpionfish  1.0933387602
## 3796     Benthopelagic    3         barred surfperch  1.2688325494
## 3797           Pelagic    6          pacific sardine  1.3499717508
## 3798     Benthopelagic   11       vermilion rockfish  1.3961130455
## 3799           Pelagic    5         northern anchovy  1.2953932109
## 3800           Pelagic   11            chub mackerel  1.4349848346
## 3801           Pelagic   21            chub mackerel  1.3363621843
## 3802          Midwater    5                top smelt  1.1649418222
## 3803          Midwater    2                queenfish  1.4730611277
## 3804     Benthopelagic    4            white croaker  1.2356087305
## 3805     Benthopelagic   18              black perch  1.1492841500
## 3806          Midwater   21                kelp bass  1.2250113655
## 3807     Benthopelagic    4          copper rockfish  1.1792412042
## 3808     Benthopelagic   20              black perch  1.3203153318
## 3809           Benthic    1         speckled sanddab  0.9779108137
## 3810     Benthopelagic   18            white croaker  1.1760372671
## 3811     Benthopelagic   11         barred sand bass  1.1915649355
## 3812     Benthopelagic   11          spotfin croaker  0.9752223966
## 3813           Pelagic   11            chub mackerel  1.3966437160
## 3814           Pelagic    5            chub mackerel  1.2976918221
## 3815           Benthic   18         hornyhead turbot  1.3825220800
## 3816           Benthic   12  california scorpionfish  0.9072023941
## 3817           Benthic    1             fantail sole  1.1368666742
## 3818          Midwater   21                kelp bass  1.4034034981
## 3819     Benthopelagic    3          white surfperch  1.0080960501
## 3820     Benthopelagic   13       vermilion rockfish  1.2644465729
## 3821     Benthopelagic   18            white croaker  1.3138866853
## 3822          Midwater    1         shiner surfperch  1.2607408028
## 3823     Benthopelagic   14            white croaker  1.3330624438
## 3824          Midwater   11                kelp bass  1.3294112293
## 3825           Benthic    5         speckled sanddab  1.2030297437
## 3826           Benthic   17  california scorpionfish  1.2136349989
## 3827     Benthopelagic   21       california corbina  1.1514406723
## 3828           Benthic   11  california scorpionfish  1.3581804968
## 3829           Benthic   17         hornyhead turbot  1.1519263906
## 3830     Benthopelagic   12              black perch  0.9358343463
## 3831     Benthopelagic    1            white croaker  1.5150080144
## 3832     Benthopelagic    5       california corbina  0.9911407466
## 3833     Benthopelagic    4              black perch  1.3093963200
## 3834     Benthopelagic    5            white croaker  1.4840739808
## 3835     Benthopelagic    1            white croaker  1.0823195960
## 3836           Benthic   14         hornyhead turbot  1.1635715586
## 3837           Benthic    4    shovelnose guitarfish  1.3481378683
## 3838          Midwater    1        walleye surfperch  1.1705460831
## 3839          Midwater   18                kelp bass  0.9796593054
## 3840     Benthopelagic    5            white croaker  1.3537681994
## 3841     Benthopelagic    5         barred sand bass  1.5816803929
## 3842          Midwater    2                kelp bass  1.2592119978
## 3843     Benthopelagic   21         barred sand bass  1.5394526845
## 3844     Benthopelagic   12       vermilion rockfish  1.3425731623
## 3845     Benthopelagic    2       quillback rockfish  1.2408599097
## 3846     Benthopelagic   21            white croaker  1.1202766037
## 3847     Benthopelagic   16       vermilion rockfish  0.9726777386
## 3848     Benthopelagic    3              black perch  1.3234029480
## 3849           Benthic    8  california scorpionfish  1.1470128684
## 3850           Pelagic    5          pacific sardine  1.0866999649
## 3851           Benthic    5  california scorpionfish  1.1828440402
## 3852     Benthopelagic    8          copper rockfish  1.2427605155
## 3853           Pelagic    5          pacific sardine  1.3635419857
## 3854     Benthopelagic    2            white croaker  1.2292377313
## 3855     Benthopelagic    1            white croaker  1.3755399429
## 3856     Benthopelagic   21            leopard shark  1.1280758843
## 3857     Benthopelagic   14              black perch  1.1895832569
## 3858     Benthopelagic   16       vermilion rockfish  1.2612464084
## 3859     Benthopelagic   10       vermilion rockfish  1.1851241361
## 3860          Midwater   21                kelp bass  1.1435983351
## 3861     Benthopelagic    1            rosy rockfish  1.1210813427
## 3862          Midwater    3         shiner surfperch  0.9120573598
## 3863     Benthopelagic   11            white croaker  1.3718227000
## 3864     Benthopelagic    1         barred surfperch  1.1482670880
## 3865          Midwater    1         shiner surfperch  1.2692270919
## 3866           Pelagic   21            chub mackerel  1.3674477046
## 3867     Benthopelagic   16       vermilion rockfish  1.4563206756
## 3868     Benthopelagic    7        speckled rockfish  1.2090537381
## 3869          Midwater    4         shiner surfperch  1.3999003290
## 3870     Benthopelagic   11       vermilion rockfish  1.2378907685
## 3871           Pelagic    5            chub mackerel  1.3060751857
## 3872          Midwater   14                kelp bass  1.3309556279
## 3873     Benthopelagic    3              black perch  1.1701183317
## 3874     Benthopelagic    5            black croaker  1.4341998355
## 3875          Midwater    5                top smelt  1.2309962034
## 3876          Midwater   11                top smelt  1.3786364170
## 3877           Benthic   10         hornyhead turbot  1.2976834833
## 3878           Pelagic    5             market squid  1.2450339265
## 3879     Benthopelagic   12              black perch  1.0428346252
## 3880     Benthopelagic    1       california corbina  1.2949011200
## 3881     Benthopelagic    3         barred surfperch  1.1473075769
## 3882     Benthopelagic   19       vermilion rockfish  1.2310627395
## 3883     Benthopelagic   15        speckled rockfish  1.0729678012
## 3884           Pelagic    5          pacific sardine  1.1285630949
## 3885     Benthopelagic    4         barred surfperch  1.4808247224
## 3886     Benthopelagic   11              black perch  0.8253767038
## 3887          Midwater   11                kelp bass  1.1751725512
## 3888     Benthopelagic   11         barred surfperch  1.1536871246
## 3889           Pelagic    5         northern anchovy  1.1918952545
## 3890           Pelagic    5          pacific sardine  1.1296789006
## 3891     Benthopelagic   11            white croaker  1.1375477612
## 3892     Benthopelagic   19            white croaker  1.0980904655
## 3893     Benthopelagic    3              black perch  1.2084802041
## 3894     Benthopelagic   19       vermilion rockfish  1.3806295776
## 3895     Benthopelagic   12           brown rockfish  1.0215169439
## 3896     Benthopelagic    6          copper rockfish  1.2870882122
## 3897           Pelagic    5             market squid  1.2121545430
## 3898     Benthopelagic   22              black perch  1.1630233058
## 3899           Benthic   20       california halibut  1.2280697105
## 3900     Benthopelagic    2        spotted sand bass  1.3358274794
## 3901           Benthic    1           diamond turbot  1.4806661139
## 3902           Benthic   23         hornyhead turbot  1.1695981170
## 3903     Benthopelagic    5         barred sand bass  0.9890932922
## 3904           Benthic    4    california lizardfish  1.2012901447
## 3905     Benthopelagic   11 brown smooth-hound shark  1.2289333820
## 3906     Benthopelagic   21            white croaker  1.4713371155
## 3907     Benthopelagic    4            flag rockfish  1.1303984257
## 3908           Benthic   12         hornyhead turbot  1.1107550438
## 3909           Benthic    4    shovelnose guitarfish  1.2389116067
## 3910     Benthopelagic   14            white croaker  1.3567088126
## 3911     Benthopelagic    5     california sheephead  1.4048203280
## 3912           Pelagic    5         northern anchovy  1.3417049039
## 3913     Benthopelagic   20       vermilion rockfish  1.2623507671
## 3914     Benthopelagic    2         barred surfperch  1.4087654576
## 3915          Midwater   17      squarespot rockfish  1.1535946138
## 3916     Benthopelagic   18       vermilion rockfish  1.4046318668
## 3917     Benthopelagic   11            white croaker  1.1013614309
## 3918     Benthopelagic    4         barred sand bass  1.2609344598
## 3919          Midwater    4                top smelt  1.3738018656
## 3920           Benthic   17         hornyhead turbot  1.2540660477
## 3921     Benthopelagic   11            white croaker  1.0321163612
## 3922     Benthopelagic   11         barred surfperch  1.2446376866
## 3923           Pelagic    5             market squid  1.2545000172
## 3924           Benthic   19  california scorpionfish  1.3373745783
## 3925           Pelagic    5             market squid  1.1798612531
## 3926     Benthopelagic   10         barred sand bass  1.2911528317
## 3927           Pelagic   11            chub mackerel  1.1499691040
## 3928     Benthopelagic   11              black perch  1.3504648882
## 3929     Benthopelagic   22              black perch  1.2560165909
## 3930     Benthopelagic   12            white croaker  1.0219693788
## 3931           Benthic    5    shovelnose guitarfish  1.1602849690
## 3932     Benthopelagic   20       california corbina  1.2864487941
## 3933     Benthopelagic    5                  opaleye  0.9452307974
## 3934     Benthopelagic   16       vermilion rockfish  1.3958181524
## 3935     Benthopelagic    1        spotted sand bass  1.2597928592
## 3936     Benthopelagic    3        rainbow surfperch  1.3558216662
## 3937     Benthopelagic   17            white croaker  1.0598754017
## 3938           Benthic   22  california scorpionfish  1.4999667357
## 3939          Midwater   21                kelp bass  1.2075714930
## 3940           Pelagic    5             market squid  1.1787418939
## 3941     Benthopelagic   21            white croaker  1.1942720494
## 3942     Benthopelagic    1        rainbow surfperch  1.1959625260
## 3943     Benthopelagic    4       california corbina  1.1465382293
## 3944           Pelagic   21            chub mackerel  1.1285534230
## 3945     Benthopelagic   20            white croaker  1.2866929295
## 3946           Pelagic    6          pacific sardine  1.2681866185
## 3947          Midwater    4           striped mullet  1.3314617915
## 3948           Pelagic   21            chub mackerel  1.0408446469
## 3949           Benthic    1         speckled sanddab  1.3006571763
## 3950     Benthopelagic   11            white croaker  1.3518500862
## 3951           Benthic    8         hornyhead turbot  1.1042138981
## 3952          Midwater    4         shiner surfperch  1.2081271538
## 3953     Benthopelagic   10       vermilion rockfish  1.5528497926
## 3954     Benthopelagic    1        rainbow surfperch  1.3513467387
## 3955          Midwater   11         shiner surfperch  1.4914742171
## 3956     Benthopelagic    5            leopard shark  1.2942493994
## 3957           Pelagic   21            chub mackerel  1.0708067025
## 3958     Benthopelagic   11              black perch  1.3631362063
## 3959          Midwater    4         shiner surfperch  1.1218379161
## 3960     Benthopelagic   14              black perch  1.1431920159
## 3961          Midwater   11                kelp bass  1.2807338776
## 3962     Benthopelagic   18            white croaker  1.1673622089
## 3963          Midwater    4                top smelt  1.3225877214
## 3964     Benthopelagic    5   gray smoothhound shark  1.4241258543
## 3965     Benthopelagic   23            white croaker  1.4601388300
## 3966           Pelagic   21           slough anchovy  1.2824911855
## 3967          Midwater    1                queenfish  1.3283441686
## 3968     Benthopelagic   21            white croaker  1.2456825904
## 3969          Midwater    1                kelp bass  1.3818544098
## 3970     Benthopelagic   24       vermilion rockfish  1.2501169793
## 3971           Pelagic   21            chub mackerel  1.2292191742
## 3972           Pelagic    5          pacific sardine  1.2187266741
## 3973     Benthopelagic    4       california corbina  1.0143450690
## 3974     Benthopelagic    3       california corbina  0.9557765518
## 3975     Benthopelagic   16              black perch  1.1901904345
## 3976           Pelagic    5          pacific sardine  1.1336404584
## 3977           Pelagic   21            chub mackerel  1.0061972866
## 3978     Benthopelagic   21         barred sand bass  1.1567949959
## 3979           Pelagic    6          pacific sardine  1.4706077937
## 3980     Benthopelagic    5        yellowfin croaker  1.3925625705
## 3981           Benthic    1  california scorpionfish  1.1369930697
## 3982          Midwater    4         shiner surfperch  1.2197652708
## 3983           Benthic    5  california scorpionfish  1.4639188868
## 3984     Benthopelagic    5       california corbina  0.9335501665
## 3985           Benthic   19         hornyhead turbot  0.9132688176
## 3986     Benthopelagic    2              black perch  1.0986450785
## 3987     Benthopelagic   21        spotted sand bass  1.1645585322
## 3988     Benthopelagic    7       vermilion rockfish  1.3864729544
## 3989     Benthopelagic    3              black perch  1.1096431640
## 3990           Pelagic   11            chub mackerel  1.2355183268
## 3991     Benthopelagic   22            white croaker  0.9524226128
## 3992          Midwater    2         shiner surfperch  1.3358657306
## 3993     Benthopelagic   11   gray smoothhound shark  1.3210445114
## 3994     Benthopelagic   19            white croaker  1.3606746051
## 3995     Benthopelagic   11            white croaker  1.1912064976
## 3996     Benthopelagic    5            white croaker  1.4866794018
## 3997     Benthopelagic   21          white surfperch  1.3916228736
## 3998          Midwater    5                 halfmoon  1.1952897159
## 3999          Midwater   10                kelp bass  1.2738077566
## 4000          Midwater    1                kelp bass  1.2139365270
## 4001          Midwater    3         shiner surfperch  3.0741661437
## 4002     Benthopelagic   10            white croaker  2.9730951988
## 4003          Midwater    5                queenfish  2.8635185118
## 4004     Benthopelagic    1            white croaker  2.9289790855
## 4005     Benthopelagic    4              black perch  3.0965230352
## 4006     Benthopelagic    1         barred sand bass  2.9746087863
## 4007          Midwater    5                kelp bass  3.4196866967
## 4008           Pelagic    5          pacific sardine  3.1087636768
## 4009     Benthopelagic   21         barred sand bass  3.0333825328
## 4010     Benthopelagic    4           pile surfperch  3.3052869877
## 4011          Midwater   14                kelp bass  3.2437010167
## 4012     Benthopelagic   16          copper rockfish  3.3176790769
## 4013     Benthopelagic    3        spotted sand bass  3.0041999940
## 4014          Midwater   16                kelp bass  2.9959640880
## 4015          Midwater    4                kelp bass  3.0737217035
## 4016     Benthopelagic   14              black perch  3.4261219879
## 4017           Pelagic    6          pacific sardine  3.1701016859
## 4018     Benthopelagic   11              black perch  3.1729536522
## 4019     Benthopelagic    4           pile surfperch  2.8754677734
## 4020     Benthopelagic    5        yellowfin croaker  2.7363472064
## 4021           Benthic   14         hornyhead turbot  3.1105612366
## 4022           Pelagic    5          pacific sardine  2.9175303538
## 4023           Pelagic   21            chub mackerel  2.9770268940
## 4024          Midwater   21                kelp bass  3.2985716530
## 4025     Benthopelagic   10              black perch  3.2564313194
## 4026          Midwater   21                kelp bass  3.1623826250
## 4027           Pelagic    5          pacific sardine  3.2944585144
## 4028          Midwater    3         shiner surfperch  3.1234814702
## 4029     Benthopelagic    8         barred sand bass  2.9410315425
## 4030     Benthopelagic   11         barred sand bass  3.3354690112
## 4031          Midwater    1        walleye surfperch  3.1312454560
## 4032           Benthic   20  california scorpionfish  3.0688101115
## 4033           Benthic   23         hornyhead turbot  3.2830199815
## 4034           Benthic   19  california scorpionfish  3.1352612634
## 4035     Benthopelagic   12           brown rockfish  3.0876685410
## 4036     Benthopelagic   11          white surfperch  3.3132324327
## 4037     Benthopelagic    5       california corbina  3.0536597763
## 4038     Benthopelagic    4              black perch  3.1947569746
## 4039     Benthopelagic    5            white croaker  2.7260460767
## 4040     Benthopelagic    3        spotted sand bass  3.1912322561
## 4041     Benthopelagic   20            white croaker  2.9696641269
## 4042          Midwater    1         shiner surfperch  2.9184529515
## 4043           Benthic   20         hornyhead turbot  3.1544891488
## 4044           Benthic    1           spotted turbot  3.3287477569
## 4045           Benthic   23         hornyhead turbot  3.0450118899
## 4046     Benthopelagic   14       vermilion rockfish  3.2542929338
## 4047           Pelagic    5             market squid  3.1780900085
## 4048     Benthopelagic    8            white croaker  3.0577395859
## 4049           Pelagic    5             market squid  3.1631179506
## 4050     Benthopelagic    5       vermilion rockfish  3.0102835025
## 4051     Benthopelagic   11            white croaker  3.2061481240
## 4052           Benthic    3           diamond turbot  3.1683892076
## 4053           Pelagic   21         northern anchovy  3.3624200758
## 4054           Benthic    8         hornyhead turbot  2.9184269344
## 4055     Benthopelagic    4         barred sand bass  2.9122692204
## 4056          Midwater    3                jacksmelt  2.9553754558
## 4057          Midwater   21                kelp bass  3.3358239415
## 4058     Benthopelagic   11        yellowfin croaker  2.9717683836
## 4059          Midwater    8                kelp bass  3.0383005569
## 4060     Benthopelagic    9       vermilion rockfish  3.1364378112
## 4061          Midwater   21                kelp bass  3.2100957734
## 4062     Benthopelagic    1         barred surfperch  2.9125503994
## 4063          Midwater   11                top smelt  3.2594716173
## 4064     Benthopelagic    5            white croaker  3.0077472141
## 4065     Benthopelagic    4         barred surfperch  3.3530664480
## 4066     Benthopelagic   21        yellowfin croaker  3.3250265994
## 4067     Benthopelagic    5         barred sand bass  3.2570038280
## 4068           Pelagic   21            chub mackerel  2.9951934905
## 4069          Midwater   21                kelp bass  3.2825189465
## 4070     Benthopelagic    8            white croaker  2.9796131235
## 4071           Pelagic   21            chub mackerel  3.3134099187
## 4072     Benthopelagic   16        speckled rockfish  2.9412916031
## 4073     Benthopelagic    5         barred sand bass  3.4016213536
## 4074           Pelagic   21           slough anchovy  2.9252115228
## 4075     Benthopelagic   11            rosy rockfish  3.2404529561
## 4076           Benthic    4           diamond turbot  3.0468862025
## 4077           Benthic   16  california scorpionfish  3.3770884973
## 4078     Benthopelagic   20       vermilion rockfish  2.8832248564
## 4079          Midwater   20                kelp bass  2.8773458924
## 4080          Midwater   21                kelp bass  3.2167109850
## 4081           Benthic   13         hornyhead turbot  3.0433989885
## 4082           Pelagic   21            chub mackerel  3.1280913596
## 4083     Benthopelagic   14       vermilion rockfish  3.1518710161
## 4084          Midwater    5                kelp bass  2.9410175689
## 4085           Benthic   10  california scorpionfish  3.0688594204
## 4086     Benthopelagic    5         barred sand bass  3.3078420907
## 4087          Midwater    4                kelp bass  2.9912358480
## 4088     Benthopelagic    1        yellowfin croaker  3.1580037173
## 4089     Benthopelagic   10           brown rockfish  3.1968473035
## 4090           Benthic    5          longfin sanddab  3.5565755422
## 4091     Benthopelagic    3        yellowfin croaker  3.0804650827
## 4092     Benthopelagic   11            white croaker  3.1867877491
## 4093          Midwater   20                kelp bass  3.0173418282
## 4094           Benthic    5       california halibut  3.1762865249
## 4095           Pelagic    5          pacific sardine  3.2628552868
## 4096          Midwater   21                kelp bass  2.8350613684
## 4097     Benthopelagic    8            white croaker  2.9217631803
## 4098     Benthopelagic    3       california corbina  3.1942101874
## 4099     Benthopelagic    4        spotted sand bass  3.1916533188
## 4100           Benthic   10  california scorpionfish  3.1958777339
## 4101           Benthic    5  california scorpionfish  3.0251471273
## 4102          Midwater   11                top smelt  3.1396062390
## 4103     Benthopelagic   17            white croaker  2.9218072612
## 4104     Benthopelagic    5            white croaker  3.1513469211
## 4105           Pelagic   21         northern anchovy  3.3693861141
## 4106           Pelagic    5          pacific sardine  3.0484894633
## 4107     Benthopelagic    1       california corbina  3.1916848869
## 4108          Midwater    5                kelp bass  3.0926373022
## 4109     Benthopelagic   20            white croaker  3.2458009015
## 4110     Benthopelagic    3            rosy rockfish  3.0732730122
## 4111     Benthopelagic   21        yellowfin croaker  3.3490921099
## 4112     Benthopelagic    1         barred surfperch  3.1677807204
## 4113     Benthopelagic   14         barred sand bass  3.1938031282
## 4114     Benthopelagic    5       vermilion rockfish  3.1221804084
## 4115          Midwater   21                kelp bass  3.0822028267
## 4116     Benthopelagic    3           pile surfperch  2.8842415035
## 4117     Benthopelagic   19       vermilion rockfish  3.4017055161
## 4118           Pelagic    5            chub mackerel  2.9442950124
## 4119          Midwater   21                kelp bass  3.5194426446
## 4120          Midwater    5                queenfish  2.8252004613
## 4121     Benthopelagic   11            white croaker  3.0715827660
## 4122           Benthic    1           diamond turbot  3.1279806700
## 4123           Benthic   22         hornyhead turbot  3.2842079250
## 4124          Midwater    5                kelp bass  2.8756337984
## 4125     Benthopelagic   21          spotfin croaker  3.1128723124
## 4126           Pelagic    5            chub mackerel  3.0664905187
## 4127     Benthopelagic    5       vermilion rockfish  3.3717065948
## 4128     Benthopelagic    1         barred surfperch  3.2847588143
## 4129     Benthopelagic   11            white croaker  3.0784782137
## 4130     Benthopelagic    4         barred sand bass  3.0550011246
## 4131     Benthopelagic   17       vermilion rockfish  3.1224704570
## 4132     Benthopelagic   11          white surfperch  3.0003646883
## 4133     Benthopelagic    8          copper rockfish  3.2485511133
## 4134          Midwater   11            kelp rockfish  3.3662486877
## 4135     Benthopelagic    5            white croaker  3.1138234254
## 4136     Benthopelagic    4         barred surfperch  3.0969646357
## 4137     Benthopelagic    4       california corbina  3.1227552415
## 4138           Benthic   20       california halibut  3.2569362194
## 4139           Benthic    3           diamond turbot  3.0345873419
## 4140     Benthopelagic   12         barred sand bass  2.8185553913
## 4141          Midwater    1                 halfmoon  3.1768082976
## 4142     Benthopelagic   13       vermilion rockfish  2.6277000580
## 4143           Pelagic    5        pacific barracuda  3.1538611522
## 4144     Benthopelagic    3              black perch  3.2194140118
## 4145           Pelagic   21            chub mackerel  3.1820593241
## 4146     Benthopelagic   14            white croaker  2.9442180299
## 4147     Benthopelagic   24       vermilion rockfish  3.0502081321
## 4148     Benthopelagic   20       california corbina  3.0329338482
## 4149     Benthopelagic   21         barred sand bass  3.2219427785
## 4150     Benthopelagic   11            white croaker  3.1277815528
## 4151          Midwater   21                kelp bass  2.9705393974
## 4152          Midwater    1         shiner surfperch  2.8975454827
## 4153          Midwater    5         shiner surfperch  3.1279500914
## 4154     Benthopelagic   11           brown rockfish  3.3213828275
## 4155     Benthopelagic    5         barred sand bass  3.1153830494
## 4156           Pelagic    5          pacific sardine  3.0519493165
## 4157           Benthic   16         hornyhead turbot  3.1309401880
## 4158          Midwater    1         shiner surfperch  3.3713263309
## 4159     Benthopelagic    5                  opaleye  2.8817863255
## 4160     Benthopelagic   20            white croaker  3.1754996836
## 4161     Benthopelagic   21            white croaker  3.1295441200
## 4162     Benthopelagic   11          spotfin croaker  3.3240890711
## 4163           Benthic   22  california scorpionfish  2.9955609007
## 4164           Pelagic    5          pacific sardine  3.3356025565
## 4165     Benthopelagic    1                  opaleye  3.0968634992
## 4166          Midwater    1         shiner surfperch  3.0126958729
## 4167     Benthopelagic   11         barred surfperch  3.2579407612
## 4168          Midwater   11         shiner surfperch  3.3713460759
## 4169     Benthopelagic   12            white croaker  2.8429305578
## 4170          Midwater   21                queenfish  3.1243059655
## 4171           Benthic    4    shovelnose guitarfish  3.0720211000
## 4172     Benthopelagic   21         barred sand bass  2.9025892206
## 4173     Benthopelagic   10            white croaker  2.9596292039
## 4174     Benthopelagic    1       california corbina  3.2128451464
## 4175     Benthopelagic   11            white croaker  3.1180736434
## 4176          Midwater   11                kelp bass  3.1520823038
## 4177     Benthopelagic    3        spotted sand bass  2.9767820986
## 4178     Benthopelagic    3          copper rockfish  3.1909879451
## 4179           Pelagic   11            chub mackerel  3.2008344584
## 4180           Pelagic    5             market squid  2.9951628070
## 4181           Pelagic   11            chub mackerel  3.1005682431
## 4182           Pelagic   21            chub mackerel  3.3572391217
## 4183           Benthic   22  california scorpionfish  3.0839935040
## 4184          Midwater    4         shiner surfperch  3.0963709559
## 4185           Benthic   18  california scorpionfish  3.3715761530
## 4186     Benthopelagic    5                  opaleye  2.9385151439
## 4187          Midwater   21                queenfish  3.1836967434
## 4188     Benthopelagic    5          copper rockfish  3.3195088253
## 4189     Benthopelagic   11         barred sand bass  3.1444135220
## 4190     Benthopelagic   21        spotted sand bass  2.9951918208
## 4191     Benthopelagic   22            white croaker  3.0250947478
## 4192           Pelagic    5         northern anchovy  3.3473690203
## 4193     Benthopelagic   21            leopard shark  3.1379130548
## 4194          Midwater   11         shiner surfperch  3.1149810611
## 4195     Benthopelagic   21            white croaker  3.2437805400
## 4196           Benthic    5       california halibut  3.2073507708
## 4197          Midwater   11                kelp bass  2.9989610293
## 4198          Midwater   18                kelp bass  2.9851116695
## 4199     Benthopelagic    5            white croaker  3.0349748172
## 4200     Benthopelagic    1         barred surfperch  3.0792513256
## 4201     Benthopelagic   20            white croaker  3.1309808000
## 4202     Benthopelagic    4 brown smooth-hound shark  2.9794776231
## 4203     Benthopelagic   11         barred sand bass  2.8807001429
## 4204           Benthic   15         hornyhead turbot  3.4585667060
## 4205           Benthic    5  california scorpionfish  2.9699189181
## 4206     Benthopelagic   14       vermilion rockfish  3.1252971448
## 4207           Pelagic    5             market squid  3.4170135852
## 4208     Benthopelagic    5            black croaker  3.2209957202
## 4209     Benthopelagic    1         barred surfperch  3.0075478992
## 4210          Midwater    2        walleye surfperch  3.3595591776
## 4211     Benthopelagic   16       vermilion rockfish  3.2969609797
## 4212           Pelagic    4            chub mackerel  2.8330284493
## 4213     Benthopelagic    1        yellowfin croaker  2.9573602018
## 4214          Midwater    5                kelp bass  3.1533966207
## 4215     Benthopelagic    6          copper rockfish  3.1143537090
## 4216           Benthic    9         hornyhead turbot  3.2945198753
## 4217     Benthopelagic   13           brown rockfish  3.0146674736
## 4218     Benthopelagic    4            white croaker  3.3152797340
## 4219     Benthopelagic   21        spotted sand bass  2.6676564237
## 4220           Pelagic    6             market squid  3.0273994158
## 4221     Benthopelagic   11            white croaker  3.1371261911
## 4222     Benthopelagic   16       vermilion rockfish  3.0542860891
## 4223           Benthic    5           diamond turbot  3.1115423088
## 4224          Midwater    5                kelp bass  3.1115152188
## 4225     Benthopelagic    3        rainbow surfperch  3.1623213889
## 4226           Benthic   21       california halibut  3.2532063769
## 4227     Benthopelagic   21            white croaker  3.2111256947
## 4228     Benthopelagic   11          white surfperch  3.2655007409
## 4229     Benthopelagic    4        yellowfin croaker  3.2784729159
## 4230           Pelagic    5         northern anchovy  2.9833094556
## 4231           Pelagic   21         northern anchovy  3.1030750267
## 4232     Benthopelagic   21        yellowfin croaker  3.4041543752
## 4233     Benthopelagic   13       vermilion rockfish  3.0073878598
## 4234     Benthopelagic   11         barred sand bass  2.9428359465
## 4235     Benthopelagic    1       california corbina  2.9627918603
## 4236     Benthopelagic    5       vermilion rockfish  2.9471724370
## 4237          Midwater    1                 halfmoon  2.9752836180
## 4238     Benthopelagic   23          starry rockfish  3.1437669354
## 4239     Benthopelagic    9          copper rockfish  2.9976010297
## 4240     Benthopelagic    5            white croaker  3.2262277090
## 4241     Benthopelagic   12         barred sand bass  3.1193055526
## 4242     Benthopelagic   23            white croaker  3.2694225453
## 4243           Pelagic    5            chub mackerel  3.2361180747
## 4244          Midwater    4                kelp bass  3.2835376552
## 4245           Pelagic    5         northern anchovy  3.1985425742
## 4246     Benthopelagic    1        spotted sand bass  3.2478510719
## 4247           Benthic   16         hornyhead turbot  3.2789685439
## 4248          Midwater   11                kelp bass  3.2616815181
## 4249           Pelagic   21            chub mackerel  3.2262731455
## 4250     Benthopelagic    1          ocean whitefish  3.3428539687
## 4251     Benthopelagic    1       california corbina  3.1042338810
## 4252     Benthopelagic   21        spotted sand bass  3.0871055247
## 4253           Pelagic    5          pacific sardine  3.3567659974
## 4254     Benthopelagic    4                  opaleye  3.0981839668
## 4255           Pelagic    6          pacific sardine  3.2650466264
## 4256           Pelagic   11            chub mackerel  3.2291257092
## 4257          Midwater   21                kelp bass  2.8981272643
## 4258     Benthopelagic    1     california sheephead  3.3525026468
## 4259          Midwater   10                kelp bass  2.7359088982
## 4260     Benthopelagic   13            white croaker  3.2503861077
## 4261           Pelagic    5            chub mackerel  2.7357199355
## 4262           Benthic   15         hornyhead turbot  3.1848990837
## 4263     Benthopelagic   24          starry rockfish  3.0221705842
## 4264     Benthopelagic   14       vermilion rockfish  3.3407623051
## 4265     Benthopelagic   22            white croaker  3.0159264252
## 4266           Benthic    5    shovelnose guitarfish  3.0897130354
## 4267           Benthic   12  california scorpionfish  3.0409028831
## 4268     Benthopelagic   11   gray smoothhound shark  3.1320379001
## 4269     Benthopelagic    3        rainbow surfperch  2.9648962019
## 4270     Benthopelagic    1                  opaleye  3.1110500184
## 4271           Pelagic    5             market squid  3.0250352942
## 4272           Pelagic    4            chub mackerel  3.1702044157
## 4273           Pelagic    5          pacific sardine  3.2041395350
## 4274     Benthopelagic   15            white croaker  3.1556926432
## 4275           Pelagic    5             market squid  3.0500844315
## 4276           Pelagic   21            chub mackerel  3.0970942030
## 4277     Benthopelagic   11           brown rockfish  3.0890677560
## 4278     Benthopelagic   20        yellowfin croaker  3.2104425178
## 4279     Benthopelagic   22         barred sand bass  3.1259894343
## 4280           Pelagic    5          pacific sardine  3.1102087611
## 4281           Benthic   13         hornyhead turbot  3.2438493368
## 4282          Midwater   12                kelp bass  3.1382837112
## 4283     Benthopelagic   22            white croaker  3.2582795949
## 4284           Pelagic    6             market squid  3.0206522648
## 4285           Pelagic    5          pacific sardine  2.9900234420
## 4286     Benthopelagic    4       california corbina  3.1662038486
## 4287     Benthopelagic   21        spotted sand bass  3.1911973019
## 4288     Benthopelagic    6    greenspotted rockfish  3.0482833965
## 4289           Pelagic    5             market squid  3.2831052551
## 4290     Benthopelagic    4            white croaker  3.0123416209
## 4291     Benthopelagic    1       california corbina  3.0563339305
## 4292          Midwater    4         shiner surfperch  3.2775619829
## 4293     Benthopelagic   23       vermilion rockfish  2.8391993186
## 4294     Benthopelagic   20       california corbina  2.9764885721
## 4295           Pelagic    5            chub mackerel  3.2684627128
## 4296     Benthopelagic   21         barred sand bass  3.2941217150
## 4297           Benthic    5  california scorpionfish  3.1436090145
## 4298           Pelagic    5             market squid  3.3992092488
## 4299     Benthopelagic   21        yellowfin croaker  3.2948065100
## 4300           Benthic    5          longfin sanddab  3.1350206742
## 4301     Benthopelagic    5       vermilion rockfish  3.1453449406
## 4302          Midwater   13     chilipepper rockfish  3.2317313455
## 4303     Benthopelagic    4        yellowfin croaker  2.7695328305
## 4304     Benthopelagic   21        yellowfin croaker  3.0416572460
## 4305     Benthopelagic    1        yellowfin croaker  3.0466980741
## 4306     Benthopelagic    3                  opaleye  3.0434807760
## 4307     Benthopelagic   11        yellowfin croaker  2.9315197191
## 4308           Benthic   15         hornyhead turbot  3.2880110959
## 4309          Midwater    3         shiner surfperch  3.1880719351
## 4310     Benthopelagic    3        spotted sand bass  3.0606689894
## 4311           Benthic   13         hornyhead turbot  3.3749504162
## 4312     Benthopelagic    7       vermilion rockfish  3.0491896800
## 4313          Midwater    3                kelp bass  3.2208522873
## 4314     Benthopelagic   22       vermilion rockfish  3.2639118694
## 4315     Benthopelagic   11          gopher rockfish  3.2832298138
## 4316     Benthopelagic    4         barred sand bass  2.9149367305
## 4317     Benthopelagic    5         barred sand bass  3.3254551342
## 4318          Midwater   10                kelp bass  3.1738934057
## 4319           Benthic    4    california lizardfish  2.8177377839
## 4320     Benthopelagic    8            white croaker  3.1308775262
## 4321          Midwater   11         shiner surfperch  3.0977428112
## 4322     Benthopelagic    1     california sheephead  3.0335831612
## 4323     Benthopelagic    5            white croaker  3.3469631190
## 4324     Benthopelagic   11            white croaker  3.2041247685
## 4325           Benthic    1           diamond turbot  3.1586396502
## 4326     Benthopelagic    6       vermilion rockfish  3.1425686303
## 4327           Pelagic   21            chub mackerel  3.0255448160
## 4328          Midwater    4           striped mullet  3.0247713872
## 4329           Benthic   19  california scorpionfish  3.1291384471
## 4330          Midwater    1         shiner surfperch  2.9169221399
## 4331     Benthopelagic   11         barred surfperch  3.0962736180
## 4332     Benthopelagic   11        spotted sand bass  3.1973079166
## 4333           Pelagic    5            chub mackerel  3.1228325448
## 4334           Pelagic    5            chub mackerel  3.3932003288
## 4335     Benthopelagic   11            white croaker  3.3060214611
## 4336     Benthopelagic    5           brown rockfish  3.2390524582
## 4337          Midwater    4           striped mullet  3.0799315864
## 4338          Midwater   21                kelp bass  3.0425548977
## 4339     Benthopelagic   21        yellowfin croaker  3.3258755799
## 4340     Benthopelagic    1         barred surfperch  2.9860326333
## 4341     Benthopelagic   14          starry rockfish  2.9292545529
## 4342     Benthopelagic   11 brown smooth-hound shark  3.0119691977
## 4343     Benthopelagic   11           brown rockfish  3.0169365033
## 4344          Midwater    1        walleye surfperch  2.9239895985
## 4345     Benthopelagic   20              black perch  3.3979372151
## 4346           Benthic   10  california scorpionfish  3.3851437789
## 4347          Midwater   22                kelp bass  2.7079780398
## 4348     Benthopelagic    1        rainbow surfperch  3.3153771191
## 4349          Midwater   24      squarespot rockfish  3.0102810098
## 4350     Benthopelagic   21        yellowfin croaker  2.8967320016
## 4351     Benthopelagic   11       vermilion rockfish  3.2758598874
## 4352     Benthopelagic   11         barred sand bass  2.9618174450
## 4353           Benthic   22  california scorpionfish  2.9032488809
## 4354     Benthopelagic    1                  opaleye  3.1586422441
## 4355     Benthopelagic   21          white surfperch  3.3577683931
## 4356          Midwater    4           striped mullet  3.0935893294
## 4357           Pelagic   21            chub mackerel  3.1571685708
## 4358     Benthopelagic   22       vermilion rockfish  3.1871782874
## 4359     Benthopelagic   13            white croaker  3.1404258947
## 4360           Benthic    8  california scorpionfish  3.2384821380
## 4361     Benthopelagic    5       vermilion rockfish  3.3881823667
## 4362     Benthopelagic    3        rainbow surfperch  3.0577366413
## 4363     Benthopelagic    9   greenblotched rockfish  3.2279950936
## 4364           Pelagic   21            chub mackerel  3.0833007435
## 4365     Benthopelagic    5            white croaker  3.0070487561
## 4366           Pelagic   21            chub mackerel  3.1506171410
## 4367           Pelagic    5          pacific sardine  3.2815438677
## 4368          Midwater   12                kelp bass  2.9936991279
## 4369     Benthopelagic   11         barred sand bass  3.3730963485
## 4370           Benthic    8         hornyhead turbot  3.0151319029
## 4371           Benthic    4           spotted turbot  3.3219897912
## 4372           Benthic    5  california scorpionfish  3.0838074215
## 4373          Midwater   21                kelp bass  3.0397449900
## 4374     Benthopelagic    1       california corbina  3.0031388932
## 4375           Pelagic   21            chub mackerel  3.3744760527
## 4376           Benthic    3           diamond turbot  3.0339120009
## 4377           Pelagic   11            chub mackerel  3.0015604664
## 4378     Benthopelagic    9   greenblotched rockfish  3.1642160412
## 4379     Benthopelagic    5            white croaker  2.9116977840
## 4380     Benthopelagic    4        yellowfin croaker  3.0352765331
## 4381          Midwater    7      squarespot rockfish  3.3191543686
## 4382     Benthopelagic   15        speckled rockfish  3.2478034975
## 4383     Benthopelagic   11          white surfperch  3.0150583060
## 4384     Benthopelagic   13       vermilion rockfish  2.8086238269
## 4385     Benthopelagic    2        spotted sand bass  3.0660928823
## 4386     Benthopelagic   15       vermilion rockfish  3.2463450127
## 4387     Benthopelagic   13            white croaker  3.3477915904
## 4388     Benthopelagic    1              black perch  2.9045087505
## 4389     Benthopelagic    8         barred sand bass  3.4214904752
## 4390           Pelagic   11            chub mackerel  3.2697071142
## 4391           Pelagic    6             market squid  3.2755864240
## 4392     Benthopelagic   10            white croaker  2.8994262108
## 4393           Benthic    4           spotted turbot  3.2747725396
## 4394          Midwater   11                kelp bass  3.2425783322
## 4395     Benthopelagic    1              black perch  3.1356871934
## 4396     Benthopelagic   21            white croaker  3.0701662744
## 4397     Benthopelagic   20       california corbina  3.2706987993
## 4398     Benthopelagic   11              black perch  3.0098162761
## 4399           Pelagic   21            chub mackerel  3.0727509600
## 4400     Benthopelagic    1        yellowfin croaker  3.0820552401
## 4401     Benthopelagic   10           brown rockfish  4.2848514701
## 4402           Pelagic   11            chub mackerel  3.9664755997
## 4403     Benthopelagic   11          gopher rockfish  4.2947944545
## 4404     Benthopelagic   21        spotted sand bass  4.2644155097
## 4405     Benthopelagic   23       vermilion rockfish  4.3262644812
## 4406           Pelagic    5            chub mackerel  4.1717206342
## 4407          Midwater    3         shiner surfperch  4.3130699970
## 4408          Midwater   11         shiner surfperch  4.2124619178
## 4409     Benthopelagic   20         barred surfperch  4.2751432150
## 4410     Benthopelagic    3         barred surfperch  4.5989545261
## 4411     Benthopelagic   21        yellowfin croaker  3.9751325790
## 4412     Benthopelagic    5       california corbina  3.9735114451
## 4413     Benthopelagic    5            white croaker  4.2299411599
## 4414           Pelagic    5             market squid  4.0080872461
## 4415     Benthopelagic   17            white croaker  4.3182077125
## 4416     Benthopelagic   20         barred sand bass  4.2753288819
## 4417     Benthopelagic    3              black perch  4.4992080220
## 4418     Benthopelagic   11            white croaker  4.2719050240
## 4419     Benthopelagic    5                  opaleye  4.1124292013
## 4420     Benthopelagic    5            white croaker  4.6928089093
## 4421          Midwater   21                kelp bass  4.5066992381
## 4422     Benthopelagic   23       vermilion rockfish  4.0490427398
## 4423     Benthopelagic    4       california corbina  4.1107449414
## 4424     Benthopelagic   11              black perch  4.4023097724
## 4425     Benthopelagic    5                  opaleye  4.2275237373
## 4426     Benthopelagic    5            white croaker  4.2163613628
## 4427     Benthopelagic   11        spotted sand bass  4.2265849676
## 4428           Pelagic   21            chub mackerel  4.1498995690
## 4429           Pelagic    5         northern anchovy  3.9938272322
## 4430     Benthopelagic    3        spotted sand bass  4.3333205244
## 4431     Benthopelagic   20           pile surfperch  4.3943439263
## 4432           Pelagic    5         northern anchovy  4.4627058867
## 4433           Benthic   11         hornyhead turbot  3.7949799302
## 4434     Benthopelagic   11            black croaker  4.3863494227
## 4435     Benthopelagic    1          white surfperch  4.3536169213
## 4436     Benthopelagic   11         barred sand bass  4.2220272518
## 4437     Benthopelagic   14            white croaker  4.2309807635
## 4438     Benthopelagic    3       california corbina  3.7103953462
## 4439           Pelagic    5            chub mackerel  3.6046250492
## 4440     Benthopelagic   12            white croaker  4.2793245570
## 4441     Benthopelagic    1        yellowfin croaker  4.2209823212
## 4442     Benthopelagic   22          starry rockfish  4.3029037266
## 4443     Benthopelagic    5                  opaleye  4.0706090373
## 4444           Pelagic   11            chub mackerel  4.3610674920
## 4445     Benthopelagic   22            white croaker  4.2238204436
## 4446     Benthopelagic   17        speckled rockfish  4.3749385268
## 4447     Benthopelagic   11         barred sand bass  4.3199599341
## 4448     Benthopelagic   21        spotted sand bass  4.3119412995
## 4449     Benthopelagic    1        spotted sand bass  4.3760463713
## 4450     Benthopelagic    4           pile surfperch  4.2604593044
## 4451     Benthopelagic    5                  opaleye  4.3871909944
## 4452          Midwater    2                kelp bass  4.0102614930
## 4453     Benthopelagic   10              black perch  4.3667910007
## 4454           Pelagic    5          pacific sardine  4.5027492320
## 4455          Midwater    1         shiner surfperch  4.2855995517
## 4456     Benthopelagic    1         barred surfperch  4.1945395235
## 4457     Benthopelagic    2            white croaker  4.3208003938
## 4458     Benthopelagic    1            white croaker  4.0968037928
## 4459     Benthopelagic    5         barred sand bass  4.0272550103
## 4460     Benthopelagic   24       vermilion rockfish  4.2083676952
## 4461          Midwater    3          canary rockfish  4.1743316514
## 4462     Benthopelagic   18            white croaker  4.0992581574
## 4463     Benthopelagic    7           brown rockfish  4.1172915777
## 4464          Midwater    5                queenfish  3.8732940429
## 4465           Benthic    1           diamond turbot  4.3686536846
## 4466     Benthopelagic    1            white croaker  4.1124973777
## 4467           Pelagic    5             market squid  3.9704201689
## 4468           Pelagic    5             market squid  3.9581871956
## 4469     Benthopelagic    3        spotted sand bass  4.1899411736
## 4470           Pelagic    5             market squid  4.3144846079
## 4471          Midwater   11                kelp bass  4.5343148306
## 4472           Benthic    5       california halibut  4.2036638347
## 4473           Benthic   19         hornyhead turbot  4.4670217890
## 4474           Pelagic    5         northern anchovy  4.1736521929
## 4475          Midwater   21                kelp bass  3.8422724134
## 4476           Pelagic   21            chub mackerel  4.6619659008
## 4477          Midwater    1                queenfish  4.2609321897
## 4478     Benthopelagic    3        spotted sand bass  4.1236918849
## 4479     Benthopelagic   14    greenspotted rockfish  4.0768717429
## 4480     Benthopelagic    5            white croaker  4.4792951551
## 4481     Benthopelagic   10   greenblotched rockfish  4.4836117411
## 4482     Benthopelagic    5                  opaleye  4.0863416363
## 4483     Benthopelagic    1            white croaker  4.1425425389
## 4484           Pelagic    5          pacific sardine  4.0974685907
## 4485          Midwater    1            blue rockfish  4.3655887109
## 4486          Midwater   21                kelp bass  4.1244590753
## 4487     Benthopelagic    3         barred sand bass  4.3184506999
## 4488           Pelagic   21            chub mackerel  4.1198836596
## 4489     Benthopelagic    4                  opaleye  4.1331456086
## 4490     Benthopelagic    1     california sheephead  4.3348986685
## 4491     Benthopelagic   11              black perch  4.2244708461
## 4492     Benthopelagic    1        yellowfin croaker  4.4007841015
## 4493     Benthopelagic   18              black perch  4.0294895871
## 4494     Benthopelagic    1        yellowfin croaker  4.2853331690
## 4495     Benthopelagic   21        spotted sand bass  4.1242069781
## 4496     Benthopelagic    5                  opaleye  4.3246147635
## 4497     Benthopelagic   12       vermilion rockfish  3.9551790496
## 4498     Benthopelagic   18       vermilion rockfish  4.3923503423
## 4499     Benthopelagic    3              black perch  4.3296658342
## 4500          Midwater    3                kelp bass  4.1448413685
## 4501     Benthopelagic   12            white croaker  4.2790952402
## 4502          Midwater   21                kelp bass  4.4777122658
## 4503          Midwater    4         shiner surfperch  4.4354061861
## 4504     Benthopelagic   11          gopher rockfish  4.1344421028
## 4505     Benthopelagic    3       vermilion rockfish  4.0950211753
## 4506     Benthopelagic   14         barred sand bass  4.6745305873
## 4507          Midwater   21                kelp bass  3.8722054573
## 4508          Midwater    1                queenfish  4.2251381501
## 4509     Benthopelagic   22          starry rockfish  4.1222300295
## 4510     Benthopelagic   20            white croaker  4.5844184697
## 4511     Benthopelagic    4       california corbina  4.1122674759
## 4512     Benthopelagic    8              black perch  4.3422273310
## 4513           Benthic   20         hornyhead turbot  3.9686226701
## 4514          Midwater   21                kelp bass  4.3291139599
## 4515     Benthopelagic    4              black perch  4.3704789379
## 4516     Benthopelagic    4            white croaker  4.0786469556
## 4517     Benthopelagic    4              black perch  3.7635779792
## 4518     Benthopelagic   21        yellowfin croaker  4.4401926501
## 4519     Benthopelagic    1                  opaleye  4.5680407900
## 4520           Benthic   21         hornyhead turbot  4.1037643304
## 4521     Benthopelagic    4         barred surfperch  4.0307751523
## 4522          Midwater   11                kelp bass  4.1847816320
## 4523           Pelagic    5             market squid  4.5198057721
## 4524           Benthic    1           diamond turbot  4.2490537243
## 4525     Benthopelagic    1            white croaker  4.5339118876
## 4526     Benthopelagic    4              black perch  4.2202332279
## 4527           Pelagic    6             market squid  4.2590605446
## 4528     Benthopelagic   11            white croaker  4.2847506418
## 4529     Benthopelagic    9            white croaker  3.6975406256
## 4530           Pelagic   21         northern anchovy  4.2157440713
## 4531     Benthopelagic   11           brown rockfish  4.2061099823
## 4532     Benthopelagic   11          ocean whitefish  4.2520799286
## 4533           Benthic   17         hornyhead turbot  4.3020255257
## 4534           Benthic   11  california scorpionfish  4.4174513335
## 4535           Benthic   20           diamond turbot  4.2824071851
## 4536     Benthopelagic    4        spotted sand bass  4.1016160651
## 4537          Midwater   11           olive rockfish  3.9672703484
## 4538     Benthopelagic    1              black perch  4.2216623638
## 4539     Benthopelagic    5            white croaker  4.0890031136
## 4540           Pelagic    5         northern anchovy  4.3738583553
## 4541     Benthopelagic   11        yellowfin croaker  4.0695699447
## 4542          Midwater   16                kelp bass  4.0931965835
## 4543     Benthopelagic   11            white croaker  4.1644057980
## 4544     Benthopelagic   11              black perch  4.1227411263
## 4545          Midwater   18                kelp bass  4.1861565691
## 4546     Benthopelagic    3              black perch  4.5658040312
## 4547          Midwater    1                kelp bass  4.1176464700
## 4548     Benthopelagic   15            white croaker  4.3642799693
## 4549     Benthopelagic   22         barred sand bass  3.9781932747
## 4550     Benthopelagic    1            white croaker  4.0955506815
## 4551     Benthopelagic   21        yellowfin croaker  4.2633501643
## 4552           Benthic    5  california scorpionfish  4.1728008258
## 4553           Pelagic   21            chub mackerel  4.3591087826
## 4554           Benthic    1           spotted turbot  4.2707610553
## 4555     Benthopelagic   11          gopher rockfish  3.9746645143
## 4556     Benthopelagic    1            white croaker  4.1587625719
## 4557     Benthopelagic    5       california corbina  4.2866706365
## 4558     Benthopelagic    1              black perch  4.2014418108
## 4559     Benthopelagic   11          spotfin croaker  3.7965501584
## 4560     Benthopelagic    8          copper rockfish  4.1466531979
## 4561     Benthopelagic    4        yellowfin croaker  4.2755433450
## 4562     Benthopelagic   12            white croaker  4.2499262504
## 4563          Midwater    8      yellowtail rockfish  4.2485820655
## 4564          Midwater    3                kelp bass  3.7959553937
## 4565     Benthopelagic    5          spotfin croaker  3.9540125048
## 4566           Pelagic    5          pacific sardine  4.5460394027
## 4567           Benthic    5  california scorpionfish  3.9822277436
## 4568     Benthopelagic    3         barred surfperch  4.1705339323
## 4569           Pelagic    6          pacific sardine  4.3454129819
## 4570     Benthopelagic   11       vermilion rockfish  4.3131487383
## 4571           Pelagic    5         northern anchovy  4.1919008905
## 4572           Pelagic   11            chub mackerel  4.2020355827
## 4573           Pelagic   21            chub mackerel  4.2225872033
## 4574          Midwater    5                top smelt  4.0971452203
## 4575          Midwater    2                queenfish  4.3083131837
## 4576     Benthopelagic    4            white croaker  4.4897722607
## 4577     Benthopelagic   18              black perch  4.1082769634
## 4578          Midwater   21                kelp bass  4.1746991027
## 4579     Benthopelagic    4          copper rockfish  4.2351825149
## 4580     Benthopelagic   20              black perch  4.2040505676
## 4581           Benthic    1         speckled sanddab  4.1202369681
## 4582     Benthopelagic   18            white croaker  4.2272046412
## 4583     Benthopelagic   11         barred sand bass  4.1327128091
## 4584     Benthopelagic   11          spotfin croaker  4.3777126506
## 4585           Pelagic   11            chub mackerel  4.3313166883
## 4586           Pelagic    5            chub mackerel  4.0895490297
## 4587           Benthic   18         hornyhead turbot  4.1562928041
## 4588           Benthic   12  california scorpionfish  4.3806359890
## 4589           Benthic    1             fantail sole  4.0217676135
## 4590          Midwater   21                kelp bass  4.3239312938
## 4591     Benthopelagic    3          white surfperch  3.9656941539
## 4592     Benthopelagic   13       vermilion rockfish  4.3878452614
## 4593     Benthopelagic   18            white croaker  4.2792652501
## 4594          Midwater    1         shiner surfperch  4.3730830019
## 4595     Benthopelagic   14            white croaker  4.0253256551
## 4596          Midwater   11                kelp bass  4.1280267941
## 4597           Benthic    5         speckled sanddab  4.1281697595
## 4598           Benthic   17  california scorpionfish  4.5727108163
## 4599     Benthopelagic   21       california corbina  4.2622217939
## 4600           Benthic   11  california scorpionfish  4.2858527873
## 4601           Benthic   17         hornyhead turbot  4.4492706672
## 4602     Benthopelagic   12              black perch  4.1617870972
## 4603     Benthopelagic    1            white croaker  4.0737916001
## 4604     Benthopelagic    5       california corbina  4.0562871638
## 4605     Benthopelagic    4              black perch  4.0742037496
## 4606     Benthopelagic    5            white croaker  4.2162973679
## 4607     Benthopelagic    1            white croaker  4.3799403239
## 4608           Benthic   14         hornyhead turbot  4.5678360523
## 4609           Benthic    4    shovelnose guitarfish  4.3764283997
## 4610          Midwater    1        walleye surfperch  4.1702752815
## 4611          Midwater   18                kelp bass  4.2522175823
## 4612     Benthopelagic    5            white croaker  4.1033861684
## 4613     Benthopelagic    5         barred sand bass  4.1898200731
## 4614          Midwater    2                kelp bass  4.5886819092
## 4615     Benthopelagic   21         barred sand bass  4.5141253234
## 4616     Benthopelagic   12       vermilion rockfish  4.6582189081
## 4617     Benthopelagic    2       quillback rockfish  4.2650698572
## 4618     Benthopelagic   21            white croaker  4.1774456239
## 4619     Benthopelagic   16       vermilion rockfish  4.1895050528
## 4620     Benthopelagic    3              black perch  4.2290420526
## 4621           Benthic    8  california scorpionfish  4.1297690464
## 4622           Pelagic    5          pacific sardine  4.1173978350
## 4623           Benthic    5  california scorpionfish  4.3106133167
## 4624     Benthopelagic    8          copper rockfish  4.3897256833
## 4625           Pelagic    5          pacific sardine  4.1362365586
## 4626     Benthopelagic    2            white croaker  4.2779727304
## 4627     Benthopelagic    1            white croaker  4.2706948587
## 4628     Benthopelagic   21            leopard shark  4.1704989037
## 4629     Benthopelagic   14              black perch  4.5586535119
## 4630     Benthopelagic   16       vermilion rockfish  4.3020224095
## 4631     Benthopelagic   10       vermilion rockfish  3.9412941924
## 4632          Midwater   21                kelp bass  3.9996584430
## 4633     Benthopelagic    1            rosy rockfish  4.5121544602
## 4634          Midwater    3         shiner surfperch  4.3459406473
## 4635     Benthopelagic   11            white croaker  4.5169656438
## 4636     Benthopelagic    1         barred surfperch  4.3875289463
## 4637          Midwater    1         shiner surfperch  4.2762668779
## 4638           Pelagic   21            chub mackerel  4.2463433307
## 4639     Benthopelagic   16       vermilion rockfish  3.9815898983
## 4640     Benthopelagic    7        speckled rockfish  4.0249469474
## 4641          Midwater    4         shiner surfperch  4.6234806728
## 4642     Benthopelagic   11       vermilion rockfish  4.1511026215
## 4643           Pelagic    5            chub mackerel  4.1477252546
## 4644          Midwater   14                kelp bass  4.2342561040
## 4645     Benthopelagic    3              black perch  4.1494227820
## 4646     Benthopelagic    5            black croaker  4.3236572181
## 4647          Midwater    5                top smelt  4.2829557860
## 4648          Midwater   11                top smelt  4.0854111820
## 4649           Benthic   10         hornyhead turbot  4.4031157598
## 4650           Pelagic    5             market squid  4.2708177276
## 4651     Benthopelagic   12              black perch  4.5042630922
## 4652     Benthopelagic    1       california corbina  4.3634186318
## 4653     Benthopelagic    3         barred surfperch  4.4035066691
## 4654     Benthopelagic   19       vermilion rockfish  4.1864854102
## 4655     Benthopelagic   15        speckled rockfish  4.4353498335
## 4656           Pelagic    5          pacific sardine  4.3261529389
## 4657     Benthopelagic    4         barred surfperch  4.5405515141
## 4658     Benthopelagic   11              black perch  3.9609770145
## 4659          Midwater   11                kelp bass  4.2634866073
## 4660     Benthopelagic   11         barred surfperch  3.9919603079
## 4661           Pelagic    5         northern anchovy  4.2189304752
## 4662           Pelagic    5          pacific sardine  4.2023008359
## 4663     Benthopelagic   11            white croaker  4.3957323488
## 4664     Benthopelagic   19            white croaker  4.3440055279
## 4665     Benthopelagic    3              black perch  4.4049782461
## 4666     Benthopelagic   19       vermilion rockfish  4.4856025016
## 4667     Benthopelagic   12           brown rockfish  4.6917388857
## 4668     Benthopelagic    6          copper rockfish  4.3396626607
## 4669           Pelagic    5             market squid  4.2219091898
## 4670     Benthopelagic   22              black perch  4.2141842528
## 4671           Benthic   20       california halibut  4.2984382402
## 4672     Benthopelagic    2        spotted sand bass  3.8215928038
## 4673           Benthic    1           diamond turbot  4.0745326089
## 4674           Benthic   23         hornyhead turbot  3.9416369376
## 4675     Benthopelagic    5         barred sand bass  4.6767347957
## 4676           Benthic    4    california lizardfish  4.1594850538
## 4677     Benthopelagic   11 brown smooth-hound shark  4.2945091151
## 4678     Benthopelagic   21            white croaker  4.3037624805
## 4679     Benthopelagic    4            flag rockfish  4.3132367833
## 4680           Benthic   12         hornyhead turbot  4.3521625333
## 4681           Benthic    4    shovelnose guitarfish  4.6268690377
## 4682     Benthopelagic   14            white croaker  4.2572291101
## 4683     Benthopelagic    5     california sheephead  4.2146778261
## 4684           Pelagic    5         northern anchovy  3.8269454019
## 4685     Benthopelagic   20       vermilion rockfish  4.1538890884
## 4686     Benthopelagic    2         barred surfperch  4.4194472265
## 4687          Midwater   17      squarespot rockfish  3.9985075058
## 4688     Benthopelagic   18       vermilion rockfish  4.1050915896
## 4689     Benthopelagic   11            white croaker  4.3905140937
## 4690     Benthopelagic    4         barred sand bass  4.3107909422
## 4691          Midwater    4                top smelt  4.1794946631
## 4692           Benthic   17         hornyhead turbot  4.5742701661
## 4693     Benthopelagic   11            white croaker  4.5252194046
## 4694     Benthopelagic   11         barred surfperch  4.2910296939
## 4695           Pelagic    5             market squid  4.3105454210
## 4696           Benthic   19  california scorpionfish  4.7852912321
## 4697           Pelagic    5             market squid  4.1071390820
## 4698     Benthopelagic   10         barred sand bass  4.2608624177
## 4699           Pelagic   11            chub mackerel  4.1792644133
## 4700     Benthopelagic   11              black perch  4.1796181921
## 4701     Benthopelagic   22              black perch  4.0229460543
## 4702     Benthopelagic   12            white croaker  4.5890535507
## 4703           Benthic    5    shovelnose guitarfish  4.2798061321
## 4704     Benthopelagic   20       california corbina  4.1346663422
## 4705     Benthopelagic    5                  opaleye  4.3773621892
## 4706     Benthopelagic   16       vermilion rockfish  4.2830033831
## 4707     Benthopelagic    1        spotted sand bass  4.0595921663
## 4708     Benthopelagic    3        rainbow surfperch  4.1966062300
## 4709     Benthopelagic   17            white croaker  4.4511364099
## 4710           Benthic   22  california scorpionfish  4.2469863261
## 4711          Midwater   21                kelp bass  4.4457136961
## 4712           Pelagic    5             market squid  4.4992849647
## 4713     Benthopelagic   21            white croaker  4.2961888711
## 4714     Benthopelagic    1        rainbow surfperch  4.6686849349
## 4715     Benthopelagic    4       california corbina  4.3016639276
## 4716           Pelagic   21            chub mackerel  3.9865538557
## 4717     Benthopelagic   20            white croaker  4.2372799366
## 4718           Pelagic    6          pacific sardine  4.4992946044
## 4719          Midwater    4           striped mullet  3.9294410111
## 4720           Pelagic   21            chub mackerel  4.2576147698
## 4721           Benthic    1         speckled sanddab  4.5710213980
## 4722     Benthopelagic   11            white croaker  4.3453029265
## 4723           Benthic    8         hornyhead turbot  4.4232734770
## 4724          Midwater    4         shiner surfperch  3.9346297062
## 4725     Benthopelagic   10       vermilion rockfish  3.7384596482
## 4726     Benthopelagic    1        rainbow surfperch  4.0591810361
## 4727          Midwater   11         shiner surfperch  4.3417752466
## 4728     Benthopelagic    5            leopard shark  4.2061622324
## 4729           Pelagic   21            chub mackerel  4.3480892534
## 4730     Benthopelagic   11              black perch  4.1254360214
## 4731          Midwater    4         shiner surfperch  4.1266713441
## 4732     Benthopelagic   14              black perch  4.4649494315
## 4733          Midwater   11                kelp bass  4.3131253601
## 4734     Benthopelagic   18            white croaker  4.1996972767
## 4735          Midwater    4                top smelt  4.2048127873
## 4736     Benthopelagic    5   gray smoothhound shark  4.3123039491
## 4737     Benthopelagic   23            white croaker  4.3761974153
## 4738           Pelagic   21           slough anchovy  4.1458093301
## 4739          Midwater    1                queenfish  4.1962052323
## 4740     Benthopelagic   21            white croaker  4.2824870237
## 4741          Midwater    1                kelp bass  4.2658031110
## 4742     Benthopelagic   24       vermilion rockfish  3.9720373334
## 4743           Pelagic   21            chub mackerel  4.0965107637
## 4744           Pelagic    5          pacific sardine  4.2571125059
## 4745     Benthopelagic    4       california corbina  3.9895578416
## 4746     Benthopelagic    3       california corbina  4.0492890618
## 4747     Benthopelagic   16              black perch  4.3220546124
## 4748           Pelagic    5          pacific sardine  4.5250193405
## 4749           Pelagic   21            chub mackerel  4.1100252110
## 4750     Benthopelagic   21         barred sand bass  4.1914038536
## 4751           Pelagic    6          pacific sardine  4.0853601159
## 4752     Benthopelagic    5        yellowfin croaker  4.6911078341
## 4753           Benthic    1  california scorpionfish  4.3644535704
## 4754          Midwater    4         shiner surfperch  3.8374107075
## 4755           Benthic    5  california scorpionfish  3.9559704064
## 4756     Benthopelagic    5       california corbina  4.4929270339
## 4757           Benthic   19         hornyhead turbot  4.1139494776
## 4758     Benthopelagic    2              black perch  4.4623115995
## 4759     Benthopelagic   21        spotted sand bass  4.2120941912
## 4760     Benthopelagic    7       vermilion rockfish  4.3818722006
## 4761     Benthopelagic    3              black perch  4.1137990211
## 4762           Pelagic   11            chub mackerel  4.4512436637
## 4763     Benthopelagic   22            white croaker  4.4126238270
## 4764          Midwater    2         shiner surfperch  4.3201713113
## 4765     Benthopelagic   11   gray smoothhound shark  4.2103354262
## 4766     Benthopelagic   19            white croaker  4.1814092647
## 4767     Benthopelagic   11            white croaker  4.1843618382
## 4768     Benthopelagic    5            white croaker  4.3618504682
## 4769     Benthopelagic   21          white surfperch  4.1288087208
## 4770          Midwater    5                 halfmoon  4.2412076531
## 4771          Midwater   10                kelp bass  4.6648259990
## 4772          Midwater    1                kelp bass  4.6678716415
## 4773          Midwater    3         shiner surfperch  4.0117961107
## 4774     Benthopelagic   10            white croaker  4.6904790560
## 4775          Midwater    5                queenfish  4.2988243266
## 4776     Benthopelagic    1            white croaker  3.7390982505
## 4777     Benthopelagic    4              black perch  4.0905134481
## 4778     Benthopelagic    1         barred sand bass  4.3739849238
## 4779          Midwater    5                kelp bass  3.9573360958
## 4780           Pelagic    5          pacific sardine  4.1566431799
## 4781     Benthopelagic   21         barred sand bass  4.2613624154
## 4782     Benthopelagic    4           pile surfperch  4.0672870528
## 4783          Midwater   14                kelp bass  4.4977912439
## 4784     Benthopelagic   16          copper rockfish  4.1942631329
## 4785     Benthopelagic    3        spotted sand bass  4.0560499197
## 4786          Midwater   16                kelp bass  4.2710764324
## 4787          Midwater    4                kelp bass  4.1893505944
## 4788     Benthopelagic   14              black perch  4.2100204493
## 4789           Pelagic    6          pacific sardine  4.0512852936
## 4790     Benthopelagic   11              black perch  4.2815103319
## 4791     Benthopelagic    4           pile surfperch  4.1537617878
## 4792     Benthopelagic    5        yellowfin croaker  4.2913046076
## 4793           Benthic   14         hornyhead turbot  4.0798372749
## 4794           Pelagic    5          pacific sardine  4.2332156296
## 4795           Pelagic   21            chub mackerel  4.2985090029
## 4796          Midwater   21                kelp bass  4.4263236472
## 4797     Benthopelagic   10              black perch  4.2757950257
## 4798          Midwater   21                kelp bass  4.6342311100
## 4799           Pelagic    5          pacific sardine  4.2626452947
## 4800          Midwater    3         shiner surfperch  4.3081510679
## 4801     Benthopelagic    8         barred sand bass  1.3296279993
## 4802     Benthopelagic   11         barred sand bass  1.5797428798
## 4803          Midwater    1        walleye surfperch  1.4166428002
## 4804           Benthic   20  california scorpionfish  1.3946202902
## 4805           Benthic   23         hornyhead turbot  1.3862612350
## 4806           Benthic   19  california scorpionfish  1.3239182538
## 4807     Benthopelagic   12           brown rockfish  1.2395845340
## 4808     Benthopelagic   11          white surfperch  1.5185640025
## 4809     Benthopelagic    5       california corbina  1.3538678873
## 4810     Benthopelagic    4              black perch  1.3704971122
## 4811     Benthopelagic    5            white croaker  1.3787467655
## 4812     Benthopelagic    3        spotted sand bass  1.0087489987
## 4813     Benthopelagic   20            white croaker  1.2207832746
## 4814          Midwater    1         shiner surfperch  1.2804598108
## 4815           Benthic   20         hornyhead turbot  1.1756724031
## 4816           Benthic    1           spotted turbot  1.1199232920
## 4817           Benthic   23         hornyhead turbot  1.5506680746
## 4818     Benthopelagic   14       vermilion rockfish  1.5449419789
## 4819           Pelagic    5             market squid  1.3258779253
## 4820     Benthopelagic    8            white croaker  1.2624155482
## 4821           Pelagic    5             market squid  1.4292874721
## 4822     Benthopelagic    5       vermilion rockfish  1.3426892761
## 4823     Benthopelagic   11            white croaker  1.1722522713
## 4824           Benthic    3           diamond turbot  1.6497298948
## 4825           Pelagic   21         northern anchovy  1.1237344227
## 4826           Benthic    8         hornyhead turbot  1.6534231842
## 4827     Benthopelagic    4         barred sand bass  1.0937197461
## 4828          Midwater    3                jacksmelt  1.4338351681
## 4829          Midwater   21                kelp bass  1.1924413268
## 4830     Benthopelagic   11        yellowfin croaker  1.4963841272
## 4831          Midwater    8                kelp bass  1.3782083817
## 4832     Benthopelagic    9       vermilion rockfish  1.1314399489
## 4833          Midwater   21                kelp bass  1.2852037595
## 4834     Benthopelagic    1         barred surfperch  1.7551515365
## 4835          Midwater   11                top smelt  1.2178201249
## 4836     Benthopelagic    5            white croaker  1.3704384789
## 4837     Benthopelagic    4         barred surfperch  1.2466158364
## 4838     Benthopelagic   21        yellowfin croaker  1.4853717158
## 4839     Benthopelagic    5         barred sand bass  1.1336123828
## 4840           Pelagic   21            chub mackerel  1.3000646815
## 4841          Midwater   21                kelp bass  1.4778969631
## 4842     Benthopelagic    8            white croaker  1.4905863465
## 4843           Pelagic   21            chub mackerel  1.1831879368
## 4844     Benthopelagic   16        speckled rockfish  1.2241144908
## 4845     Benthopelagic    5         barred sand bass  1.1441016926
## 4846           Pelagic   21           slough anchovy  1.3949007856
## 4847     Benthopelagic   11            rosy rockfish  1.0028355805
## 4848           Benthic    4           diamond turbot  1.1680641453
## 4849           Benthic   16  california scorpionfish  1.3350756302
## 4850     Benthopelagic   20       vermilion rockfish  1.1193308627
## 4851          Midwater   20                kelp bass  1.0930666028
## 4852          Midwater   21                kelp bass  1.2103689070
## 4853           Benthic   13         hornyhead turbot  1.4364254314
## 4854           Pelagic   21            chub mackerel  1.4373112015
## 4855     Benthopelagic   14       vermilion rockfish  1.1140463315
## 4856          Midwater    5                kelp bass  1.4106262888
## 4857           Benthic   10  california scorpionfish  1.1529028337
## 4858     Benthopelagic    5         barred sand bass  1.2657137903
## 4859          Midwater    4                kelp bass  1.3858403752
## 4860     Benthopelagic    1        yellowfin croaker  1.0553389783
## 4861     Benthopelagic   10           brown rockfish  1.5031234050
## 4862           Benthic    5          longfin sanddab  1.0595468735
## 4863     Benthopelagic    3        yellowfin croaker  1.3538402044
## 4864     Benthopelagic   11            white croaker  1.6280875131
## 4865          Midwater   20                kelp bass  1.1911449379
## 4866           Benthic    5       california halibut  1.6323444476
## 4867           Pelagic    5          pacific sardine  1.4382269128
## 4868          Midwater   21                kelp bass  1.3813004823
## 4869     Benthopelagic    8            white croaker  1.2280018295
## 4870     Benthopelagic    3       california corbina  1.2573287165
## 4871     Benthopelagic    4        spotted sand bass  1.0477638105
## 4872           Benthic   10  california scorpionfish  1.2770385074
## 4873           Benthic    5  california scorpionfish  1.2488445860
## 4874          Midwater   11                top smelt  1.5421902930
## 4875     Benthopelagic   17            white croaker  1.3127129551
## 4876     Benthopelagic    5            white croaker  1.3467533171
## 4877           Pelagic   21         northern anchovy  1.4598921305
## 4878           Pelagic    5          pacific sardine  1.3323779139
## 4879     Benthopelagic    1       california corbina  1.2398762645
## 4880          Midwater    5                kelp bass  1.4833061011
## 4881     Benthopelagic   20            white croaker  1.2807952181
## 4882     Benthopelagic    3            rosy rockfish  1.2628156915
## 4883     Benthopelagic   21        yellowfin croaker  1.2648299470
## 4884     Benthopelagic    1         barred surfperch  1.1610638482
## 4885     Benthopelagic   14         barred sand bass  1.2333967032
## 4886     Benthopelagic    5       vermilion rockfish  1.4834848146
## 4887          Midwater   21                kelp bass  1.1524094665
## 4888     Benthopelagic    3           pile surfperch  1.2272098864
## 4889     Benthopelagic   19       vermilion rockfish  1.1992279601
## 4890           Pelagic    5            chub mackerel  1.5135946769
## 4891          Midwater   21                kelp bass  1.2444440685
## 4892          Midwater    5                queenfish  1.0267470842
## 4893     Benthopelagic   11            white croaker  1.1501046783
## 4894           Benthic    1           diamond turbot  1.2819115153
## 4895           Benthic   22         hornyhead turbot  1.4165553578
## 4896          Midwater    5                kelp bass  1.3245443158
## 4897     Benthopelagic   21          spotfin croaker  1.3230469348
## 4898           Pelagic    5            chub mackerel  1.4765520383
## 4899     Benthopelagic    5       vermilion rockfish  1.1905639535
## 4900     Benthopelagic    1         barred surfperch  1.6132534827
## 4901     Benthopelagic   11            white croaker  1.2360081680
## 4902     Benthopelagic    4         barred sand bass  0.9155750452
## 4903     Benthopelagic   17       vermilion rockfish  1.5359225785
## 4904     Benthopelagic   11          white surfperch  1.1769110951
## 4905     Benthopelagic    8          copper rockfish  1.1490612910
## 4906          Midwater   11            kelp rockfish  1.0879494082
## 4907     Benthopelagic    5            white croaker  1.5940764728
## 4908     Benthopelagic    4         barred surfperch  1.4178256636
## 4909     Benthopelagic    4       california corbina  1.6066274474
## 4910           Benthic   20       california halibut  1.4885431593
## 4911           Benthic    3           diamond turbot  1.1731802040
## 4912     Benthopelagic   12         barred sand bass  1.5246999839
## 4913          Midwater    1                 halfmoon  1.0534207088
## 4914     Benthopelagic   13       vermilion rockfish  1.2128409731
## 4915           Pelagic    5        pacific barracuda  1.4500693271
## 4916     Benthopelagic    3              black perch  1.3174755733
## 4917           Pelagic   21            chub mackerel  1.2737200032
## 4918     Benthopelagic   14            white croaker  1.0941530391
## 4919     Benthopelagic   24       vermilion rockfish  1.3640068913
## 4920     Benthopelagic   20       california corbina  1.3210841854
## 4921     Benthopelagic   21         barred sand bass  1.1552214928
## 4922     Benthopelagic   11            white croaker  1.2994820906
## 4923          Midwater   21                kelp bass  1.3830656994
## 4924          Midwater    1         shiner surfperch  1.1765375504
## 4925          Midwater    5         shiner surfperch  1.1623362803
## 4926     Benthopelagic   11           brown rockfish  1.3261770206
## 4927     Benthopelagic    5         barred sand bass  1.0337259870
## 4928           Pelagic    5          pacific sardine  1.2871741086
## 4929           Benthic   16         hornyhead turbot  1.2434809857
## 4930          Midwater    1         shiner surfperch  1.3605425618
## 4931     Benthopelagic    5                  opaleye  1.1779931861
## 4932     Benthopelagic   20            white croaker  1.2924211056
## 4933     Benthopelagic   21            white croaker  1.4437163952
## 4934     Benthopelagic   11          spotfin croaker  1.2108243531
## 4935           Benthic   22  california scorpionfish  1.3504559327
## 4936           Pelagic    5          pacific sardine  1.4530082902
## 4937     Benthopelagic    1                  opaleye  1.5022108685
## 4938          Midwater    1         shiner surfperch  1.4820180072
## 4939     Benthopelagic   11         barred surfperch  1.1846824971
## 4940          Midwater   11         shiner surfperch  1.2406425955
## 4941     Benthopelagic   12            white croaker  1.2890374947
## 4942          Midwater   21                queenfish  1.3000395927
## 4943           Benthic    4    shovelnose guitarfish  1.0990476952
## 4944     Benthopelagic   21         barred sand bass  1.2791801908
## 4945     Benthopelagic   10            white croaker  1.3371100073
## 4946     Benthopelagic    1       california corbina  1.3545541621
## 4947     Benthopelagic   11            white croaker  0.7827599119
## 4948          Midwater   11                kelp bass  1.2993123296
## 4949     Benthopelagic    3        spotted sand bass  1.1422512695
## 4950     Benthopelagic    3          copper rockfish  1.3281057106
## 4951           Pelagic   11            chub mackerel  0.9434856558
## 4952           Pelagic    5             market squid  1.2833282718
## 4953           Pelagic   11            chub mackerel  1.5308326503
## 4954           Pelagic   21            chub mackerel  1.5157884164
## 4955           Benthic   22  california scorpionfish  1.1307342475
## 4956          Midwater    4         shiner surfperch  1.5854991239
## 4957           Benthic   18  california scorpionfish  1.3157879973
## 4958     Benthopelagic    5                  opaleye  1.0588498016
## 4959          Midwater   21                queenfish  1.4202425053
## 4960     Benthopelagic    5          copper rockfish  1.0400071789
## 4961     Benthopelagic   11         barred sand bass  1.1700493313
## 4962     Benthopelagic   21        spotted sand bass  1.2657245841
## 4963     Benthopelagic   22            white croaker  1.3511144063
## 4964           Pelagic    5         northern anchovy  1.2704675219
## 4965     Benthopelagic   21            leopard shark  1.2159667864
## 4966          Midwater   11         shiner surfperch  1.1792041993
## 4967     Benthopelagic   21            white croaker  1.0061777885
## 4968           Benthic    5       california halibut  1.3603896233
## 4969          Midwater   11                kelp bass  1.2796323050
## 4970          Midwater   18                kelp bass  1.4874008558
## 4971     Benthopelagic    5            white croaker  1.4892818799
## 4972     Benthopelagic    1         barred surfperch  1.6346975713
## 4973     Benthopelagic   20            white croaker  1.2928883833
## 4974     Benthopelagic    4 brown smooth-hound shark  1.4887931049
## 4975     Benthopelagic   11         barred sand bass  1.7419384380
## 4976           Benthic   15         hornyhead turbot  1.4541911567
## 4977           Benthic    5  california scorpionfish  1.4342533988
## 4978     Benthopelagic   14       vermilion rockfish  1.2066509882
## 4979           Pelagic    5             market squid  1.2139176998
## 4980     Benthopelagic    5            black croaker  1.5751505796
## 4981     Benthopelagic    1         barred surfperch  1.2749355002
## 4982          Midwater    2        walleye surfperch  1.1810033133
## 4983     Benthopelagic   16       vermilion rockfish  1.5188409101
## 4984           Pelagic    4            chub mackerel  1.4552699617
## 4985     Benthopelagic    1        yellowfin croaker  1.2352121688
## 4986          Midwater    5                kelp bass  1.4833855850
## 4987     Benthopelagic    6          copper rockfish  1.5018086604
## 4988           Benthic    9         hornyhead turbot  1.2906279720
## 4989     Benthopelagic   13           brown rockfish  1.4481337350
## 4990     Benthopelagic    4            white croaker  1.5605849657
## 4991     Benthopelagic   21        spotted sand bass  1.2572948956
## 4992           Pelagic    6             market squid  1.5145286762
## 4993     Benthopelagic   11            white croaker  1.0137282755
## 4994     Benthopelagic   16       vermilion rockfish  1.1124058604
## 4995           Benthic    5           diamond turbot  1.5729627725
## 4996          Midwater    5                kelp bass  1.4249560512
## 4997     Benthopelagic    3        rainbow surfperch  1.4328861308
## 4998           Benthic   21       california halibut  1.5267845011
## 4999     Benthopelagic   21            white croaker  1.5908304878
## 5000     Benthopelagic   11          white surfperch  1.3203859273
## 5001     Benthopelagic    4        yellowfin croaker  1.6781624545
## 5002           Pelagic    5         northern anchovy  1.2642324894
## 5003           Pelagic   21         northern anchovy  1.3282344891
## 5004     Benthopelagic   21        yellowfin croaker  1.3311602229
## 5005     Benthopelagic   13       vermilion rockfish  1.2298040778
## 5006     Benthopelagic   11         barred sand bass  1.2934743764
## 5007     Benthopelagic    1       california corbina  1.4779397329
## 5008     Benthopelagic    5       vermilion rockfish  1.2345278285
## 5009          Midwater    1                 halfmoon  1.5187593904
## 5010     Benthopelagic   23          starry rockfish  1.2032648301
## 5011     Benthopelagic    9          copper rockfish  1.3089575590
## 5012     Benthopelagic    5            white croaker  1.1365950398
## 5013     Benthopelagic   12         barred sand bass  1.5276100466
## 5014     Benthopelagic   23            white croaker  1.1750938633
## 5015           Pelagic    5            chub mackerel  1.2488644561
## 5016          Midwater    4                kelp bass  1.4753895383
## 5017           Pelagic    5         northern anchovy  1.0981496372
## 5018     Benthopelagic    1        spotted sand bass  1.2311146807
## 5019           Benthic   16         hornyhead turbot  1.4912517297
## 5020          Midwater   11                kelp bass  1.2260301353
## 5021           Pelagic   21            chub mackerel  1.2633804670
## 5022     Benthopelagic    1          ocean whitefish  1.1067089748
## 5023     Benthopelagic    1       california corbina  1.8146299011
## 5024     Benthopelagic   21        spotted sand bass  1.2704242323
## 5025           Pelagic    5          pacific sardine  1.3661835468
## 5026     Benthopelagic    4                  opaleye  1.1671392318
## 5027           Pelagic    6          pacific sardine  1.4419217328
## 5028           Pelagic   11            chub mackerel  1.3980850745
## 5029          Midwater   21                kelp bass  1.3829313483
## 5030     Benthopelagic    1     california sheephead  1.1050876671
## 5031          Midwater   10                kelp bass  1.3767024028
## 5032     Benthopelagic   13            white croaker  1.3573253216
## 5033           Pelagic    5            chub mackerel  1.3038488124
## 5034           Benthic   15         hornyhead turbot  1.3726583542
## 5035     Benthopelagic   24          starry rockfish  1.3081114410
## 5036     Benthopelagic   14       vermilion rockfish  1.2200390831
## 5037     Benthopelagic   22            white croaker  1.4022400345
## 5038           Benthic    5    shovelnose guitarfish  1.3413117109
## 5039           Benthic   12  california scorpionfish  1.5541328331
## 5040     Benthopelagic   11   gray smoothhound shark  1.1006034507
## 5041     Benthopelagic    3        rainbow surfperch  1.4674042640
## 5042     Benthopelagic    1                  opaleye  1.4303833422
## 5043           Pelagic    5             market squid  1.1448516087
## 5044           Pelagic    4            chub mackerel  0.8082159288
## 5045           Pelagic    5          pacific sardine  1.3902001427
## 5046     Benthopelagic   15            white croaker  1.3882928970
## 5047           Pelagic    5             market squid  0.9533511629
## 5048           Pelagic   21            chub mackerel  1.3185003028
## 5049     Benthopelagic   11           brown rockfish  1.4045769690
## 5050     Benthopelagic   20        yellowfin croaker  1.0988716222
## 5051     Benthopelagic   22         barred sand bass  1.1624598571
## 5052           Pelagic    5          pacific sardine  1.2996523951
## 5053           Benthic   13         hornyhead turbot  1.4558117424
## 5054          Midwater   12                kelp bass  1.4663160362
## 5055     Benthopelagic   22            white croaker  1.2393101423
## 5056           Pelagic    6             market squid  1.4435988042
## 5057           Pelagic    5          pacific sardine  0.9900371551
## 5058     Benthopelagic    4       california corbina  1.2075744434
## 5059     Benthopelagic   21        spotted sand bass  1.4593851192
## 5060     Benthopelagic    6    greenspotted rockfish  1.2306859142
## 5061           Pelagic    5             market squid  0.9902207185
## 5062     Benthopelagic    4            white croaker  1.2604700387
## 5063     Benthopelagic    1       california corbina  1.4349871792
## 5064          Midwater    4         shiner surfperch  1.1972210366
## 5065     Benthopelagic   23       vermilion rockfish  1.2044840091
## 5066     Benthopelagic   20       california corbina  1.1800092255
## 5067           Pelagic    5            chub mackerel  1.2838252412
## 5068     Benthopelagic   21         barred sand bass  1.2395015494
## 5069           Benthic    5  california scorpionfish  1.4198313269
## 5070           Pelagic    5             market squid  1.0937046310
## 5071     Benthopelagic   21        yellowfin croaker  0.9997025154
## 5072           Benthic    5          longfin sanddab  1.2643192910
## 5073     Benthopelagic    5       vermilion rockfish  1.6168777765
## 5074          Midwater   13     chilipepper rockfish  0.9135784680
## 5075     Benthopelagic    4        yellowfin croaker  1.0632134054
## 5076     Benthopelagic   21        yellowfin croaker  1.8101245416
## 5077     Benthopelagic    1        yellowfin croaker  1.3094551025
## 5078     Benthopelagic    3                  opaleye  1.4505604761
## 5079     Benthopelagic   11        yellowfin croaker  1.4024993589
## 5080           Benthic   15         hornyhead turbot  1.4284998346
## 5081          Midwater    3         shiner surfperch  1.3304690808
## 5082     Benthopelagic    3        spotted sand bass  1.2437717015
## 5083           Benthic   13         hornyhead turbot  1.3073939746
## 5084     Benthopelagic    7       vermilion rockfish  1.0009405032
## 5085          Midwater    3                kelp bass  1.4375781825
## 5086     Benthopelagic   22       vermilion rockfish  1.2562013270
## 5087     Benthopelagic   11          gopher rockfish  0.7938071793
## 5088     Benthopelagic    4         barred sand bass  1.3510289954
## 5089     Benthopelagic    5         barred sand bass  1.1175587186
## 5090          Midwater   10                kelp bass  1.3962891590
## 5091           Benthic    4    california lizardfish  1.1190192809
## 5092     Benthopelagic    8            white croaker  1.8220728088
## 5093          Midwater   11         shiner surfperch  0.9927838421
## 5094     Benthopelagic    1     california sheephead  1.2774555236
## 5095     Benthopelagic    5            white croaker  1.3406957266
## 5096     Benthopelagic   11            white croaker  1.3448725992
## 5097           Benthic    1           diamond turbot  1.5029786408
## 5098     Benthopelagic    6       vermilion rockfish  1.3731060038
## 5099           Pelagic   21            chub mackerel  1.3206957408
## 5100          Midwater    4           striped mullet  1.4326257259
## 5101           Benthic   19  california scorpionfish  1.1021349279
## 5102          Midwater    1         shiner surfperch  1.3627024451
## 5103     Benthopelagic   11         barred surfperch  1.3821553424
## 5104     Benthopelagic   11        spotted sand bass  1.2572723179
## 5105           Pelagic    5            chub mackerel  1.4019889469
## 5106           Pelagic    5            chub mackerel  1.4016905054
## 5107     Benthopelagic   11            white croaker  1.3846636324
## 5108     Benthopelagic    5           brown rockfish  1.1409022026
## 5109          Midwater    4           striped mullet  1.3030758079
## 5110          Midwater   21                kelp bass  1.2057255058
## 5111     Benthopelagic   21        yellowfin croaker  1.1815214808
## 5112     Benthopelagic    1         barred surfperch  1.3203314026
## 5113     Benthopelagic   14          starry rockfish  0.8517054425
## 5114     Benthopelagic   11 brown smooth-hound shark  1.0784284520
## 5115     Benthopelagic   11           brown rockfish  1.5621558270
## 5116          Midwater    1        walleye surfperch  1.6093277026
## 5117     Benthopelagic   20              black perch  1.3505638894
## 5118           Benthic   10  california scorpionfish  1.3699165659
## 5119          Midwater   22                kelp bass  1.4984290860
## 5120     Benthopelagic    1        rainbow surfperch  1.4235694976
## 5121          Midwater   24      squarespot rockfish  1.6012968167
## 5122     Benthopelagic   21        yellowfin croaker  1.0675100997
## 5123     Benthopelagic   11       vermilion rockfish  1.0550466878
## 5124     Benthopelagic   11         barred sand bass  1.1991296966
## 5125           Benthic   22  california scorpionfish  1.2249644548
## 5126     Benthopelagic    1                  opaleye  1.4070661269
## 5127     Benthopelagic   21          white surfperch  1.5157672060
## 5128          Midwater    4           striped mullet  1.3113459365
## 5129           Pelagic   21            chub mackerel  1.2341559220
## 5130     Benthopelagic   22       vermilion rockfish  1.3378900227
## 5131     Benthopelagic   13            white croaker  1.1000703088
## 5132           Benthic    8  california scorpionfish  1.4315746980
## 5133     Benthopelagic    5       vermilion rockfish  1.2088681399
## 5134     Benthopelagic    3        rainbow surfperch  1.4971167036
## 5135     Benthopelagic    9   greenblotched rockfish  1.5779983754
## 5136           Pelagic   21            chub mackerel  0.9589724132
## 5137     Benthopelagic    5            white croaker  1.0891919445
## 5138           Pelagic   21            chub mackerel  1.4100446593
## 5139           Pelagic    5          pacific sardine  1.5594192903
## 5140          Midwater   12                kelp bass  1.6907404248
## 5141     Benthopelagic   11         barred sand bass  1.3230108901
## 5142           Benthic    8         hornyhead turbot  1.1380199652
## 5143           Benthic    4           spotted turbot  1.3488251270
## 5144           Benthic    5  california scorpionfish  1.3587041595
## 5145          Midwater   21                kelp bass  1.4332377919
## 5146     Benthopelagic    1       california corbina  1.4251804143
## 5147           Pelagic   21            chub mackerel  1.2442764907
## 5148           Benthic    3           diamond turbot  1.4596982427
## 5149           Pelagic   11            chub mackerel  1.3923958647
## 5150     Benthopelagic    9   greenblotched rockfish  1.6044833521
## 5151     Benthopelagic    5            white croaker  1.2429433566
## 5152     Benthopelagic    4        yellowfin croaker  1.1803664110
## 5153          Midwater    7      squarespot rockfish  1.4265063163
## 5154     Benthopelagic   15        speckled rockfish  1.3193521408
## 5155     Benthopelagic   11          white surfperch  1.5106205972
## 5156     Benthopelagic   13       vermilion rockfish  1.2009928895
## 5157     Benthopelagic    2        spotted sand bass  1.1692700887
## 5158     Benthopelagic   15       vermilion rockfish  1.3509458954
## 5159     Benthopelagic   13            white croaker  1.3020877183
## 5160     Benthopelagic    1              black perch  1.2160007888
## 5161     Benthopelagic    8         barred sand bass  1.3087945872
## 5162           Pelagic   11            chub mackerel  1.2590268675
## 5163           Pelagic    6             market squid  1.4458142278
## 5164     Benthopelagic   10            white croaker  1.4465440628
## 5165           Benthic    4           spotted turbot  1.3527004398
## 5166          Midwater   11                kelp bass  1.3711235465
## 5167     Benthopelagic    1              black perch  1.4092510387
## 5168     Benthopelagic   21            white croaker  1.4905634277
## 5169     Benthopelagic   20       california corbina  1.2474520413
## 5170     Benthopelagic   11              black perch  1.2289438156
## 5171           Pelagic   21            chub mackerel  1.4651380422
## 5172     Benthopelagic    1        yellowfin croaker  1.1422521112
## 5173     Benthopelagic   10           brown rockfish  1.4085187321
## 5174           Pelagic   11            chub mackerel  1.4799984559
## 5175     Benthopelagic   11          gopher rockfish  1.5663741370
## 5176     Benthopelagic   21        spotted sand bass  1.2899367832
## 5177     Benthopelagic   23       vermilion rockfish  1.1002573285
## 5178           Pelagic    5            chub mackerel  1.2566697199
## 5179          Midwater    3         shiner surfperch  1.5736305094
## 5180          Midwater   11         shiner surfperch  1.3982459904
## 5181     Benthopelagic   20         barred surfperch  1.1745193618
## 5182     Benthopelagic    3         barred surfperch  1.5847820663
## 5183     Benthopelagic   21        yellowfin croaker  1.3521440522
## 5184     Benthopelagic    5       california corbina  1.3310549033
## 5185     Benthopelagic    5            white croaker  1.3558704541
## 5186           Pelagic    5             market squid  1.3470242270
## 5187     Benthopelagic   17            white croaker  1.3117368558
## 5188     Benthopelagic   20         barred sand bass  1.4679050112
## 5189     Benthopelagic    3              black perch  1.1371929220
## 5190     Benthopelagic   11            white croaker  1.4448818992
## 5191     Benthopelagic    5                  opaleye  1.1928304710
## 5192     Benthopelagic    5            white croaker  1.7270689269
## 5193          Midwater   21                kelp bass  1.6090995061
## 5194     Benthopelagic   23       vermilion rockfish  1.0580015609
## 5195     Benthopelagic    4       california corbina  1.2679228132
## 5196     Benthopelagic   11              black perch  1.3425364764
## 5197     Benthopelagic    5                  opaleye  1.4787974764
## 5198     Benthopelagic    5            white croaker  1.7828259394
## 5199     Benthopelagic   11        spotted sand bass  0.9557431523
## 5200           Pelagic   21            chub mackerel  1.3571717413
## 5201           Pelagic    5         northern anchovy  6.0340798597
## 5202     Benthopelagic    3        spotted sand bass  6.8057310396
## 5203     Benthopelagic   20           pile surfperch  5.0720200616
## 5204           Pelagic    5         northern anchovy  6.3405937181
## 5205           Benthic   11         hornyhead turbot  5.7363394514
## 5206     Benthopelagic   11            black croaker  5.4296641048
## 5207     Benthopelagic    1          white surfperch  6.3879591436
## 5208     Benthopelagic   11         barred sand bass  5.4460395446
## 5209     Benthopelagic   14            white croaker  7.0213649772
## 5210     Benthopelagic    3       california corbina  6.1459263274
## 5211           Pelagic    5            chub mackerel  5.6875376673
## 5212     Benthopelagic   12            white croaker  6.1051849885
## 5213     Benthopelagic    1        yellowfin croaker  5.4245654108
## 5214     Benthopelagic   22          starry rockfish  6.3569017507
## 5215     Benthopelagic    5                  opaleye  5.2607579947
## 5216           Pelagic   11            chub mackerel  5.5133400946
## 5217     Benthopelagic   22            white croaker  5.6884429151
## 5218     Benthopelagic   17        speckled rockfish  6.0960226849
## 5219     Benthopelagic   11         barred sand bass  6.0767597088
## 5220     Benthopelagic   21        spotted sand bass  6.4778789626
## 5221     Benthopelagic    1        spotted sand bass  5.7860038430
## 5222     Benthopelagic    4           pile surfperch  5.4847095386
## 5223     Benthopelagic    5                  opaleye  6.4957801234
## 5224          Midwater    2                kelp bass  5.5334517156
## 5225     Benthopelagic   10              black perch  6.3284232174
## 5226           Pelagic    5          pacific sardine  6.2760641713
## 5227          Midwater    1         shiner surfperch  6.5067159986
## 5228     Benthopelagic    1         barred surfperch  5.4348667217
## 5229     Benthopelagic    2            white croaker  6.9918747564
## 5230     Benthopelagic    1            white croaker  6.0743747241
## 5231     Benthopelagic    5         barred sand bass  5.9010192875
## 5232     Benthopelagic   24       vermilion rockfish  6.2672856526
## 5233          Midwater    3          canary rockfish  5.9519724542
## 5234     Benthopelagic   18            white croaker  5.5842227094
## 5235     Benthopelagic    7           brown rockfish  6.1648574459
## 5236          Midwater    5                queenfish  6.8682261255
## 5237           Benthic    1           diamond turbot  5.5374044505
## 5238     Benthopelagic    1            white croaker  6.6167306620
## 5239           Pelagic    5             market squid  5.8927259582
## 5240           Pelagic    5             market squid  5.2760499343
## 5241     Benthopelagic    3        spotted sand bass  6.0107252775
## 5242           Pelagic    5             market squid  5.8615055003
## 5243          Midwater   11                kelp bass  5.4809559463
## 5244           Benthic    5       california halibut  6.5118041403
## 5245           Benthic   19         hornyhead turbot  6.3059551053
## 5246           Pelagic    5         northern anchovy  5.4889348417
## 5247          Midwater   21                kelp bass  5.9772926901
## 5248           Pelagic   21            chub mackerel  5.4444716396
## 5249          Midwater    1                queenfish  5.6986273904
## 5250     Benthopelagic    3        spotted sand bass  6.3706579712
## 5251     Benthopelagic   14    greenspotted rockfish  5.5270563428
## 5252     Benthopelagic    5            white croaker  6.1731373103
## 5253     Benthopelagic   10   greenblotched rockfish  5.5963652757
## 5254     Benthopelagic    5                  opaleye  6.4727304015
## 5255     Benthopelagic    1            white croaker  6.2100344821
## 5256           Pelagic    5          pacific sardine  5.2342929522
## 5257          Midwater    1            blue rockfish  6.2565578494
## 5258          Midwater   21                kelp bass  6.2984615314
## 5259     Benthopelagic    3         barred sand bass  5.4539710749
## 5260           Pelagic   21            chub mackerel  5.9923780535
## 5261     Benthopelagic    4                  opaleye  5.9210960282
## 5262     Benthopelagic    1     california sheephead  5.6711468964
## 5263     Benthopelagic   11              black perch  5.6738731070
## 5264     Benthopelagic    1        yellowfin croaker  5.2163401253
## 5265     Benthopelagic   18              black perch  6.0398612341
## 5266     Benthopelagic    1        yellowfin croaker  5.7225887604
## 5267     Benthopelagic   21        spotted sand bass  5.2520574782
## 5268     Benthopelagic    5                  opaleye  6.0809839523
## 5269     Benthopelagic   12       vermilion rockfish  6.7303822241
## 5270     Benthopelagic   18       vermilion rockfish  6.6625588073
## 5271     Benthopelagic    3              black perch  6.0143750081
## 5272          Midwater    3                kelp bass  5.8327208544
## 5273     Benthopelagic   12            white croaker  6.7552883452
## 5274          Midwater   21                kelp bass  6.3149277337
## 5275          Midwater    4         shiner surfperch  5.8979320898
## 5276     Benthopelagic   11          gopher rockfish  5.0365085124
## 5277     Benthopelagic    3       vermilion rockfish  5.7238099213
## 5278     Benthopelagic   14         barred sand bass  5.1499112733
## 5279          Midwater   21                kelp bass  5.6192643581
## 5280          Midwater    1                queenfish  5.9117900335
## 5281     Benthopelagic   22          starry rockfish  6.5205085632
## 5282     Benthopelagic   20            white croaker  6.7276391708
## 5283     Benthopelagic    4       california corbina  6.1204742876
## 5284     Benthopelagic    8              black perch  6.6944601117
## 5285           Benthic   20         hornyhead turbot  6.8843628775
## 5286          Midwater   21                kelp bass  6.0136523461
## 5287     Benthopelagic    4              black perch  6.0475273590
## 5288     Benthopelagic    4            white croaker  6.5715754294
## 5289     Benthopelagic    4              black perch  6.3837696529
## 5290     Benthopelagic   21        yellowfin croaker  6.8940109483
## 5291     Benthopelagic    1                  opaleye  5.9604393598
## 5292           Benthic   21         hornyhead turbot  6.9743897175
## 5293     Benthopelagic    4         barred surfperch  5.5066674860
## 5294          Midwater   11                kelp bass  5.9652983032
## 5295           Pelagic    5             market squid  6.5630118260
## 5296           Benthic    1           diamond turbot  5.6297049356
## 5297     Benthopelagic    1            white croaker  5.7498459870
## 5298     Benthopelagic    4              black perch  6.6992492941
## 5299           Pelagic    6             market squid  5.6880822972
## 5300     Benthopelagic   11            white croaker  5.6045889607
## 5301     Benthopelagic    9            white croaker  5.8340579937
## 5302           Pelagic   21         northern anchovy  5.6021949529
## 5303     Benthopelagic   11           brown rockfish  6.2540361941
## 5304     Benthopelagic   11          ocean whitefish  5.9398077157
## 5305           Benthic   17         hornyhead turbot  5.7450152230
## 5306           Benthic   11  california scorpionfish  6.0741908823
## 5307           Benthic   20           diamond turbot  6.4648047963
## 5308     Benthopelagic    4        spotted sand bass  6.3067342064
## 5309          Midwater   11           olive rockfish  5.7347066553
## 5310     Benthopelagic    1              black perch  5.4428967578
## 5311     Benthopelagic    5            white croaker  6.1292059876
## 5312           Pelagic    5         northern anchovy  6.0592235697
## 5313     Benthopelagic   11        yellowfin croaker  6.3607651809
## 5314          Midwater   16                kelp bass  5.5920782251
## 5315     Benthopelagic   11            white croaker  6.3614711112
## 5316     Benthopelagic   11              black perch  6.1959534631
## 5317          Midwater   18                kelp bass  5.7137737776
## 5318     Benthopelagic    3              black perch  6.5110001480
## 5319          Midwater    1                kelp bass  5.6176759875
## 5320     Benthopelagic   15            white croaker  5.8365476544
## 5321     Benthopelagic   22         barred sand bass  5.7022741922
## 5322     Benthopelagic    1            white croaker  5.3008462038
## 5323     Benthopelagic   21        yellowfin croaker  6.2925760852
## 5324           Benthic    5  california scorpionfish  6.0023420434
## 5325           Pelagic   21            chub mackerel  5.7609416580
## 5326           Benthic    1           spotted turbot  5.4984168190
## 5327     Benthopelagic   11          gopher rockfish  5.8857950519
## 5328     Benthopelagic    1            white croaker  6.1690860139
## 5329     Benthopelagic    5       california corbina  6.6362644769
## 5330     Benthopelagic    1              black perch  5.8876537474
## 5331     Benthopelagic   11          spotfin croaker  5.9390451435
## 5332     Benthopelagic    8          copper rockfish  5.9060800905
## 5333     Benthopelagic    4        yellowfin croaker  6.3002754832
## 5334     Benthopelagic   12            white croaker  6.0321329772
## 5335          Midwater    8      yellowtail rockfish  6.1131714616
## 5336          Midwater    3                kelp bass  6.1914268957
## 5337     Benthopelagic    5          spotfin croaker  6.8614157551
## 5338           Pelagic    5          pacific sardine  6.6262118745
## 5339           Benthic    5  california scorpionfish  6.3580570393
## 5340     Benthopelagic    3         barred surfperch  5.8586745799
## 5341           Pelagic    6          pacific sardine  6.5561136787
## 5342     Benthopelagic   11       vermilion rockfish  5.5731691803
## 5343           Pelagic    5         northern anchovy  6.4924450149
## 5344           Pelagic   11            chub mackerel  6.1456340932
## 5345           Pelagic   21            chub mackerel  6.3799165049
## 5346          Midwater    5                top smelt  6.3110732413
## 5347          Midwater    2                queenfish  5.9640659836
## 5348     Benthopelagic    4            white croaker  6.1589905711
## 5349     Benthopelagic   18              black perch  5.7647167492
## 5350          Midwater   21                kelp bass  5.9817950691
## 5351     Benthopelagic    4          copper rockfish  5.9238170483
## 5352     Benthopelagic   20              black perch  5.2019432465
## 5353           Benthic    1         speckled sanddab  6.2224869628
## 5354     Benthopelagic   18            white croaker  5.4794734761
## 5355     Benthopelagic   11         barred sand bass  5.9165962559
## 5356     Benthopelagic   11          spotfin croaker  5.6396392351
## 5357           Pelagic   11            chub mackerel  5.2610193880
## 5358           Pelagic    5            chub mackerel  4.9870881269
## 5359           Benthic   18         hornyhead turbot  5.9109864062
## 5360           Benthic   12  california scorpionfish  6.3491369278
## 5361           Benthic    1             fantail sole  6.2535693037
## 5362          Midwater   21                kelp bass  6.1026287790
## 5363     Benthopelagic    3          white surfperch  5.3947252295
## 5364     Benthopelagic   13       vermilion rockfish  5.7990060148
## 5365     Benthopelagic   18            white croaker  5.8472596578
## 5366          Midwater    1         shiner surfperch  5.4634223705
## 5367     Benthopelagic   14            white croaker  5.3144458331
## 5368          Midwater   11                kelp bass  6.1410079541
## 5369           Benthic    5         speckled sanddab  6.1088966523
## 5370           Benthic   17  california scorpionfish  6.0501289951
## 5371     Benthopelagic   21       california corbina  6.3799226535
## 5372           Benthic   11  california scorpionfish  6.5663697193
## 5373           Benthic   17         hornyhead turbot  5.5108245880
## 5374     Benthopelagic   12              black perch  5.2957061067
## 5375     Benthopelagic    1            white croaker  5.6396440502
## 5376     Benthopelagic    5       california corbina  6.4865067155
## 5377     Benthopelagic    4              black perch  6.0838235293
## 5378     Benthopelagic    5            white croaker  5.8119661428
## 5379     Benthopelagic    1            white croaker  5.9060493242
## 5380           Benthic   14         hornyhead turbot  6.2950666015
## 5381           Benthic    4    shovelnose guitarfish  6.4411038185
## 5382          Midwater    1        walleye surfperch  6.1936838720
## 5383          Midwater   18                kelp bass  6.5894617212
## 5384     Benthopelagic    5            white croaker  6.0269293093
## 5385     Benthopelagic    5         barred sand bass  6.1605405125
## 5386          Midwater    2                kelp bass  5.1013756850
## 5387     Benthopelagic   21         barred sand bass  6.1961808003
## 5388     Benthopelagic   12       vermilion rockfish  5.5720428789
## 5389     Benthopelagic    2       quillback rockfish  4.8900361305
## 5390     Benthopelagic   21            white croaker  5.4907893859
## 5391     Benthopelagic   16       vermilion rockfish  5.8974285139
## 5392     Benthopelagic    3              black perch  5.7217059325
## 5393           Benthic    8  california scorpionfish  6.9973306514
## 5394           Pelagic    5          pacific sardine  5.3162844309
## 5395           Benthic    5  california scorpionfish  6.3515881536
## 5396     Benthopelagic    8          copper rockfish  5.7989501901
## 5397           Pelagic    5          pacific sardine  6.0472869128
## 5398     Benthopelagic    2            white croaker  6.0588895026
## 5399     Benthopelagic    1            white croaker  6.0926748878
## 5400     Benthopelagic   21            leopard shark  6.7986308440
## 5401     Benthopelagic   14              black perch  5.4171367656
## 5402     Benthopelagic   16       vermilion rockfish  5.6423800221
## 5403     Benthopelagic   10       vermilion rockfish  5.9277572529
## 5404          Midwater   21                kelp bass  6.2252742458
## 5405     Benthopelagic    1            rosy rockfish  5.7867121580
## 5406          Midwater    3         shiner surfperch  5.2750332135
## 5407     Benthopelagic   11            white croaker  5.3597140301
## 5408     Benthopelagic    1         barred surfperch  6.7309879934
## 5409          Midwater    1         shiner surfperch  6.4629698123
## 5410           Pelagic   21            chub mackerel  5.7827145395
## 5411     Benthopelagic   16       vermilion rockfish  6.8408569509
## 5412     Benthopelagic    7        speckled rockfish  5.7386122786
## 5413          Midwater    4         shiner surfperch  6.1538784161
## 5414     Benthopelagic   11       vermilion rockfish  5.2119027566
## 5415           Pelagic    5            chub mackerel  5.6571107356
## 5416          Midwater   14                kelp bass  6.7127184202
## 5417     Benthopelagic    3              black perch  5.3866006839
## 5418     Benthopelagic    5            black croaker  6.1417640084
## 5419          Midwater    5                top smelt  6.0213652028
## 5420          Midwater   11                top smelt  6.3697354099
## 5421           Benthic   10         hornyhead turbot  6.4339960689
## 5422           Pelagic    5             market squid  6.2195103443
## 5423     Benthopelagic   12              black perch  5.0157201422
## 5424     Benthopelagic    1       california corbina  5.0749747377
## 5425     Benthopelagic    3         barred surfperch  5.8185553107
## 5426     Benthopelagic   19       vermilion rockfish  5.6990266403
## 5427     Benthopelagic   15        speckled rockfish  5.9161608997
## 5428           Pelagic    5          pacific sardine  5.8426826526
## 5429     Benthopelagic    4         barred surfperch  6.1807187432
## 5430     Benthopelagic   11              black perch  6.5125201372
## 5431          Midwater   11                kelp bass  6.3706159038
## 5432     Benthopelagic   11         barred surfperch  6.3359105737
## 5433           Pelagic    5         northern anchovy  6.0590120108
## 5434           Pelagic    5          pacific sardine  6.0427386983
## 5435     Benthopelagic   11            white croaker  6.0862130210
## 5436     Benthopelagic   19            white croaker  5.7815231626
## 5437     Benthopelagic    3              black perch  5.9476668562
## 5438     Benthopelagic   19       vermilion rockfish  5.7113202123
## 5439     Benthopelagic   12           brown rockfish  5.8443342914
## 5440     Benthopelagic    6          copper rockfish  6.2939395956
## 5441           Pelagic    5             market squid  6.1515707546
## 5442     Benthopelagic   22              black perch  6.1592095092
## 5443           Benthic   20       california halibut  5.7579176163
## 5444     Benthopelagic    2        spotted sand bass  6.4397912850
## 5445           Benthic    1           diamond turbot  5.7436557168
## 5446           Benthic   23         hornyhead turbot  5.9075140172
## 5447     Benthopelagic    5         barred sand bass  6.7130342308
## 5448           Benthic    4    california lizardfish  5.7223215526
## 5449     Benthopelagic   11 brown smooth-hound shark  5.6523308804
## 5450     Benthopelagic   21            white croaker  6.5242804047
## 5451     Benthopelagic    4            flag rockfish  6.4471211575
## 5452           Benthic   12         hornyhead turbot  5.1419776790
## 5453           Benthic    4    shovelnose guitarfish  5.9220479926
## 5454     Benthopelagic   14            white croaker  6.0271609711
## 5455     Benthopelagic    5     california sheephead  6.0321185208
## 5456           Pelagic    5         northern anchovy  6.6532429076
## 5457     Benthopelagic   20       vermilion rockfish  5.6584529534
## 5458     Benthopelagic    2         barred surfperch  6.4416471406
## 5459          Midwater   17      squarespot rockfish  6.1082396686
## 5460     Benthopelagic   18       vermilion rockfish  6.1518209519
## 5461     Benthopelagic   11            white croaker  6.9695681583
## 5462     Benthopelagic    4         barred sand bass  5.9105837710
## 5463          Midwater    4                top smelt  6.3419225963
## 5464           Benthic   17         hornyhead turbot  6.1584955065
## 5465     Benthopelagic   11            white croaker  5.4638552426
## 5466     Benthopelagic   11         barred surfperch  7.1158025599
## 5467           Pelagic    5             market squid  6.2816443362
## 5468           Benthic   19  california scorpionfish  5.7403292441
## 5469           Pelagic    5             market squid  6.2214826789
## 5470     Benthopelagic   10         barred sand bass  6.0832784292
## 5471           Pelagic   11            chub mackerel  6.7772562267
## 5472     Benthopelagic   11              black perch  6.0842167280
## 5473     Benthopelagic   22              black perch  5.9615153610
## 5474     Benthopelagic   12            white croaker  5.8426466030
## 5475           Benthic    5    shovelnose guitarfish  6.1928120917
## 5476     Benthopelagic   20       california corbina  5.3951996858
## 5477     Benthopelagic    5                  opaleye  6.3935963557
## 5478     Benthopelagic   16       vermilion rockfish  5.6566193574
## 5479     Benthopelagic    1        spotted sand bass  6.3278972595
## 5480     Benthopelagic    3        rainbow surfperch  6.0979630759
## 5481     Benthopelagic   17            white croaker  5.9391847355
## 5482           Benthic   22  california scorpionfish  5.8541931132
## 5483          Midwater   21                kelp bass  6.5442861137
## 5484           Pelagic    5             market squid  5.8256377994
## 5485     Benthopelagic   21            white croaker  6.3070033602
## 5486     Benthopelagic    1        rainbow surfperch  5.7358325972
## 5487     Benthopelagic    4       california corbina  5.3473836537
## 5488           Pelagic   21            chub mackerel  5.4305951510
## 5489     Benthopelagic   20            white croaker  6.8873202172
## 5490           Pelagic    6          pacific sardine  6.4359224790
## 5491          Midwater    4           striped mullet  7.3212952689
## 5492           Pelagic   21            chub mackerel  5.9683311925
## 5493           Benthic    1         speckled sanddab  5.7325776307
## 5494     Benthopelagic   11            white croaker  7.0440847678
## 5495           Benthic    8         hornyhead turbot  5.1055336990
## 5496          Midwater    4         shiner surfperch  6.2253044442
## 5497     Benthopelagic   10       vermilion rockfish  6.0717075309
## 5498     Benthopelagic    1        rainbow surfperch  5.9695004359
## 5499          Midwater   11         shiner surfperch  6.2765389727
## 5500     Benthopelagic    5            leopard shark  5.3674678575
## 5501           Pelagic   21            chub mackerel  5.8549831575
## 5502     Benthopelagic   11              black perch  6.0873829232
## 5503          Midwater    4         shiner surfperch  6.4436088109
## 5504     Benthopelagic   14              black perch  6.0554623692
## 5505          Midwater   11                kelp bass  5.8174755481
## 5506     Benthopelagic   18            white croaker  6.0432313491
## 5507          Midwater    4                top smelt  6.4201397685
## 5508     Benthopelagic    5   gray smoothhound shark  5.8571650438
## 5509     Benthopelagic   23            white croaker  6.3306456977
## 5510           Pelagic   21           slough anchovy  6.2613046904
## 5511          Midwater    1                queenfish  6.5895057229
## 5512     Benthopelagic   21            white croaker  6.5543372282
## 5513          Midwater    1                kelp bass  6.2642098128
## 5514     Benthopelagic   24       vermilion rockfish  5.7189241122
## 5515           Pelagic   21            chub mackerel  6.5295861528
## 5516           Pelagic    5          pacific sardine  5.7463893044
## 5517     Benthopelagic    4       california corbina  5.8184403145
## 5518     Benthopelagic    3       california corbina  5.5663840855
## 5519     Benthopelagic   16              black perch  6.4661172570
## 5520           Pelagic    5          pacific sardine  5.3173855613
## 5521           Pelagic   21            chub mackerel  5.7105769382
## 5522     Benthopelagic   21         barred sand bass  6.3018305817
## 5523           Pelagic    6          pacific sardine  6.1968469883
## 5524     Benthopelagic    5        yellowfin croaker  5.4098672285
## 5525           Benthic    1  california scorpionfish  6.2421598087
## 5526          Midwater    4         shiner surfperch  6.3476311822
## 5527           Benthic    5  california scorpionfish  6.1052753956
## 5528     Benthopelagic    5       california corbina  5.8221229265
## 5529           Benthic   19         hornyhead turbot  6.0007134865
## 5530     Benthopelagic    2              black perch  5.6152428762
## 5531     Benthopelagic   21        spotted sand bass  5.8857884556
## 5532     Benthopelagic    7       vermilion rockfish  5.0057091011
## 5533     Benthopelagic    3              black perch  6.2588674651
## 5534           Pelagic   11            chub mackerel  5.6730197327
## 5535     Benthopelagic   22            white croaker  6.5416919710
## 5536          Midwater    2         shiner surfperch  6.5378395742
## 5537     Benthopelagic   11   gray smoothhound shark  6.1825927953
## 5538     Benthopelagic   19            white croaker  5.7150217142
## 5539     Benthopelagic   11            white croaker  5.8493180627
## 5540     Benthopelagic    5            white croaker  6.3803826630
## 5541     Benthopelagic   21          white surfperch  6.1812922883
## 5542          Midwater    5                 halfmoon  6.8879010716
## 5543          Midwater   10                kelp bass  6.3152765947
## 5544          Midwater    1                kelp bass  5.4986314583
## 5545          Midwater    3         shiner surfperch  5.0454173651
## 5546     Benthopelagic   10            white croaker  6.5013425934
## 5547          Midwater    5                queenfish  5.2488129639
## 5548     Benthopelagic    1            white croaker  5.6590966324
## 5549     Benthopelagic    4              black perch  6.0467495114
## 5550     Benthopelagic    1         barred sand bass  6.6542501547
## 5551          Midwater    5                kelp bass  6.1528612149
## 5552           Pelagic    5          pacific sardine  5.7710177962
## 5553     Benthopelagic   21         barred sand bass  5.8526586037
## 5554     Benthopelagic    4           pile surfperch  5.7666267850
## 5555          Midwater   14                kelp bass  5.9507152511
## 5556     Benthopelagic   16          copper rockfish  6.4216318797
## 5557     Benthopelagic    3        spotted sand bass  7.0247361189
## 5558          Midwater   16                kelp bass  6.0043905160
## 5559          Midwater    4                kelp bass  6.0077658703
## 5560     Benthopelagic   14              black perch  5.9501707895
## 5561           Pelagic    6          pacific sardine  5.7732994867
## 5562     Benthopelagic   11              black perch  6.1954247372
## 5563     Benthopelagic    4           pile surfperch  5.6989231618
## 5564     Benthopelagic    5        yellowfin croaker  6.3441658194
## 5565           Benthic   14         hornyhead turbot  6.3313828995
## 5566           Pelagic    5          pacific sardine  6.2008357055
## 5567           Pelagic   21            chub mackerel  6.4005393053
## 5568          Midwater   21                kelp bass  6.4348196129
## 5569     Benthopelagic   10              black perch  5.3842393860
## 5570          Midwater   21                kelp bass  6.2022525518
## 5571           Pelagic    5          pacific sardine  6.0534788589
## 5572          Midwater    3         shiner surfperch  5.5802959901
## 5573     Benthopelagic    8         barred sand bass  6.0079049066
## 5574     Benthopelagic   11         barred sand bass  5.9704852917
## 5575          Midwater    1        walleye surfperch  6.7730299732
## 5576           Benthic   20  california scorpionfish  5.7739753495
## 5577           Benthic   23         hornyhead turbot  6.3337108602
## 5578           Benthic   19  california scorpionfish  6.0011616493
## 5579     Benthopelagic   12           brown rockfish  7.1228697561
## 5580     Benthopelagic   11          white surfperch  5.8890805330
## 5581     Benthopelagic    5       california corbina  6.1662905994
## 5582     Benthopelagic    4              black perch  5.7754481372
## 5583     Benthopelagic    5            white croaker  6.1870082714
## 5584     Benthopelagic    3        spotted sand bass  5.0379575901
## 5585     Benthopelagic   20            white croaker  6.1546561818
## 5586          Midwater    1         shiner surfperch  6.1878912712
## 5587           Benthic   20         hornyhead turbot  6.0654463427
## 5588           Benthic    1           spotted turbot  5.0754673273
## 5589           Benthic   23         hornyhead turbot  6.2635064082
## 5590     Benthopelagic   14       vermilion rockfish  6.1308451513
## 5591           Pelagic    5             market squid  6.3527789454
## 5592     Benthopelagic    8            white croaker  5.7942353255
## 5593           Pelagic    5             market squid  5.1427485583
## 5594     Benthopelagic    5       vermilion rockfish  6.5601947139
## 5595     Benthopelagic   11            white croaker  6.1346980311
## 5596           Benthic    3           diamond turbot  5.9733846971
## 5597           Pelagic   21         northern anchovy  5.9276567627
## 5598           Benthic    8         hornyhead turbot  5.5977498193
## 5599     Benthopelagic    4         barred sand bass  5.4316429528
## 5600          Midwater    3                jacksmelt  6.5609348948
## 5601          Midwater   21                kelp bass  5.0844977451
## 5602     Benthopelagic   11        yellowfin croaker  4.1096582978
## 5603          Midwater    8                kelp bass  4.7086021122
## 5604     Benthopelagic    9       vermilion rockfish  4.4135824557
## 5605          Midwater   21                kelp bass  4.2131035189
## 5606     Benthopelagic    1         barred surfperch  4.5784379057
## 5607          Midwater   11                top smelt  4.2671408786
## 5608     Benthopelagic    5            white croaker  4.7967374648
## 5609     Benthopelagic    4         barred surfperch  5.1138165341
## 5610     Benthopelagic   21        yellowfin croaker  4.2677340921
## 5611     Benthopelagic    5         barred sand bass  4.2459169458
## 5612           Pelagic   21            chub mackerel  4.2603073134
## 5613          Midwater   21                kelp bass  4.6008848928
## 5614     Benthopelagic    8            white croaker  4.2568657966
## 5615           Pelagic   21            chub mackerel  4.6196134297
## 5616     Benthopelagic   16        speckled rockfish  5.2285121365
## 5617     Benthopelagic    5         barred sand bass  4.8713479157
## 5618           Pelagic   21           slough anchovy  5.0714050333
## 5619     Benthopelagic   11            rosy rockfish  4.0720477399
## 5620           Benthic    4           diamond turbot  4.5501293601
## 5621           Benthic   16  california scorpionfish  4.7945021318
## 5622     Benthopelagic   20       vermilion rockfish  4.7027110300
## 5623          Midwater   20                kelp bass  4.1672413891
## 5624          Midwater   21                kelp bass  4.5448494777
## 5625           Benthic   13         hornyhead turbot  4.3942182012
## 5626           Pelagic   21            chub mackerel  4.6618247652
## 5627     Benthopelagic   14       vermilion rockfish  4.6412934900
## 5628          Midwater    5                kelp bass  5.1086452983
## 5629           Benthic   10  california scorpionfish  4.1859978202
## 5630     Benthopelagic    5         barred sand bass  4.5608893271
## 5631          Midwater    4                kelp bass  4.7865180356
## 5632     Benthopelagic    1        yellowfin croaker  4.0470093985
## 5633     Benthopelagic   10           brown rockfish  4.2669800604
## 5634           Benthic    5          longfin sanddab  4.3631406015
## 5635     Benthopelagic    3        yellowfin croaker  5.3275247122
## 5636     Benthopelagic   11            white croaker  4.3060335158
## 5637          Midwater   20                kelp bass  4.6700455655
## 5638           Benthic    5       california halibut  4.8832006001
## 5639           Pelagic    5          pacific sardine  4.6778768188
## 5640          Midwater   21                kelp bass  4.8389538226
## 5641     Benthopelagic    8            white croaker  4.9412693929
## 5642     Benthopelagic    3       california corbina  4.8316826071
## 5643     Benthopelagic    4        spotted sand bass  4.3432901338
## 5644           Benthic   10  california scorpionfish  4.7173848244
## 5645           Benthic    5  california scorpionfish  4.0494137557
## 5646          Midwater   11                top smelt  4.4856212983
## 5647     Benthopelagic   17            white croaker  4.2180466021
## 5648     Benthopelagic    5            white croaker  4.4644492499
## 5649           Pelagic   21         northern anchovy  4.6848006683
## 5650           Pelagic    5          pacific sardine  5.4039168786
## 5651     Benthopelagic    1       california corbina  4.6306485441
## 5652          Midwater    5                kelp bass  4.7356066618
## 5653     Benthopelagic   20            white croaker  4.9005397783
## 5654     Benthopelagic    3            rosy rockfish  5.0520122217
## 5655     Benthopelagic   21        yellowfin croaker  4.5471033603
## 5656     Benthopelagic    1         barred surfperch  5.0003471383
## 5657     Benthopelagic   14         barred sand bass  4.6309320785
## 5658     Benthopelagic    5       vermilion rockfish  4.2615600853
## 5659          Midwater   21                kelp bass  3.7786925286
## 5660     Benthopelagic    3           pile surfperch  5.3420802080
## 5661     Benthopelagic   19       vermilion rockfish  4.3063461990
## 5662           Pelagic    5            chub mackerel  4.4159271631
## 5663          Midwater   21                kelp bass  5.3171135935
## 5664          Midwater    5                queenfish  4.6190157945
## 5665     Benthopelagic   11            white croaker  4.6604715350
## 5666           Benthic    1           diamond turbot  4.4648505981
## 5667           Benthic   22         hornyhead turbot  4.6348918381
## 5668          Midwater    5                kelp bass  4.5026028292
## 5669     Benthopelagic   21          spotfin croaker  4.1806586616
## 5670           Pelagic    5            chub mackerel  5.0156695263
## 5671     Benthopelagic    5       vermilion rockfish  4.7407586099
## 5672     Benthopelagic    1         barred surfperch  4.2947732555
## 5673     Benthopelagic   11            white croaker  4.6806831436
## 5674     Benthopelagic    4         barred sand bass  4.3380513979
## 5675     Benthopelagic   17       vermilion rockfish  3.9048867480
## 5676     Benthopelagic   11          white surfperch  5.1992398087
## 5677     Benthopelagic    8          copper rockfish  4.4863066135
## 5678          Midwater   11            kelp rockfish  4.6776235135
## 5679     Benthopelagic    5            white croaker  4.0826381559
## 5680     Benthopelagic    4         barred surfperch  4.1413651529
## 5681     Benthopelagic    4       california corbina  4.5758308775
## 5682           Benthic   20       california halibut  4.2277957390
## 5683           Benthic    3           diamond turbot  4.5964190030
## 5684     Benthopelagic   12         barred sand bass  4.7688787157
## 5685          Midwater    1                 halfmoon  5.2049332863
## 5686     Benthopelagic   13       vermilion rockfish  4.4890623567
## 5687           Pelagic    5        pacific barracuda  3.8688104576
## 5688     Benthopelagic    3              black perch  4.1754725460
## 5689           Pelagic   21            chub mackerel  4.7661776318
## 5690     Benthopelagic   14            white croaker  4.8451754148
## 5691     Benthopelagic   24       vermilion rockfish  4.1443362438
## 5692     Benthopelagic   20       california corbina  4.1921851457
## 5693     Benthopelagic   21         barred sand bass  4.6775014079
## 5694     Benthopelagic   11            white croaker  4.0434644984
## 5695          Midwater   21                kelp bass  4.1616393847
## 5696          Midwater    1         shiner surfperch  3.7589671232
## 5697          Midwater    5         shiner surfperch  3.6814846686
## 5698     Benthopelagic   11           brown rockfish  5.3168228813
## 5699     Benthopelagic    5         barred sand bass  4.6502889964
## 5700           Pelagic    5          pacific sardine  4.3868665497
## 5701           Benthic   16         hornyhead turbot  4.9743579990
## 5702          Midwater    1         shiner surfperch  4.7064133764
## 5703     Benthopelagic    5                  opaleye  4.4028283242
## 5704     Benthopelagic   20            white croaker  4.2773117843
## 5705     Benthopelagic   21            white croaker  4.1722976371
## 5706     Benthopelagic   11          spotfin croaker  4.8975549201
## 5707           Benthic   22  california scorpionfish  4.0443534692
## 5708           Pelagic    5          pacific sardine  4.6402284624
## 5709     Benthopelagic    1                  opaleye  4.2068703441
## 5710          Midwater    1         shiner surfperch  5.0772944196
## 5711     Benthopelagic   11         barred surfperch  4.2774865905
## 5712          Midwater   11         shiner surfperch  4.5249344921
## 5713     Benthopelagic   12            white croaker  4.5769715159
## 5714          Midwater   21                queenfish  4.9988174865
## 5715           Benthic    4    shovelnose guitarfish  4.5232434014
## 5716     Benthopelagic   21         barred sand bass  4.2902219583
## 5717     Benthopelagic   10            white croaker  4.6086488934
## 5718     Benthopelagic    1       california corbina  4.6096617980
## 5719     Benthopelagic   11            white croaker  5.0034582127
## 5720          Midwater   11                kelp bass  4.3644411200
## 5721     Benthopelagic    3        spotted sand bass  4.5586154089
## 5722     Benthopelagic    3          copper rockfish  4.7019589655
## 5723           Pelagic   11            chub mackerel  4.3033411538
## 5724           Pelagic    5             market squid  4.6932440726
## 5725           Pelagic   11            chub mackerel  4.6773887885
## 5726           Pelagic   21            chub mackerel  4.6283486192
## 5727           Benthic   22  california scorpionfish  5.0833809249
## 5728          Midwater    4         shiner surfperch  4.9982865505
## 5729           Benthic   18  california scorpionfish  3.7557907177
## 5730     Benthopelagic    5                  opaleye  4.7345527966
## 5731          Midwater   21                queenfish  4.9449802231
## 5732     Benthopelagic    5          copper rockfish  3.8985643602
## 5733     Benthopelagic   11         barred sand bass  4.7172898061
## 5734     Benthopelagic   21        spotted sand bass  4.4933140404
## 5735     Benthopelagic   22            white croaker  4.0552764577
## 5736           Pelagic    5         northern anchovy  4.3496834864
## 5737     Benthopelagic   21            leopard shark  4.3695947447
## 5738          Midwater   11         shiner surfperch  4.7057637157
## 5739     Benthopelagic   21            white croaker  4.5907657646
## 5740           Benthic    5       california halibut  4.8084982321
## 5741          Midwater   11                kelp bass  5.0376737898
## 5742          Midwater   18                kelp bass  4.8349421485
## 5743     Benthopelagic    5            white croaker  4.7278658378
## 5744     Benthopelagic    1         barred surfperch  4.7771630406
## 5745     Benthopelagic   20            white croaker  4.3757386803
## 5746     Benthopelagic    4 brown smooth-hound shark  4.3836526747
## 5747     Benthopelagic   11         barred sand bass  4.7487829188
## 5748           Benthic   15         hornyhead turbot  4.5654791099
## 5749           Benthic    5  california scorpionfish  4.2718100159
## 5750     Benthopelagic   14       vermilion rockfish  4.6081260972
## 5751           Pelagic    5             market squid  4.3078648434
## 5752     Benthopelagic    5            black croaker  4.2275072405
## 5753     Benthopelagic    1         barred surfperch  3.7605869552
## 5754          Midwater    2        walleye surfperch  5.0438192060
## 5755     Benthopelagic   16       vermilion rockfish  4.1184017795
## 5756           Pelagic    4            chub mackerel  5.1293953260
## 5757     Benthopelagic    1        yellowfin croaker  4.6953858878
## 5758          Midwater    5                kelp bass  4.2056209000
## 5759     Benthopelagic    6          copper rockfish  4.9347944649
## 5760           Benthic    9         hornyhead turbot  4.1170126969
## 5761     Benthopelagic   13           brown rockfish  5.2776835909
## 5762     Benthopelagic    4            white croaker  4.7515168617
## 5763     Benthopelagic   21        spotted sand bass  4.4384252493
## 5764           Pelagic    6             market squid  4.7747556019
## 5765     Benthopelagic   11            white croaker  4.4747663603
## 5766     Benthopelagic   16       vermilion rockfish  5.4242919947
## 5767           Benthic    5           diamond turbot  4.8298316089
## 5768          Midwater    5                kelp bass  4.3446635775
## 5769     Benthopelagic    3        rainbow surfperch  5.1106975069
## 5770           Benthic   21       california halibut  4.4217826405
## 5771     Benthopelagic   21            white croaker  4.9724993234
## 5772     Benthopelagic   11          white surfperch  4.7717591840
## 5773     Benthopelagic    4        yellowfin croaker  4.2115479888
## 5774           Pelagic    5         northern anchovy  3.9764556123
## 5775           Pelagic   21         northern anchovy  4.3269191702
## 5776     Benthopelagic   21        yellowfin croaker  4.5513261582
## 5777     Benthopelagic   13       vermilion rockfish  4.8257755532
## 5778     Benthopelagic   11         barred sand bass  4.7045843345
## 5779     Benthopelagic    1       california corbina  4.7255528105
## 5780     Benthopelagic    5       vermilion rockfish  4.3782886483
## 5781          Midwater    1                 halfmoon  4.9392848776
## 5782     Benthopelagic   23          starry rockfish  5.4344572418
## 5783     Benthopelagic    9          copper rockfish  4.3250607775
## 5784     Benthopelagic    5            white croaker  4.9909290904
## 5785     Benthopelagic   12         barred sand bass  4.6030003452
## 5786     Benthopelagic   23            white croaker  4.7470337188
## 5787           Pelagic    5            chub mackerel  4.5769109945
## 5788          Midwater    4                kelp bass  5.0898374326
## 5789           Pelagic    5         northern anchovy  4.3391151860
## 5790     Benthopelagic    1        spotted sand bass  4.4830903848
## 5791           Benthic   16         hornyhead turbot  4.3895816140
## 5792          Midwater   11                kelp bass  4.9218051976
## 5793           Pelagic   21            chub mackerel  5.2775473205
## 5794     Benthopelagic    1          ocean whitefish  4.5858132093
## 5795     Benthopelagic    1       california corbina  5.3995647565
## 5796     Benthopelagic   21        spotted sand bass  4.6426724275
## 5797           Pelagic    5          pacific sardine  4.3760197757
## 5798     Benthopelagic    4                  opaleye  4.8890173903
## 5799           Pelagic    6          pacific sardine  4.6001703837
## 5800           Pelagic   11            chub mackerel  5.3170107284
## 5801          Midwater   21                kelp bass  4.4247718278
## 5802     Benthopelagic    1     california sheephead  4.7415653700
## 5803          Midwater   10                kelp bass  4.8376028580
## 5804     Benthopelagic   13            white croaker  4.2894626749
## 5805           Pelagic    5            chub mackerel  5.0544647812
## 5806           Benthic   15         hornyhead turbot  4.5730752992
## 5807     Benthopelagic   24          starry rockfish  4.2633044642
## 5808     Benthopelagic   14       vermilion rockfish  4.8305066929
## 5809     Benthopelagic   22            white croaker  4.6198553789
## 5810           Benthic    5    shovelnose guitarfish  5.0760719502
## 5811           Benthic   12  california scorpionfish  4.7495097286
## 5812     Benthopelagic   11   gray smoothhound shark  3.8331216344
## 5813     Benthopelagic    3        rainbow surfperch  4.5571369827
## 5814     Benthopelagic    1                  opaleye  4.2942587746
## 5815           Pelagic    5             market squid  4.9914269752
## 5816           Pelagic    4            chub mackerel  4.8908662112
## 5817           Pelagic    5          pacific sardine  4.3357159214
## 5818     Benthopelagic   15            white croaker  4.7579205182
## 5819           Pelagic    5             market squid  5.1267003075
## 5820           Pelagic   21            chub mackerel  4.4959120128
## 5821     Benthopelagic   11           brown rockfish  4.5383438081
## 5822     Benthopelagic   20        yellowfin croaker  4.1227709591
## 5823     Benthopelagic   22         barred sand bass  4.6275000443
## 5824           Pelagic    5          pacific sardine  4.4166720673
## 5825           Benthic   13         hornyhead turbot  4.8921883876
## 5826          Midwater   12                kelp bass  4.6465644235
## 5827     Benthopelagic   22            white croaker  4.7383929544
## 5828           Pelagic    6             market squid  4.7697011020
## 5829           Pelagic    5          pacific sardine  4.4106433886
## 5830     Benthopelagic    4       california corbina  5.0776981884
## 5831     Benthopelagic   21        spotted sand bass  4.5736130554
## 5832     Benthopelagic    6    greenspotted rockfish  4.2473229320
## 5833           Pelagic    5             market squid  4.6067517674
## 5834     Benthopelagic    4            white croaker  4.6848902460
## 5835     Benthopelagic    1       california corbina  4.7900885746
## 5836          Midwater    4         shiner surfperch  4.4109110493
## 5837     Benthopelagic   23       vermilion rockfish  4.5985539353
## 5838     Benthopelagic   20       california corbina  4.3293674787
## 5839           Pelagic    5            chub mackerel  4.3432225161
## 5840     Benthopelagic   21         barred sand bass  4.8105072234
## 5841           Benthic    5  california scorpionfish  4.7425432043
## 5842           Pelagic    5             market squid  4.5129007255
## 5843     Benthopelagic   21        yellowfin croaker  4.5622651218
## 5844           Benthic    5          longfin sanddab  4.8982959670
## 5845     Benthopelagic    5       vermilion rockfish  5.0464760327
## 5846          Midwater   13     chilipepper rockfish  4.2092702985
## 5847     Benthopelagic    4        yellowfin croaker  4.6681837399
## 5848     Benthopelagic   21        yellowfin croaker  4.7802458745
## 5849     Benthopelagic    1        yellowfin croaker  5.0918916899
## 5850     Benthopelagic    3                  opaleye  3.9960641204
## 5851     Benthopelagic   11        yellowfin croaker  4.6965892332
## 5852           Benthic   15         hornyhead turbot  5.0358611815
## 5853          Midwater    3         shiner surfperch  4.3914277928
## 5854     Benthopelagic    3        spotted sand bass  4.3365307521
## 5855           Benthic   13         hornyhead turbot  4.1841491322
## 5856     Benthopelagic    7       vermilion rockfish  4.1019688021
## 5857          Midwater    3                kelp bass  4.7325052412
## 5858     Benthopelagic   22       vermilion rockfish  4.1734559259
## 5859     Benthopelagic   11          gopher rockfish  4.5546257683
## 5860     Benthopelagic    4         barred sand bass  4.2104353478
## 5861     Benthopelagic    5         barred sand bass  4.2586636176
## 5862          Midwater   10                kelp bass  4.8036445362
## 5863           Benthic    4    california lizardfish  5.0660160496
## 5864     Benthopelagic    8            white croaker  4.6717780563
## 5865          Midwater   11         shiner surfperch  4.1739767519
## 5866     Benthopelagic    1     california sheephead  4.4067703761
## 5867     Benthopelagic    5            white croaker  4.6832679769
## 5868     Benthopelagic   11            white croaker  4.2886593543
## 5869           Benthic    1           diamond turbot  4.7496137111
## 5870     Benthopelagic    6       vermilion rockfish  4.5394722643
## 5871           Pelagic   21            chub mackerel  4.0557674952
## 5872          Midwater    4           striped mullet  4.7093791758
## 5873           Benthic   19  california scorpionfish  4.3354064372
## 5874          Midwater    1         shiner surfperch  4.3443649790
## 5875     Benthopelagic   11         barred surfperch  4.8166714584
## 5876     Benthopelagic   11        spotted sand bass  4.6076248010
## 5877           Pelagic    5            chub mackerel  4.4580269248
## 5878           Pelagic    5            chub mackerel  4.4344111161
## 5879     Benthopelagic   11            white croaker  4.2465685585
## 5880     Benthopelagic    5           brown rockfish  5.4569726754
## 5881          Midwater    4           striped mullet  4.9361698886
## 5882          Midwater   21                kelp bass  4.3277545425
## 5883     Benthopelagic   21        yellowfin croaker  4.4756498852
## 5884     Benthopelagic    1         barred surfperch  3.9600193293
## 5885     Benthopelagic   14          starry rockfish  4.6441123023
## 5886     Benthopelagic   11 brown smooth-hound shark  4.6614671265
## 5887     Benthopelagic   11           brown rockfish  3.7285402426
## 5888          Midwater    1        walleye surfperch  3.9826932677
## 5889     Benthopelagic   20              black perch  4.1607922420
## 5890           Benthic   10  california scorpionfish  4.2111689957
## 5891          Midwater   22                kelp bass  4.3787569567
## 5892     Benthopelagic    1        rainbow surfperch  5.2207097280
## 5893          Midwater   24      squarespot rockfish  4.5744199104
## 5894     Benthopelagic   21        yellowfin croaker  4.4527754726
## 5895     Benthopelagic   11       vermilion rockfish  4.5594201015
## 5896     Benthopelagic   11         barred sand bass  4.4722314385
## 5897           Benthic   22  california scorpionfish  4.2711169409
## 5898     Benthopelagic    1                  opaleye  4.7279941900
## 5899     Benthopelagic   21          white surfperch  4.5599063945
## 5900          Midwater    4           striped mullet  3.9829464821
## 5901           Pelagic   21            chub mackerel  4.4710745301
## 5902     Benthopelagic   22       vermilion rockfish  4.8862347385
## 5903     Benthopelagic   13            white croaker  4.4520495226
## 5904           Benthic    8  california scorpionfish  4.4334570657
## 5905     Benthopelagic    5       vermilion rockfish  4.1073086145
## 5906     Benthopelagic    3        rainbow surfperch  4.4102754785
## 5907     Benthopelagic    9   greenblotched rockfish  4.3577742990
## 5908           Pelagic   21            chub mackerel  4.2781684112
## 5909     Benthopelagic    5            white croaker  3.7514900097
## 5910           Pelagic   21            chub mackerel  5.0454156890
## 5911           Pelagic    5          pacific sardine  4.8156693626
## 5912          Midwater   12                kelp bass  4.9128137348
## 5913     Benthopelagic   11         barred sand bass  4.0859734252
## 5914           Benthic    8         hornyhead turbot  4.9580550818
## 5915           Benthic    4           spotted turbot  4.9217844046
## 5916           Benthic    5  california scorpionfish  4.5041716416
## 5917          Midwater   21                kelp bass  4.3711610950
## 5918     Benthopelagic    1       california corbina  4.4809092053
## 5919           Pelagic   21            chub mackerel  4.0317883468
## 5920           Benthic    3           diamond turbot  4.7460177736
## 5921           Pelagic   11            chub mackerel  4.7794939549
## 5922     Benthopelagic    9   greenblotched rockfish  3.6818237851
## 5923     Benthopelagic    5            white croaker  4.4884010812
## 5924     Benthopelagic    4        yellowfin croaker  4.6506836753
## 5925          Midwater    7      squarespot rockfish  4.4162179291
## 5926     Benthopelagic   15        speckled rockfish  5.0381324603
## 5927     Benthopelagic   11          white surfperch  4.7632199986
## 5928     Benthopelagic   13       vermilion rockfish  4.7585820806
## 5929     Benthopelagic    2        spotted sand bass  4.9335252451
## 5930     Benthopelagic   15       vermilion rockfish  4.5333063113
## 5931     Benthopelagic   13            white croaker  4.4144919747
## 5932     Benthopelagic    1              black perch  4.5482727710
## 5933     Benthopelagic    8         barred sand bass  5.0266266552
## 5934           Pelagic   11            chub mackerel  4.1048876344
## 5935           Pelagic    6             market squid  5.1029603907
## 5936     Benthopelagic   10            white croaker  4.6819876859
## 5937           Benthic    4           spotted turbot  4.4441558915
## 5938          Midwater   11                kelp bass  4.0521304476
## 5939     Benthopelagic    1              black perch  4.3043735144
## 5940     Benthopelagic   21            white croaker  5.3719241134
## 5941     Benthopelagic   20       california corbina  4.1878992230
## 5942     Benthopelagic   11              black perch  4.7271908122
## 5943           Pelagic   21            chub mackerel  4.4266498877
## 5944     Benthopelagic    1        yellowfin croaker  4.4263386252
## 5945     Benthopelagic   10           brown rockfish  3.8631061202
## 5946           Pelagic   11            chub mackerel  4.4291265908
## 5947     Benthopelagic   11          gopher rockfish  4.6468449611
## 5948     Benthopelagic   21        spotted sand bass  4.7591956445
## 5949     Benthopelagic   23       vermilion rockfish  4.9044833325
## 5950           Pelagic    5            chub mackerel  4.8593257728
## 5951          Midwater    3         shiner surfperch  4.2089756567
## 5952          Midwater   11         shiner surfperch  4.6139876337
## 5953     Benthopelagic   20         barred surfperch  4.8446007931
## 5954     Benthopelagic    3         barred surfperch  3.5074495677
## 5955     Benthopelagic   21        yellowfin croaker  4.1778595076
## 5956     Benthopelagic    5       california corbina  4.4147941126
## 5957     Benthopelagic    5            white croaker  4.2088109294
## 5958           Pelagic    5             market squid  4.4530983634
## 5959     Benthopelagic   17            white croaker  4.7957369440
## 5960     Benthopelagic   20         barred sand bass  4.8128622936
## 5961     Benthopelagic    3              black perch  4.9222559592
## 5962     Benthopelagic   11            white croaker  4.5136787167
## 5963     Benthopelagic    5                  opaleye  4.2535714742
## 5964     Benthopelagic    5            white croaker  4.3844857646
## 5965          Midwater   21                kelp bass  4.5398766890
## 5966     Benthopelagic   23       vermilion rockfish  3.9136077196
## 5967     Benthopelagic    4       california corbina  4.5874624945
## 5968     Benthopelagic   11              black perch  4.3346460360
## 5969     Benthopelagic    5                  opaleye  4.3505763482
## 5970     Benthopelagic    5            white croaker  4.4001645993
## 5971     Benthopelagic   11        spotted sand bass  4.9211164131
## 5972           Pelagic   21            chub mackerel  4.7754994308
## 5973           Pelagic    5         northern anchovy  4.4928325133
## 5974     Benthopelagic    3        spotted sand bass  4.7747970504
## 5975     Benthopelagic   20           pile surfperch  4.0995176583
## 5976           Pelagic    5         northern anchovy  4.5146229408
## 5977           Benthic   11         hornyhead turbot  3.9899317054
## 5978     Benthopelagic   11            black croaker  4.5656440124
## 5979     Benthopelagic    1          white surfperch  4.7356123267
## 5980     Benthopelagic   11         barred sand bass  4.3341250185
## 5981     Benthopelagic   14            white croaker  4.4408087230
## 5982     Benthopelagic    3       california corbina  4.2883240809
## 5983           Pelagic    5            chub mackerel  5.0027041888
## 5984     Benthopelagic   12            white croaker  4.1983217589
## 5985     Benthopelagic    1        yellowfin croaker  4.5500876312
## 5986     Benthopelagic   22          starry rockfish  4.0974953345
## 5987     Benthopelagic    5                  opaleye  4.5159478279
## 5988           Pelagic   11            chub mackerel  4.4000473135
## 5989     Benthopelagic   22            white croaker  4.2616466335
## 5990     Benthopelagic   17        speckled rockfish  4.1427034570
## 5991     Benthopelagic   11         barred sand bass  4.8066066006
## 5992     Benthopelagic   21        spotted sand bass  4.4559994055
## 5993     Benthopelagic    1        spotted sand bass  4.5800082947
## 5994     Benthopelagic    4           pile surfperch  4.8428039073
## 5995     Benthopelagic    5                  opaleye  4.3255596876
## 5996          Midwater    2                kelp bass  4.2708397632
## 5997     Benthopelagic   10              black perch  4.4063891532
## 5998           Pelagic    5          pacific sardine  4.6333031720
## 5999          Midwater    1         shiner surfperch  4.5825145525
## 6000     Benthopelagic    1         barred surfperch  4.4347422344
## 6001     Benthopelagic    2            white croaker  3.4822974687
## 6002     Benthopelagic    1            white croaker  2.6321422478
## 6003     Benthopelagic    5         barred sand bass  3.1652644352
## 6004     Benthopelagic   24       vermilion rockfish  2.8419131478
## 6005          Midwater    3          canary rockfish  2.4176058549
## 6006     Benthopelagic   18            white croaker  3.0605629388
## 6007     Benthopelagic    7           brown rockfish  2.6847345462
## 6008          Midwater    5                queenfish  3.1612405295
## 6009           Benthic    1           diamond turbot  3.3557439006
## 6010     Benthopelagic    1            white croaker  2.4089565646
## 6011           Pelagic    5             market squid  2.6287078033
## 6012           Pelagic    5             market squid  2.7919483286
## 6013     Benthopelagic    3        spotted sand bass  3.0783398298
## 6014           Pelagic    5             market squid  2.6444562431
## 6015          Midwater   11                kelp bass  2.9769548452
## 6016           Benthic    5       california halibut  3.5263702290
## 6017           Benthic   19         hornyhead turbot  3.0421153111
## 6018           Pelagic    5         northern anchovy  3.4079514204
## 6019          Midwater   21                kelp bass  2.4653558139
## 6020           Pelagic   21            chub mackerel  2.6850581632
## 6021          Midwater    1                queenfish  3.0883077641
## 6022     Benthopelagic    3        spotted sand bass  3.1997808397
## 6023     Benthopelagic   14    greenspotted rockfish  2.6587440118
## 6024     Benthopelagic    5            white croaker  2.8062962330
## 6025     Benthopelagic   10   greenblotched rockfish  2.5307436579
## 6026     Benthopelagic    5                  opaleye  3.0048103686
## 6027     Benthopelagic    1            white croaker  2.8741491728
## 6028           Pelagic    5          pacific sardine  3.6264703259
## 6029          Midwater    1            blue rockfish  2.7294003912
## 6030          Midwater   21                kelp bass  2.8450267875
## 6031     Benthopelagic    3         barred sand bass  2.9873685880
## 6032           Pelagic   21            chub mackerel  2.3034952446
## 6033     Benthopelagic    4                  opaleye  2.9018222516
## 6034     Benthopelagic    1     california sheephead  2.8991311185
## 6035     Benthopelagic   11              black perch  3.4615510813
## 6036     Benthopelagic    1        yellowfin croaker  2.8633132152
## 6037     Benthopelagic   18              black perch  3.0488950697
## 6038     Benthopelagic    1        yellowfin croaker  3.4975393672
## 6039     Benthopelagic   21        spotted sand bass  3.3553795509
## 6040     Benthopelagic    5                  opaleye  3.2214450837
## 6041     Benthopelagic   12       vermilion rockfish  3.3446035306
## 6042     Benthopelagic   18       vermilion rockfish  3.1968601353
## 6043     Benthopelagic    3              black perch  2.9374027177
## 6044          Midwater    3                kelp bass  3.1153065447
## 6045     Benthopelagic   12            white croaker  2.5291656633
## 6046          Midwater   21                kelp bass  2.7917844294
## 6047          Midwater    4         shiner surfperch  2.6015279188
## 6048     Benthopelagic   11          gopher rockfish  2.8823443796
## 6049     Benthopelagic    3       vermilion rockfish  2.9550535637
## 6050     Benthopelagic   14         barred sand bass  3.5595636871
## 6051          Midwater   21                kelp bass  2.9347578105
## 6052          Midwater    1                queenfish  3.2619755105
## 6053     Benthopelagic   22          starry rockfish  2.9537607061
## 6054     Benthopelagic   20            white croaker  3.1867091751
## 6055     Benthopelagic    4       california corbina  2.9443595234
## 6056     Benthopelagic    8              black perch  3.5355393262
## 6057           Benthic   20         hornyhead turbot  2.9103865271
## 6058          Midwater   21                kelp bass  2.6976229485
## 6059     Benthopelagic    4              black perch  2.3109623960
## 6060     Benthopelagic    4            white croaker  3.7762325575
## 6061     Benthopelagic    4              black perch  2.6042086421
## 6062     Benthopelagic   21        yellowfin croaker  2.9127279964
## 6063     Benthopelagic    1                  opaleye  3.6024799628
## 6064           Benthic   21         hornyhead turbot  3.1525990703
## 6065     Benthopelagic    4         barred surfperch  3.2067350563
## 6066          Midwater   11                kelp bass  3.0155690470
## 6067           Pelagic    5             market squid  3.1043775949
## 6068           Benthic    1           diamond turbot  3.0014675196
## 6069     Benthopelagic    1            white croaker  2.4915322228
## 6070     Benthopelagic    4              black perch  3.3199127684
## 6071           Pelagic    6             market squid  2.9018289620
## 6072     Benthopelagic   11            white croaker  2.9786705525
## 6073     Benthopelagic    9            white croaker  2.9734693354
## 6074           Pelagic   21         northern anchovy  2.6844459262
## 6075     Benthopelagic   11           brown rockfish  2.6466514343
## 6076     Benthopelagic   11          ocean whitefish  3.1889033743
## 6077           Benthic   17         hornyhead turbot  2.9219688738
## 6078           Benthic   11  california scorpionfish  3.1156721204
## 6079           Benthic   20           diamond turbot  2.5088709609
## 6080     Benthopelagic    4        spotted sand bass  2.2995600608
## 6081          Midwater   11           olive rockfish  2.6054387722
## 6082     Benthopelagic    1              black perch  2.5550399220
## 6083     Benthopelagic    5            white croaker  3.0094915817
## 6084           Pelagic    5         northern anchovy  3.2121598587
## 6085     Benthopelagic   11        yellowfin croaker  3.5140698134
## 6086          Midwater   16                kelp bass  2.9272250753
## 6087     Benthopelagic   11            white croaker  2.1929504702
## 6088     Benthopelagic   11              black perch  2.6607572236
## 6089          Midwater   18                kelp bass  3.2287596791
## 6090     Benthopelagic    3              black perch  3.1465328744
## 6091          Midwater    1                kelp bass  2.5367210676
## 6092     Benthopelagic   15            white croaker  2.6100814474
## 6093     Benthopelagic   22         barred sand bass  3.2985479839
## 6094     Benthopelagic    1            white croaker  2.3777127847
## 6095     Benthopelagic   21        yellowfin croaker  2.6437944965
## 6096           Benthic    5  california scorpionfish  2.1810946373
## 6097           Pelagic   21            chub mackerel  2.0963329666
## 6098           Benthic    1           spotted turbot  3.4190188834
## 6099     Benthopelagic   11          gopher rockfish  3.0055682088
## 6100     Benthopelagic    1            white croaker  2.7366433811
## 6101     Benthopelagic    5       california corbina  3.3016484447
## 6102     Benthopelagic    1              black perch  2.9067127774
## 6103     Benthopelagic   11          spotfin croaker  2.6749255588
## 6104     Benthopelagic    8          copper rockfish  2.6551024107
## 6105     Benthopelagic    4        yellowfin croaker  2.5777790724
## 6106     Benthopelagic   12            white croaker  3.0594466807
## 6107          Midwater    8      yellowtail rockfish  2.5452156256
## 6108          Midwater    3                kelp bass  3.0797732102
## 6109     Benthopelagic    5          spotfin croaker  2.7479308162
## 6110           Pelagic    5          pacific sardine  3.3180709498
## 6111           Benthic    5  california scorpionfish  2.7193945495
## 6112     Benthopelagic    3         barred surfperch  2.7822839609
## 6113           Pelagic    6          pacific sardine  3.1900278636
## 6114     Benthopelagic   11       vermilion rockfish  3.2550472871
## 6115           Pelagic    5         northern anchovy  2.8928801996
## 6116           Pelagic   11            chub mackerel  2.7067996801
## 6117           Pelagic   21            chub mackerel  3.1038361132
## 6118          Midwater    5                top smelt  2.8839128064
## 6119          Midwater    2                queenfish  3.0982706551
## 6120     Benthopelagic    4            white croaker  2.9103172960
## 6121     Benthopelagic   18              black perch  3.0670104248
## 6122          Midwater   21                kelp bass  3.1944117364
## 6123     Benthopelagic    4          copper rockfish  2.6161797782
## 6124     Benthopelagic   20              black perch  3.0321323176
## 6125           Benthic    1         speckled sanddab  3.0664299064
## 6126     Benthopelagic   18            white croaker  3.2460514211
## 6127     Benthopelagic   11         barred sand bass  3.3465391440
## 6128     Benthopelagic   11          spotfin croaker  3.3242442649
## 6129           Pelagic   11            chub mackerel  2.3322373169
## 6130           Pelagic    5            chub mackerel  3.2606411037
## 6131           Benthic   18         hornyhead turbot  3.2200300456
## 6132           Benthic   12  california scorpionfish  2.2752616210
## 6133           Benthic    1             fantail sole  3.0339596887
## 6134          Midwater   21                kelp bass  2.8232141814
## 6135     Benthopelagic    3          white surfperch  2.3712679478
## 6136     Benthopelagic   13       vermilion rockfish  3.1167162580
## 6137     Benthopelagic   18            white croaker  2.8110213244
## 6138          Midwater    1         shiner surfperch  2.9976090262
## 6139     Benthopelagic   14            white croaker  2.9739253289
## 6140          Midwater   11                kelp bass  3.1689813749
## 6141           Benthic    5         speckled sanddab  3.5296024438
## 6142           Benthic   17  california scorpionfish  3.5232110924
## 6143     Benthopelagic   21       california corbina  3.2293956419
## 6144           Benthic   11  california scorpionfish  3.3283031617
## 6145           Benthic   17         hornyhead turbot  2.7347530016
## 6146     Benthopelagic   12              black perch  2.4040978797
## 6147     Benthopelagic    1            white croaker  3.1460681245
## 6148     Benthopelagic    5       california corbina  2.9444196874
## 6149     Benthopelagic    4              black perch  2.6579814748
## 6150     Benthopelagic    5            white croaker  3.0310493832
## 6151     Benthopelagic    1            white croaker  2.7339763180
## 6152           Benthic   14         hornyhead turbot  2.5158061707
## 6153           Benthic    4    shovelnose guitarfish  2.1248569384
## 6154          Midwater    1        walleye surfperch  3.2801070498
## 6155          Midwater   18                kelp bass  2.5113611845
## 6156     Benthopelagic    5            white croaker  3.3605437678
## 6157     Benthopelagic    5         barred sand bass  2.9455534428
## 6158          Midwater    2                kelp bass  2.6889073871
## 6159     Benthopelagic   21         barred sand bass  3.4189694737
## 6160     Benthopelagic   12       vermilion rockfish  2.4537484635
## 6161     Benthopelagic    2       quillback rockfish  3.6214671793
## 6162     Benthopelagic   21            white croaker  3.3084416158
## 6163     Benthopelagic   16       vermilion rockfish  2.8347488794
## 6164     Benthopelagic    3              black perch  3.3754127536
## 6165           Benthic    8  california scorpionfish  3.1139831156
## 6166           Pelagic    5          pacific sardine  3.4899661115
## 6167           Benthic    5  california scorpionfish  3.3631452852
## 6168     Benthopelagic    8          copper rockfish  2.7515783881
## 6169           Pelagic    5          pacific sardine  3.3640579687
## 6170     Benthopelagic    2            white croaker  2.6039144971
## 6171     Benthopelagic    1            white croaker  3.4023093704
## 6172     Benthopelagic   21            leopard shark  3.2091389987
## 6173     Benthopelagic   14              black perch  2.6582059384
## 6174     Benthopelagic   16       vermilion rockfish  2.3195980688
## 6175     Benthopelagic   10       vermilion rockfish  2.6410543827
## 6176          Midwater   21                kelp bass  2.7869534256
## 6177     Benthopelagic    1            rosy rockfish  3.1575918115
## 6178          Midwater    3         shiner surfperch  3.1132469387
## 6179     Benthopelagic   11            white croaker  3.0967965142
## 6180     Benthopelagic    1         barred surfperch  2.7419267135
## 6181          Midwater    1         shiner surfperch  3.1232003316
## 6182           Pelagic   21            chub mackerel  3.7218695440
## 6183     Benthopelagic   16       vermilion rockfish  2.6739023323
## 6184     Benthopelagic    7        speckled rockfish  3.3344826703
## 6185          Midwater    4         shiner surfperch  2.7830438300
## 6186     Benthopelagic   11       vermilion rockfish  3.2500863015
## 6187           Pelagic    5            chub mackerel  3.0674588609
## 6188          Midwater   14                kelp bass  3.3311186314
## 6189     Benthopelagic    3              black perch  2.9406008898
## 6190     Benthopelagic    5            black croaker  2.8423269058
## 6191          Midwater    5                top smelt  3.0149651784
## 6192          Midwater   11                top smelt  3.0259799495
## 6193           Benthic   10         hornyhead turbot  3.6629320368
## 6194           Pelagic    5             market squid  2.8983845165
## 6195     Benthopelagic   12              black perch  3.8932326292
## 6196     Benthopelagic    1       california corbina  3.0397865874
## 6197     Benthopelagic    3         barred surfperch  2.7806316240
## 6198     Benthopelagic   19       vermilion rockfish  2.9917668397
## 6199     Benthopelagic   15        speckled rockfish  2.7389830437
## 6200           Pelagic    5          pacific sardine  3.6605995637
## 6201     Benthopelagic    4         barred surfperch  2.7747876184
## 6202     Benthopelagic   11              black perch  3.1249932681
## 6203          Midwater   11                kelp bass  3.2372411904
## 6204     Benthopelagic   11         barred surfperch  2.9633308528
## 6205           Pelagic    5         northern anchovy  3.4616307182
## 6206           Pelagic    5          pacific sardine  2.9468144404
## 6207     Benthopelagic   11            white croaker  2.6109959147
## 6208     Benthopelagic   19            white croaker  3.0509619811
## 6209     Benthopelagic    3              black perch  2.9932587771
## 6210     Benthopelagic   19       vermilion rockfish  3.4256758881
## 6211     Benthopelagic   12           brown rockfish  3.1257007178
## 6212     Benthopelagic    6          copper rockfish  2.4115824226
## 6213           Pelagic    5             market squid  2.9500430790
## 6214     Benthopelagic   22              black perch  2.6343430755
## 6215           Benthic   20       california halibut  3.1755845294
## 6216     Benthopelagic    2        spotted sand bass  2.9678820444
## 6217           Benthic    1           diamond turbot  2.8209493383
## 6218           Benthic   23         hornyhead turbot  3.1054053365
## 6219     Benthopelagic    5         barred sand bass  3.5522266383
## 6220           Benthic    4    california lizardfish  2.9516577226
## 6221     Benthopelagic   11 brown smooth-hound shark  2.9418494901
## 6222     Benthopelagic   21            white croaker  2.6167530566
## 6223     Benthopelagic    4            flag rockfish  3.0490352616
## 6224           Benthic   12         hornyhead turbot  2.7059812193
## 6225           Benthic    4    shovelnose guitarfish  3.3489813679
## 6226     Benthopelagic   14            white croaker  3.1609334407
## 6227     Benthopelagic    5     california sheephead  2.9353581586
## 6228           Pelagic    5         northern anchovy  3.1361753624
## 6229     Benthopelagic   20       vermilion rockfish  2.7345049207
## 6230     Benthopelagic    2         barred surfperch  3.4104109416
## 6231          Midwater   17      squarespot rockfish  3.1514919805
## 6232     Benthopelagic   18       vermilion rockfish  2.8037838999
## 6233     Benthopelagic   11            white croaker  2.8758491133
## 6234     Benthopelagic    4         barred sand bass  2.9300908622
## 6235          Midwater    4                top smelt  3.1094426109
## 6236           Benthic   17         hornyhead turbot  2.5519152809
## 6237     Benthopelagic   11            white croaker  2.8685209127
## 6238     Benthopelagic   11         barred surfperch  2.8637590939
## 6239           Pelagic    5             market squid  2.9554699466
## 6240           Benthic   19  california scorpionfish  3.1618811788
## 6241           Pelagic    5             market squid  2.8186330964
## 6242     Benthopelagic   10         barred sand bass  3.0096857193
## 6243           Pelagic   11            chub mackerel  2.9252445648
## 6244     Benthopelagic   11              black perch  3.1107170859
## 6245     Benthopelagic   22              black perch  3.4283804464
## 6246     Benthopelagic   12            white croaker  2.5891574977
## 6247           Benthic    5    shovelnose guitarfish  2.9693349938
## 6248     Benthopelagic   20       california corbina  3.3245693243
## 6249     Benthopelagic    5                  opaleye  3.1904938642
## 6250     Benthopelagic   16       vermilion rockfish  2.4572100636
## 6251     Benthopelagic    1        spotted sand bass  2.9710696603
## 6252     Benthopelagic    3        rainbow surfperch  3.3889256383
## 6253     Benthopelagic   17            white croaker  2.5884748267
## 6254           Benthic   22  california scorpionfish  2.6659686676
## 6255          Midwater   21                kelp bass  2.3503211499
## 6256           Pelagic    5             market squid  2.4781051634
## 6257     Benthopelagic   21            white croaker  2.9049760535
## 6258     Benthopelagic    1        rainbow surfperch  2.5892061263
## 6259     Benthopelagic    4       california corbina  2.8562685990
## 6260           Pelagic   21            chub mackerel  2.5871217796
## 6261     Benthopelagic   20            white croaker  2.5344886508
## 6262           Pelagic    6          pacific sardine  3.1474008629
## 6263          Midwater    4           striped mullet  3.1775183415
## 6264           Pelagic   21            chub mackerel  2.8971213580
## 6265           Benthic    1         speckled sanddab  2.4862895560
## 6266     Benthopelagic   11            white croaker  2.5652058567
## 6267           Benthic    8         hornyhead turbot  2.7424574356
## 6268          Midwater    4         shiner surfperch  2.6209155880
## 6269     Benthopelagic   10       vermilion rockfish  3.2285368110
## 6270     Benthopelagic    1        rainbow surfperch  2.8273711266
## 6271          Midwater   11         shiner surfperch  2.3840986104
## 6272     Benthopelagic    5            leopard shark  3.3432041260
## 6273           Pelagic   21            chub mackerel  2.8829428951
## 6274     Benthopelagic   11              black perch  2.9293005476
## 6275          Midwater    4         shiner surfperch  2.9256001986
## 6276     Benthopelagic   14              black perch  2.8220334123
## 6277          Midwater   11                kelp bass  2.7760718064
## 6278     Benthopelagic   18            white croaker  2.8536681860
## 6279          Midwater    4                top smelt  2.6327393027
## 6280     Benthopelagic    5   gray smoothhound shark  3.8171851237
## 6281     Benthopelagic   23            white croaker  3.1823715141
## 6282           Pelagic   21           slough anchovy  2.7557602887
## 6283          Midwater    1                queenfish  2.5883157938
## 6284     Benthopelagic   21            white croaker  2.5479662063
## 6285          Midwater    1                kelp bass  3.0815669307
## 6286     Benthopelagic   24       vermilion rockfish  3.0038969589
## 6287           Pelagic   21            chub mackerel  2.3680465634
## 6288           Pelagic    5          pacific sardine  2.4190472060
## 6289     Benthopelagic    4       california corbina  2.5723438670
## 6290     Benthopelagic    3       california corbina  2.4411318583
## 6291     Benthopelagic   16              black perch  2.7499839385
## 6292           Pelagic    5          pacific sardine  3.3928908746
## 6293           Pelagic   21            chub mackerel  2.9198988248
## 6294     Benthopelagic   21         barred sand bass  2.8962236146
## 6295           Pelagic    6          pacific sardine  2.8765712275
## 6296     Benthopelagic    5        yellowfin croaker  2.5577824576
## 6297           Benthic    1  california scorpionfish  2.8061917886
## 6298          Midwater    4         shiner surfperch  2.8505618740
## 6299           Benthic    5  california scorpionfish  2.7943961073
## 6300     Benthopelagic    5       california corbina  2.3485457802
## 6301           Benthic   19         hornyhead turbot  2.9373356196
## 6302     Benthopelagic    2              black perch  3.0970826676
## 6303     Benthopelagic   21        spotted sand bass  2.7820030538
## 6304     Benthopelagic    7       vermilion rockfish  2.9635790156
## 6305     Benthopelagic    3              black perch  2.5843524674
## 6306           Pelagic   11            chub mackerel  2.7236920926
## 6307     Benthopelagic   22            white croaker  2.7616753122
## 6308          Midwater    2         shiner surfperch  2.7408607146
## 6309     Benthopelagic   11   gray smoothhound shark  2.0197816998
## 6310     Benthopelagic   19            white croaker  3.4364129708
## 6311     Benthopelagic   11            white croaker  2.9356788186
## 6312     Benthopelagic    5            white croaker  3.2110704474
## 6313     Benthopelagic   21          white surfperch  2.4241318868
## 6314          Midwater    5                 halfmoon  3.0269398440
## 6315          Midwater   10                kelp bass  3.2226777121
## 6316          Midwater    1                kelp bass  3.0610359269
## 6317          Midwater    3         shiner surfperch  2.7332714170
## 6318     Benthopelagic   10            white croaker  2.8376245707
## 6319          Midwater    5                queenfish  2.7257368794
## 6320     Benthopelagic    1            white croaker  3.0854808593
## 6321     Benthopelagic    4              black perch  3.0239653658
## 6322     Benthopelagic    1         barred sand bass  1.9562283125
## 6323          Midwater    5                kelp bass  2.7777951588
## 6324           Pelagic    5          pacific sardine  3.0192781516
## 6325     Benthopelagic   21         barred sand bass  2.9156609702
## 6326     Benthopelagic    4           pile surfperch  3.5515794726
## 6327          Midwater   14                kelp bass  2.9409590880
## 6328     Benthopelagic   16          copper rockfish  3.2088553534
## 6329     Benthopelagic    3        spotted sand bass  3.2004569882
## 6330          Midwater   16                kelp bass  2.9594338512
## 6331          Midwater    4                kelp bass  2.9052521637
## 6332     Benthopelagic   14              black perch  2.7182429321
## 6333           Pelagic    6          pacific sardine  3.4040580081
## 6334     Benthopelagic   11              black perch  2.3719701268
## 6335     Benthopelagic    4           pile surfperch  3.4269774938
## 6336     Benthopelagic    5        yellowfin croaker  2.9610613579
## 6337           Benthic   14         hornyhead turbot  2.4390792891
## 6338           Pelagic    5          pacific sardine  2.4070754924
## 6339           Pelagic   21            chub mackerel  2.6960221003
## 6340          Midwater   21                kelp bass  3.8382859502
## 6341     Benthopelagic   10              black perch  2.6720297902
## 6342          Midwater   21                kelp bass  3.1970857113
## 6343           Pelagic    5          pacific sardine  2.9464740532
## 6344          Midwater    3         shiner surfperch  2.8529115652
## 6345     Benthopelagic    8         barred sand bass  2.2751651121
## 6346     Benthopelagic   11         barred sand bass  2.8062806802
## 6347          Midwater    1        walleye surfperch  3.1478432427
## 6348           Benthic   20  california scorpionfish  2.9400723468
## 6349           Benthic   23         hornyhead turbot  3.2976535248
## 6350           Benthic   19  california scorpionfish  3.1167483440
## 6351     Benthopelagic   12           brown rockfish  2.7396732892
## 6352     Benthopelagic   11          white surfperch  2.8896629389
## 6353     Benthopelagic    5       california corbina  3.4077219423
## 6354     Benthopelagic    4              black perch  2.1668643630
## 6355     Benthopelagic    5            white croaker  2.7135162453
## 6356     Benthopelagic    3        spotted sand bass  2.5670439600
## 6357     Benthopelagic   20            white croaker  2.6963264365
## 6358          Midwater    1         shiner surfperch  2.8337922236
## 6359           Benthic   20         hornyhead turbot  3.0389640101
## 6360           Benthic    1           spotted turbot  2.9466680104
## 6361           Benthic   23         hornyhead turbot  3.3799582307
## 6362     Benthopelagic   14       vermilion rockfish  2.8098330874
## 6363           Pelagic    5             market squid  2.5403645935
## 6364     Benthopelagic    8            white croaker  2.5121370499
## 6365           Pelagic    5             market squid  2.9242786351
## 6366     Benthopelagic    5       vermilion rockfish  2.2884428902
## 6367     Benthopelagic   11            white croaker  2.9501684398
## 6368           Benthic    3           diamond turbot  2.7024801771
## 6369           Pelagic   21         northern anchovy  2.7810363724
## 6370           Benthic    8         hornyhead turbot  2.6168265181
## 6371     Benthopelagic    4         barred sand bass  3.1345142782
## 6372          Midwater    3                jacksmelt  3.0213648299
## 6373          Midwater   21                kelp bass  3.0758787714
## 6374     Benthopelagic   11        yellowfin croaker  2.9643618072
## 6375          Midwater    8                kelp bass  2.3280810088
## 6376     Benthopelagic    9       vermilion rockfish  3.1842250615
## 6377          Midwater   21                kelp bass  2.4711191704
## 6378     Benthopelagic    1         barred surfperch  2.8826572944
## 6379          Midwater   11                top smelt  3.2026995081
## 6380     Benthopelagic    5            white croaker  2.7159822736
## 6381     Benthopelagic    4         barred surfperch  2.7330127112
## 6382     Benthopelagic   21        yellowfin croaker  2.8129139724
## 6383     Benthopelagic    5         barred sand bass  3.1580130485
## 6384           Pelagic   21            chub mackerel  2.7520694407
## 6385          Midwater   21                kelp bass  2.8951953347
## 6386     Benthopelagic    8            white croaker  2.3807281724
## 6387           Pelagic   21            chub mackerel  2.7978156781
## 6388     Benthopelagic   16        speckled rockfish  2.7534923990
## 6389     Benthopelagic    5         barred sand bass  2.7746070554
## 6390           Pelagic   21           slough anchovy  2.3672955709
## 6391     Benthopelagic   11            rosy rockfish  3.0618398514
## 6392           Benthic    4           diamond turbot  3.0114382453
## 6393           Benthic   16  california scorpionfish  3.1415418103
## 6394     Benthopelagic   20       vermilion rockfish  3.1584729050
## 6395          Midwater   20                kelp bass  2.5281451529
## 6396          Midwater   21                kelp bass  2.6379298561
## 6397           Benthic   13         hornyhead turbot  2.8060371193
## 6398           Pelagic   21            chub mackerel  2.7241883481
## 6399     Benthopelagic   14       vermilion rockfish  3.1121297282
## 6400          Midwater    5                kelp bass  2.8328675435
## 6401           Benthic   10  california scorpionfish  6.7887849499
## 6402     Benthopelagic    5         barred sand bass  6.7629207280
## 6403          Midwater    4                kelp bass  6.6785433653
## 6404     Benthopelagic    1        yellowfin croaker  7.3037039578
## 6405     Benthopelagic   10           brown rockfish  6.9457320994
## 6406           Benthic    5          longfin sanddab  7.0918299271
## 6407     Benthopelagic    3        yellowfin croaker  6.7094347785
## 6408     Benthopelagic   11            white croaker  6.5856983205
## 6409          Midwater   20                kelp bass  7.0318281949
## 6410           Benthic    5       california halibut  6.6978968040
## 6411           Pelagic    5          pacific sardine  6.6929308485
## 6412          Midwater   21                kelp bass  6.6798818924
## 6413     Benthopelagic    8            white croaker  6.7938531166
## 6414     Benthopelagic    3       california corbina  6.8978026170
## 6415     Benthopelagic    4        spotted sand bass  6.6909877006
## 6416           Benthic   10  california scorpionfish  6.8422662795
## 6417           Benthic    5  california scorpionfish  6.7838064922
## 6418          Midwater   11                top smelt  6.5763053692
## 6419     Benthopelagic   17            white croaker  6.6239050859
## 6420     Benthopelagic    5            white croaker  6.9056061724
## 6421           Pelagic   21         northern anchovy  7.2146647848
## 6422           Pelagic    5          pacific sardine  6.7351166501
## 6423     Benthopelagic    1       california corbina  6.9510638407
## 6424          Midwater    5                kelp bass  6.7979900540
## 6425     Benthopelagic   20            white croaker  6.9029055710
## 6426     Benthopelagic    3            rosy rockfish  6.9294572149
## 6427     Benthopelagic   21        yellowfin croaker  6.9961194905
## 6428     Benthopelagic    1         barred surfperch  6.9541106809
## 6429     Benthopelagic   14         barred sand bass  7.2256986713
## 6430     Benthopelagic    5       vermilion rockfish  6.8289415355
## 6431          Midwater   21                kelp bass  6.6054200783
## 6432     Benthopelagic    3           pile surfperch  6.8091019330
## 6433     Benthopelagic   19       vermilion rockfish  6.7345815362
## 6434           Pelagic    5            chub mackerel  6.6229832295
## 6435          Midwater   21                kelp bass  7.0845516798
## 6436          Midwater    5                queenfish  6.5675201533
## 6437     Benthopelagic   11            white croaker  6.7806381780
## 6438           Benthic    1           diamond turbot  6.8358114145
## 6439           Benthic   22         hornyhead turbot  7.1445022286
## 6440          Midwater    5                kelp bass  6.9673794140
## 6441     Benthopelagic   21          spotfin croaker  6.8536215262
## 6442           Pelagic    5            chub mackerel  6.7976151050
## 6443     Benthopelagic    5       vermilion rockfish  6.6478336506
## 6444     Benthopelagic    1         barred surfperch  6.9267597718
## 6445     Benthopelagic   11            white croaker  6.8264665120
## 6446     Benthopelagic    4         barred sand bass  7.0693450858
## 6447     Benthopelagic   17       vermilion rockfish  6.7365650669
## 6448     Benthopelagic   11          white surfperch  6.8926453279
## 6449     Benthopelagic    8          copper rockfish  6.7178574743
## 6450          Midwater   11            kelp rockfish  6.6321680212
## 6451     Benthopelagic    5            white croaker  6.6467393860
## 6452     Benthopelagic    4         barred surfperch  6.9506862858
## 6453     Benthopelagic    4       california corbina  7.0095660190
## 6454           Benthic   20       california halibut  6.9509333166
## 6455           Benthic    3           diamond turbot  6.6090018531
## 6456     Benthopelagic   12         barred sand bass  6.6754956230
## 6457          Midwater    1                 halfmoon  6.8357253046
## 6458     Benthopelagic   13       vermilion rockfish  6.9347422541
## 6459           Pelagic    5        pacific barracuda  6.7880271403
## 6460     Benthopelagic    3              black perch  6.9545349755
## 6461           Pelagic   21            chub mackerel  6.8999758852
## 6462     Benthopelagic   14            white croaker  6.8827494788
## 6463     Benthopelagic   24       vermilion rockfish  7.0646145563
## 6464     Benthopelagic   20       california corbina  6.9011528080
## 6465     Benthopelagic   21         barred sand bass  6.5179665683
## 6466     Benthopelagic   11            white croaker  7.1231345342
## 6467          Midwater   21                kelp bass  7.0137528471
## 6468          Midwater    1         shiner surfperch  6.5545476194
## 6469          Midwater    5         shiner surfperch  6.9093302270
## 6470     Benthopelagic   11           brown rockfish  6.8851362659
## 6471     Benthopelagic    5         barred sand bass  7.0074091310
## 6472           Pelagic    5          pacific sardine  6.8976538645
## 6473           Benthic   16         hornyhead turbot  6.8057549738
## 6474          Midwater    1         shiner surfperch  7.1326054315
## 6475     Benthopelagic    5                  opaleye  6.9146399464
## 6476     Benthopelagic   20            white croaker  7.0801741744
## 6477     Benthopelagic   21            white croaker  6.5927797956
## 6478     Benthopelagic   11          spotfin croaker  6.6968585551
## 6479           Benthic   22  california scorpionfish  6.5347824770
## 6480           Pelagic    5          pacific sardine  6.9838462823
## 6481     Benthopelagic    1                  opaleye  6.8374772553
## 6482          Midwater    1         shiner surfperch  6.8212775708
## 6483     Benthopelagic   11         barred surfperch  6.8434121115
## 6484          Midwater   11         shiner surfperch  6.8610897588
## 6485     Benthopelagic   12            white croaker  6.8672156496
## 6486          Midwater   21                queenfish  6.5910833056
## 6487           Benthic    4    shovelnose guitarfish  6.8323617606
## 6488     Benthopelagic   21         barred sand bass  6.7759912911
## 6489     Benthopelagic   10            white croaker  7.3003876730
## 6490     Benthopelagic    1       california corbina  7.1526004104
## 6491     Benthopelagic   11            white croaker  6.8589915688
## 6492          Midwater   11                kelp bass  6.9217983194
## 6493     Benthopelagic    3        spotted sand bass  7.0560400702
## 6494     Benthopelagic    3          copper rockfish  6.9747183574
## 6495           Pelagic   11            chub mackerel  6.9163553832
## 6496           Pelagic    5             market squid  6.9303187814
## 6497           Pelagic   11            chub mackerel  6.9081066361
## 6498           Pelagic   21            chub mackerel  6.9088911796
## 6499           Benthic   22  california scorpionfish  6.7530907441
## 6500          Midwater    4         shiner surfperch  6.6851909183
## 6501           Benthic   18  california scorpionfish  6.7858470390
## 6502     Benthopelagic    5                  opaleye  6.9164332208
## 6503          Midwater   21                queenfish  6.8659451996
## 6504     Benthopelagic    5          copper rockfish  6.8654636119
## 6505     Benthopelagic   11         barred sand bass  6.7996334484
## 6506     Benthopelagic   21        spotted sand bass  6.6533923773
## 6507     Benthopelagic   22            white croaker  6.3716437996
## 6508           Pelagic    5         northern anchovy  6.7973247837
## 6509     Benthopelagic   21            leopard shark  6.8009755407
## 6510          Midwater   11         shiner surfperch  6.7349475239
## 6511     Benthopelagic   21            white croaker  6.9355095589
## 6512           Benthic    5       california halibut  7.1501905279
## 6513          Midwater   11                kelp bass  6.7449283974
## 6514          Midwater   18                kelp bass  6.8336512128
## 6515     Benthopelagic    5            white croaker  6.9759635056
## 6516     Benthopelagic    1         barred surfperch  7.1713238585
## 6517     Benthopelagic   20            white croaker  6.8699795462
## 6518     Benthopelagic    4 brown smooth-hound shark  6.3976107435
## 6519     Benthopelagic   11         barred sand bass  6.7568092832
## 6520           Benthic   15         hornyhead turbot  6.8413924213
## 6521           Benthic    5  california scorpionfish  7.1465283986
## 6522     Benthopelagic   14       vermilion rockfish  7.1117009086
## 6523           Pelagic    5             market squid  7.0840733867
## 6524     Benthopelagic    5            black croaker  6.8743941306
## 6525     Benthopelagic    1         barred surfperch  6.7705272149
## 6526          Midwater    2        walleye surfperch  6.8888632802
## 6527     Benthopelagic   16       vermilion rockfish  6.6211291769
## 6528           Pelagic    4            chub mackerel  6.6983750979
## 6529     Benthopelagic    1        yellowfin croaker  6.4306387258
## 6530          Midwater    5                kelp bass  6.8155732973
## 6531     Benthopelagic    6          copper rockfish  7.0988564087
## 6532           Benthic    9         hornyhead turbot  6.9977816509
## 6533     Benthopelagic   13           brown rockfish  6.6001463623
## 6534     Benthopelagic    4            white croaker  7.1293221347
## 6535     Benthopelagic   21        spotted sand bass  7.1122967520
## 6536           Pelagic    6             market squid  6.5162600180
## 6537     Benthopelagic   11            white croaker  6.7777866143
## 6538     Benthopelagic   16       vermilion rockfish  6.7862564157
## 6539           Benthic    5           diamond turbot  6.8853409035
## 6540          Midwater    5                kelp bass  6.8109626187
## 6541     Benthopelagic    3        rainbow surfperch  6.9718127144
## 6542           Benthic   21       california halibut  6.8190940006
## 6543     Benthopelagic   21            white croaker  6.9848080503
## 6544     Benthopelagic   11          white surfperch  6.9887005110
## 6545     Benthopelagic    4        yellowfin croaker  7.0758800232
## 6546           Pelagic    5         northern anchovy  6.5413253814
## 6547           Pelagic   21         northern anchovy  6.8070258460
## 6548     Benthopelagic   21        yellowfin croaker  7.0689239978
## 6549     Benthopelagic   13       vermilion rockfish  6.9186339241
## 6550     Benthopelagic   11         barred sand bass  6.6380924402
## 6551     Benthopelagic    1       california corbina  6.9971184016
## 6552     Benthopelagic    5       vermilion rockfish  6.6347461333
## 6553          Midwater    1                 halfmoon  6.7843520506
## 6554     Benthopelagic   23          starry rockfish  6.8449614440
## 6555     Benthopelagic    9          copper rockfish  7.1253876815
## 6556     Benthopelagic    5            white croaker  6.8903808752
## 6557     Benthopelagic   12         barred sand bass  7.0707006350
## 6558     Benthopelagic   23            white croaker  6.8491055933
## 6559           Pelagic    5            chub mackerel  6.9794969191
## 6560          Midwater    4                kelp bass  6.8975531145
## 6561           Pelagic    5         northern anchovy  6.8126366294
## 6562     Benthopelagic    1        spotted sand bass  6.6693241222
## 6563           Benthic   16         hornyhead turbot  7.0806719798
## 6564          Midwater   11                kelp bass  6.6304682155
## 6565           Pelagic   21            chub mackerel  6.9290323512
## 6566     Benthopelagic    1          ocean whitefish  6.8516880246
## 6567     Benthopelagic    1       california corbina  7.0570635912
## 6568     Benthopelagic   21        spotted sand bass  6.8973542512
## 6569           Pelagic    5          pacific sardine  7.0742667233
## 6570     Benthopelagic    4                  opaleye  6.8398729707
## 6571           Pelagic    6          pacific sardine  7.1926246567
## 6572           Pelagic   11            chub mackerel  6.7504774125
## 6573          Midwater   21                kelp bass  7.1215463537
## 6574     Benthopelagic    1     california sheephead  6.9225410706
## 6575          Midwater   10                kelp bass  7.1784168369
## 6576     Benthopelagic   13            white croaker  6.9561242655
## 6577           Pelagic    5            chub mackerel  6.8332497783
## 6578           Benthic   15         hornyhead turbot  6.6520009307
## 6579     Benthopelagic   24          starry rockfish  6.9005749134
## 6580     Benthopelagic   14       vermilion rockfish  6.8615580686
## 6581     Benthopelagic   22            white croaker  6.9408122139
## 6582           Benthic    5    shovelnose guitarfish  6.7242655082
## 6583           Benthic   12  california scorpionfish  6.6613908527
## 6584     Benthopelagic   11   gray smoothhound shark  6.6449478899
## 6585     Benthopelagic    3        rainbow surfperch  6.4391637175
## 6586     Benthopelagic    1                  opaleye  6.9500493630
## 6587           Pelagic    5             market squid  6.9467865918
## 6588           Pelagic    4            chub mackerel  6.5746097960
## 6589           Pelagic    5          pacific sardine  6.6211315453
## 6590     Benthopelagic   15            white croaker  6.5487046249
## 6591           Pelagic    5             market squid  6.6961181732
## 6592           Pelagic   21            chub mackerel  6.7924502977
## 6593     Benthopelagic   11           brown rockfish  7.1423426196
## 6594     Benthopelagic   20        yellowfin croaker  6.6754946461
## 6595     Benthopelagic   22         barred sand bass  7.1519139937
## 6596           Pelagic    5          pacific sardine  6.5695942934
## 6597           Benthic   13         hornyhead turbot  6.7732776031
## 6598          Midwater   12                kelp bass  6.7888652768
## 6599     Benthopelagic   22            white croaker  6.6714645351
## 6600           Pelagic    6             market squid  6.6138466563
## 6601           Pelagic    5          pacific sardine  6.9484269554
## 6602     Benthopelagic    4       california corbina  6.8938710223
## 6603     Benthopelagic   21        spotted sand bass  6.7505659996
## 6604     Benthopelagic    6    greenspotted rockfish  7.1615506907
## 6605           Pelagic    5             market squid  6.9729578634
## 6606     Benthopelagic    4            white croaker  7.1143453005
## 6607     Benthopelagic    1       california corbina  7.0354289733
## 6608          Midwater    4         shiner surfperch  6.8421173280
## 6609     Benthopelagic   23       vermilion rockfish  7.0968296734
## 6610     Benthopelagic   20       california corbina  6.7807116367
## 6611           Pelagic    5            chub mackerel  6.9130382372
## 6612     Benthopelagic   21         barred sand bass  6.9780716027
## 6613           Benthic    5  california scorpionfish  6.7565525613
## 6614           Pelagic    5             market squid  6.9352961852
## 6615     Benthopelagic   21        yellowfin croaker  6.5757786457
## 6616           Benthic    5          longfin sanddab  7.0130619386
## 6617     Benthopelagic    5       vermilion rockfish  6.7525974590
## 6618          Midwater   13     chilipepper rockfish  6.9701209882
## 6619     Benthopelagic    4        yellowfin croaker  7.1148363305
## 6620     Benthopelagic   21        yellowfin croaker  6.8224367776
## 6621     Benthopelagic    1        yellowfin croaker  6.7872272845
## 6622     Benthopelagic    3                  opaleye  6.7960624279
## 6623     Benthopelagic   11        yellowfin croaker  6.6880337722
## 6624           Benthic   15         hornyhead turbot  6.8619707931
## 6625          Midwater    3         shiner surfperch  6.7521039303
## 6626     Benthopelagic    3        spotted sand bass  6.4660715968
## 6627           Benthic   13         hornyhead turbot  6.8583348783
## 6628     Benthopelagic    7       vermilion rockfish  7.0633227079
## 6629          Midwater    3                kelp bass  6.8536975363
## 6630     Benthopelagic   22       vermilion rockfish  6.6476814546
## 6631     Benthopelagic   11          gopher rockfish  7.1858308569
## 6632     Benthopelagic    4         barred sand bass  7.0298913785
## 6633     Benthopelagic    5         barred sand bass  6.8796064031
## 6634          Midwater   10                kelp bass  6.5329806162
## 6635           Benthic    4    california lizardfish  6.7388314164
## 6636     Benthopelagic    8            white croaker  6.5804870881
## 6637          Midwater   11         shiner surfperch  6.6841986941
## 6638     Benthopelagic    1     california sheephead  7.0404015783
## 6639     Benthopelagic    5            white croaker  6.3384802525
## 6640     Benthopelagic   11            white croaker  7.1487666962
## 6641           Benthic    1           diamond turbot  7.1091666181
## 6642     Benthopelagic    6       vermilion rockfish  6.5423241292
## 6643           Pelagic   21            chub mackerel  6.6863802559
## 6644          Midwater    4           striped mullet  7.2212185916
## 6645           Benthic   19  california scorpionfish  6.6046778662
## 6646          Midwater    1         shiner surfperch  6.6139269341
## 6647     Benthopelagic   11         barred surfperch  6.8437621766
## 6648     Benthopelagic   11        spotted sand bass  6.8020742062
## 6649           Pelagic    5            chub mackerel  6.8392844239
## 6650           Pelagic    5            chub mackerel  6.5694697773
## 6651     Benthopelagic   11            white croaker  6.7121908491
## 6652     Benthopelagic    5           brown rockfish  7.0920371990
## 6653          Midwater    4           striped mullet  6.7689755073
## 6654          Midwater   21                kelp bass  7.0806209203
## 6655     Benthopelagic   21        yellowfin croaker  6.4801822154
## 6656     Benthopelagic    1         barred surfperch  7.1364849384
## 6657     Benthopelagic   14          starry rockfish  7.0743225514
## 6658     Benthopelagic   11 brown smooth-hound shark  6.9328685467
## 6659     Benthopelagic   11           brown rockfish  6.8018038675
## 6660          Midwater    1        walleye surfperch  6.7202952302
## 6661     Benthopelagic   20              black perch  6.7864741978
## 6662           Benthic   10  california scorpionfish  6.7965315449
## 6663          Midwater   22                kelp bass  6.6789674495
## 6664     Benthopelagic    1        rainbow surfperch  6.7329931717
## 6665          Midwater   24      squarespot rockfish  6.9523202189
## 6666     Benthopelagic   21        yellowfin croaker  6.7204265658
## 6667     Benthopelagic   11       vermilion rockfish  6.6782314950
## 6668     Benthopelagic   11         barred sand bass  6.5970076549
## 6669           Benthic   22  california scorpionfish  6.7280582025
## 6670     Benthopelagic    1                  opaleye  6.9658089128
## 6671     Benthopelagic   21          white surfperch  6.9654802689
## 6672          Midwater    4           striped mullet  6.8925205412
## 6673           Pelagic   21            chub mackerel  6.9957060676
## 6674     Benthopelagic   22       vermilion rockfish  6.9305032994
## 6675     Benthopelagic   13            white croaker  6.8362870391
## 6676           Benthic    8  california scorpionfish  6.9236149353
## 6677     Benthopelagic    5       vermilion rockfish  6.8988918665
## 6678     Benthopelagic    3        rainbow surfperch  6.8093575242
## 6679     Benthopelagic    9   greenblotched rockfish  6.7641585264
## 6680           Pelagic   21            chub mackerel  7.0509545158
## 6681     Benthopelagic    5            white croaker  6.8574811493
## 6682           Pelagic   21            chub mackerel  6.9211044045
## 6683           Pelagic    5          pacific sardine  6.8919518469
## 6684          Midwater   12                kelp bass  6.6784115639
## 6685     Benthopelagic   11         barred sand bass  6.7667174047
## 6686           Benthic    8         hornyhead turbot  6.5166223113
## 6687           Benthic    4           spotted turbot  6.7697551780
## 6688           Benthic    5  california scorpionfish  6.6781514596
## 6689          Midwater   21                kelp bass  6.9064447367
## 6690     Benthopelagic    1       california corbina  6.6607884670
## 6691           Pelagic   21            chub mackerel  6.8157376104
## 6692           Benthic    3           diamond turbot  6.8671945691
## 6693           Pelagic   11            chub mackerel  6.6635239625
## 6694     Benthopelagic    9   greenblotched rockfish  6.8892151989
## 6695     Benthopelagic    5            white croaker  6.9050200896
## 6696     Benthopelagic    4        yellowfin croaker  7.1166867300
## 6697          Midwater    7      squarespot rockfish  6.5805521736
## 6698     Benthopelagic   15        speckled rockfish  6.9075486019
## 6699     Benthopelagic   11          white surfperch  6.7432317786
## 6700     Benthopelagic   13       vermilion rockfish  6.8475371499
## 6701     Benthopelagic    2        spotted sand bass  6.6790703994
## 6702     Benthopelagic   15       vermilion rockfish  7.0105307374
## 6703     Benthopelagic   13            white croaker  6.8887656650
## 6704     Benthopelagic    1              black perch  6.7184363100
## 6705     Benthopelagic    8         barred sand bass  6.4277624053
## 6706           Pelagic   11            chub mackerel  6.4648203498
## 6707           Pelagic    6             market squid  6.7566612635
## 6708     Benthopelagic   10            white croaker  7.1147763902
## 6709           Benthic    4           spotted turbot  7.1114719785
## 6710          Midwater   11                kelp bass  6.7451345861
## 6711     Benthopelagic    1              black perch  7.1097351313
## 6712     Benthopelagic   21            white croaker  6.9647963620
## 6713     Benthopelagic   20       california corbina  6.6999586724
## 6714     Benthopelagic   11              black perch  6.7927612781
## 6715           Pelagic   21            chub mackerel  7.0669570136
## 6716     Benthopelagic    1        yellowfin croaker  6.5285337386
## 6717     Benthopelagic   10           brown rockfish  6.6988292037
## 6718           Pelagic   11            chub mackerel  6.8154894915
## 6719     Benthopelagic   11          gopher rockfish  7.0100544270
## 6720     Benthopelagic   21        spotted sand bass  7.2512126616
## 6721     Benthopelagic   23       vermilion rockfish  7.0717036782
## 6722           Pelagic    5            chub mackerel  6.6850949020
## 6723          Midwater    3         shiner surfperch  6.8087196882
## 6724          Midwater   11         shiner surfperch  6.7722345248
## 6725     Benthopelagic   20         barred surfperch  6.9568125647
## 6726     Benthopelagic    3         barred surfperch  6.7699935815
## 6727     Benthopelagic   21        yellowfin croaker  6.7390240846
## 6728     Benthopelagic    5       california corbina  7.0320048758
## 6729     Benthopelagic    5            white croaker  6.9736017640
## 6730           Pelagic    5             market squid  6.6745853103
## 6731     Benthopelagic   17            white croaker  7.0447158868
## 6732     Benthopelagic   20         barred sand bass  6.4560835992
## 6733     Benthopelagic    3              black perch  6.6954078969
## 6734     Benthopelagic   11            white croaker  6.9531230715
## 6735     Benthopelagic    5                  opaleye  7.1587133069
## 6736     Benthopelagic    5            white croaker  6.5988142097
## 6737          Midwater   21                kelp bass  6.9831558930
## 6738     Benthopelagic   23       vermilion rockfish  6.7473198650
## 6739     Benthopelagic    4       california corbina  6.7841051644
## 6740     Benthopelagic   11              black perch  6.7230647848
## 6741     Benthopelagic    5                  opaleye  6.5132689668
## 6742     Benthopelagic    5            white croaker  6.7606705940
## 6743     Benthopelagic   11        spotted sand bass  6.4941459341
## 6744           Pelagic   21            chub mackerel  6.4988502566
## 6745           Pelagic    5         northern anchovy  6.5423727341
## 6746     Benthopelagic    3        spotted sand bass  6.9479565321
## 6747     Benthopelagic   20           pile surfperch  6.6626277336
## 6748           Pelagic    5         northern anchovy  6.6811026306
## 6749           Benthic   11         hornyhead turbot  7.2338676811
## 6750     Benthopelagic   11            black croaker  7.2654059135
## 6751     Benthopelagic    1          white surfperch  6.7309992107
## 6752     Benthopelagic   11         barred sand bass  6.5565825882
## 6753     Benthopelagic   14            white croaker  6.7833575555
## 6754     Benthopelagic    3       california corbina  7.0707309207
## 6755           Pelagic    5            chub mackerel  6.8627904120
## 6756     Benthopelagic   12            white croaker  7.0432363925
## 6757     Benthopelagic    1        yellowfin croaker  7.0811751901
## 6758     Benthopelagic   22          starry rockfish  7.0115663692
## 6759     Benthopelagic    5                  opaleye  6.8364608435
## 6760           Pelagic   11            chub mackerel  6.7895574504
## 6761     Benthopelagic   22            white croaker  6.9357734911
## 6762     Benthopelagic   17        speckled rockfish  6.4993755617
## 6763     Benthopelagic   11         barred sand bass  6.9620548901
## 6764     Benthopelagic   21        spotted sand bass  6.9493546804
## 6765     Benthopelagic    1        spotted sand bass  6.7733412344
## 6766     Benthopelagic    4           pile surfperch  6.9200931811
## 6767     Benthopelagic    5                  opaleye  7.0698898666
## 6768          Midwater    2                kelp bass  6.7116504925
## 6769     Benthopelagic   10              black perch  6.7187248096
## 6770           Pelagic    5          pacific sardine  6.9196756843
## 6771          Midwater    1         shiner surfperch  7.3237525399
## 6772     Benthopelagic    1         barred surfperch  6.8024455824
## 6773     Benthopelagic    2            white croaker  6.6286939538
## 6774     Benthopelagic    1            white croaker  6.8310445298
## 6775     Benthopelagic    5         barred sand bass  6.5840247612
## 6776     Benthopelagic   24       vermilion rockfish  6.6675351181
## 6777          Midwater    3          canary rockfish  6.8834935357
## 6778     Benthopelagic   18            white croaker  6.7192039117
## 6779     Benthopelagic    7           brown rockfish  6.7070731851
## 6780          Midwater    5                queenfish  7.0634416331
## 6781           Benthic    1           diamond turbot  6.7902416825
## 6782     Benthopelagic    1            white croaker  6.7957295719
## 6783           Pelagic    5             market squid  6.7368949923
## 6784           Pelagic    5             market squid  6.9550511411
## 6785     Benthopelagic    3        spotted sand bass  6.8685171504
## 6786           Pelagic    5             market squid  6.8380502722
## 6787          Midwater   11                kelp bass  7.2129388022
## 6788           Benthic    5       california halibut  6.9753885972
## 6789           Benthic   19         hornyhead turbot  6.5124367354
## 6790           Pelagic    5         northern anchovy  7.0304120689
## 6791          Midwater   21                kelp bass  7.1336429774
## 6792           Pelagic   21            chub mackerel  6.9106976796
## 6793          Midwater    1                queenfish  6.8387233298
## 6794     Benthopelagic    3        spotted sand bass  6.8744747853
## 6795     Benthopelagic   14    greenspotted rockfish  7.0985094414
## 6796     Benthopelagic    5            white croaker  6.7697802961
## 6797     Benthopelagic   10   greenblotched rockfish  6.9619012559
## 6798     Benthopelagic    5                  opaleye  6.6763175200
## 6799     Benthopelagic    1            white croaker  7.0197788350
## 6800           Pelagic    5          pacific sardine  6.7387944702
## 6801          Midwater    1            blue rockfish  0.2732096885
## 6802          Midwater   21                kelp bass  0.5263735264
## 6803     Benthopelagic    3         barred sand bass  0.0377690075
## 6804           Pelagic   21            chub mackerel  0.4133879300
## 6805     Benthopelagic    4                  opaleye  0.4625197878
## 6806     Benthopelagic    1     california sheephead -0.1216328244
## 6807     Benthopelagic   11              black perch  0.5043435233
## 6808     Benthopelagic    1        yellowfin croaker  0.2639464672
## 6809     Benthopelagic   18              black perch  0.3071338676
## 6810     Benthopelagic    1        yellowfin croaker  0.6294307163
## 6811     Benthopelagic   21        spotted sand bass  0.5051959797
## 6812     Benthopelagic    5                  opaleye  0.3203843234
## 6813     Benthopelagic   12       vermilion rockfish  0.2487908959
## 6814     Benthopelagic   18       vermilion rockfish  0.7614511971
## 6815     Benthopelagic    3              black perch  0.2733069484
## 6816          Midwater    3                kelp bass -0.1006729795
## 6817     Benthopelagic   12            white croaker  0.4023326044
## 6818          Midwater   21                kelp bass  0.9540623403
## 6819          Midwater    4         shiner surfperch  0.4767253559
## 6820     Benthopelagic   11          gopher rockfish  0.3951328573
## 6821     Benthopelagic    3       vermilion rockfish  0.5300391544
## 6822     Benthopelagic   14         barred sand bass  0.6692848494
## 6823          Midwater   21                kelp bass  0.4718018568
## 6824          Midwater    1                queenfish  0.2574222654
## 6825     Benthopelagic   22          starry rockfish  0.2074838159
## 6826     Benthopelagic   20            white croaker  0.1964347339
## 6827     Benthopelagic    4       california corbina  0.4641356961
## 6828     Benthopelagic    8              black perch  0.4960943421
## 6829           Benthic   20         hornyhead turbot  0.0550605105
## 6830          Midwater   21                kelp bass  0.1948779948
## 6831     Benthopelagic    4              black perch  0.1585263947
## 6832     Benthopelagic    4            white croaker  0.1113674946
## 6833     Benthopelagic    4              black perch  0.3655413636
## 6834     Benthopelagic   21        yellowfin croaker  0.5774659990
## 6835     Benthopelagic    1                  opaleye  0.2717052269
## 6836           Benthic   21         hornyhead turbot  0.2355482599
## 6837     Benthopelagic    4         barred surfperch -0.1134875514
## 6838          Midwater   11                kelp bass  0.1438072776
## 6839           Pelagic    5             market squid  0.2206982699
## 6840           Benthic    1           diamond turbot  0.4303270286
## 6841     Benthopelagic    1            white croaker  0.4427690371
## 6842     Benthopelagic    4              black perch  0.4747671831
## 6843           Pelagic    6             market squid  0.0457723411
## 6844     Benthopelagic   11            white croaker  0.2218968251
## 6845     Benthopelagic    9            white croaker  0.7185472493
## 6846           Pelagic   21         northern anchovy  0.7815154779
## 6847     Benthopelagic   11           brown rockfish  0.1118585157
## 6848     Benthopelagic   11          ocean whitefish  0.4592761727
## 6849           Benthic   17         hornyhead turbot -0.1197402675
## 6850           Benthic   11  california scorpionfish -0.0029934401
## 6851           Benthic   20           diamond turbot  0.1185407022
## 6852     Benthopelagic    4        spotted sand bass  0.0907503992
## 6853          Midwater   11           olive rockfish  0.2299921465
## 6854     Benthopelagic    1              black perch  0.0337492507
## 6855     Benthopelagic    5            white croaker  0.5359657072
## 6856           Pelagic    5         northern anchovy  0.1794795733
## 6857     Benthopelagic   11        yellowfin croaker  0.2858758521
## 6858          Midwater   16                kelp bass  0.4295902698
## 6859     Benthopelagic   11            white croaker  0.3903857781
## 6860     Benthopelagic   11              black perch  0.4419118169
## 6861          Midwater   18                kelp bass -0.0964360007
## 6862     Benthopelagic    3              black perch  0.3665649616
## 6863          Midwater    1                kelp bass  0.3957340927
## 6864     Benthopelagic   15            white croaker  0.5163199248
## 6865     Benthopelagic   22         barred sand bass -0.1242221791
## 6866     Benthopelagic    1            white croaker  0.0903418056
## 6867     Benthopelagic   21        yellowfin croaker  0.0209340098
## 6868           Benthic    5  california scorpionfish  0.2724695975
## 6869           Pelagic   21            chub mackerel  0.2305737407
## 6870           Benthic    1           spotted turbot  0.2443972057
## 6871     Benthopelagic   11          gopher rockfish  0.2708477382
## 6872     Benthopelagic    1            white croaker  0.2737282401
## 6873     Benthopelagic    5       california corbina  0.5521121643
## 6874     Benthopelagic    1              black perch  0.6115871548
## 6875     Benthopelagic   11          spotfin croaker  0.4912561830
## 6876     Benthopelagic    8          copper rockfish -0.0912612221
## 6877     Benthopelagic    4        yellowfin croaker  0.5260185902
## 6878     Benthopelagic   12            white croaker  0.2680782641
## 6879          Midwater    8      yellowtail rockfish  0.0617203010
## 6880          Midwater    3                kelp bass -0.0252892839
## 6881     Benthopelagic    5          spotfin croaker  0.5158725133
## 6882           Pelagic    5          pacific sardine  0.5083478476
## 6883           Benthic    5  california scorpionfish  0.3850464649
## 6884     Benthopelagic    3         barred surfperch  0.3092706970
## 6885           Pelagic    6          pacific sardine  0.2023694932
## 6886     Benthopelagic   11       vermilion rockfish -0.0867331681
## 6887           Pelagic    5         northern anchovy  0.5197536326
## 6888           Pelagic   11            chub mackerel  0.3137445083
## 6889           Pelagic   21            chub mackerel  0.2750494520
## 6890          Midwater    5                top smelt  0.3168063696
## 6891          Midwater    2                queenfish  0.3030109834
## 6892     Benthopelagic    4            white croaker  0.1715045334
## 6893     Benthopelagic   18              black perch -0.1992810901
## 6894          Midwater   21                kelp bass -0.3290435538
## 6895     Benthopelagic    4          copper rockfish -0.0191703519
## 6896     Benthopelagic   20              black perch  0.3222022076
## 6897           Benthic    1         speckled sanddab  0.4352346488
## 6898     Benthopelagic   18            white croaker  0.5659960251
## 6899     Benthopelagic   11         barred sand bass  0.3465368245
## 6900     Benthopelagic   11          spotfin croaker  0.3705036466
## 6901           Pelagic   11            chub mackerel  0.1902763427
## 6902           Pelagic    5            chub mackerel  0.5587082082
## 6903           Benthic   18         hornyhead turbot  0.2987037109
## 6904           Benthic   12  california scorpionfish  0.2730962395
## 6905           Benthic    1             fantail sole  0.2751124677
## 6906          Midwater   21                kelp bass  0.3752637166
## 6907     Benthopelagic    3          white surfperch  0.3215768260
## 6908     Benthopelagic   13       vermilion rockfish  0.3511570003
## 6909     Benthopelagic   18            white croaker  0.3575947777
## 6910          Midwater    1         shiner surfperch -0.0463070984
## 6911     Benthopelagic   14            white croaker  0.3426110549
## 6912          Midwater   11                kelp bass  0.1035331335
## 6913           Benthic    5         speckled sanddab -0.0927964945
## 6914           Benthic   17  california scorpionfish  0.0831790664
## 6915     Benthopelagic   21       california corbina  0.5262717939
## 6916           Benthic   11  california scorpionfish  0.1460394352
## 6917           Benthic   17         hornyhead turbot  0.2291763989
## 6918     Benthopelagic   12              black perch  0.1262258826
## 6919     Benthopelagic    1            white croaker  0.5344542078
## 6920     Benthopelagic    5       california corbina  0.3924862828
## 6921     Benthopelagic    4              black perch  0.2341622110
## 6922     Benthopelagic    5            white croaker  0.4099833467
## 6923     Benthopelagic    1            white croaker  0.5603609518
## 6924           Benthic   14         hornyhead turbot  0.7338534554
## 6925           Benthic    4    shovelnose guitarfish  0.0952771516
## 6926          Midwater    1        walleye surfperch  0.1151512377
## 6927          Midwater   18                kelp bass  0.6833674398
## 6928     Benthopelagic    5            white croaker  0.3809017601
## 6929     Benthopelagic    5         barred sand bass  0.1258983535
## 6930          Midwater    2                kelp bass -0.0030887114
## 6931     Benthopelagic   21         barred sand bass  0.3074266030
## 6932     Benthopelagic   12       vermilion rockfish  0.2374381698
## 6933     Benthopelagic    2       quillback rockfish -0.1907429763
## 6934     Benthopelagic   21            white croaker  0.1752125036
## 6935     Benthopelagic   16       vermilion rockfish -0.1333885537
## 6936     Benthopelagic    3              black perch  0.3244019348
## 6937           Benthic    8  california scorpionfish  0.3675725528
## 6938           Pelagic    5          pacific sardine  0.4345479051
## 6939           Benthic    5  california scorpionfish  0.0084827063
## 6940     Benthopelagic    8          copper rockfish  0.3731367451
## 6941           Pelagic    5          pacific sardine  0.3639288269
## 6942     Benthopelagic    2            white croaker  0.1680200149
## 6943     Benthopelagic    1            white croaker  0.4108228202
## 6944     Benthopelagic   21            leopard shark  0.1655131187
## 6945     Benthopelagic   14              black perch  0.3293263001
## 6946     Benthopelagic   16       vermilion rockfish  0.4010976455
## 6947     Benthopelagic   10       vermilion rockfish  0.3287671675
## 6948          Midwater   21                kelp bass  0.4875369873
## 6949     Benthopelagic    1            rosy rockfish  0.5392710575
## 6950          Midwater    3         shiner surfperch  0.4256303557
## 6951     Benthopelagic   11            white croaker  0.3314284011
## 6952     Benthopelagic    1         barred surfperch  0.3321673462
## 6953          Midwater    1         shiner surfperch  0.3200944991
## 6954           Pelagic   21            chub mackerel  0.5732493588
## 6955     Benthopelagic   16       vermilion rockfish  0.1434432511
## 6956     Benthopelagic    7        speckled rockfish  0.4212712587
## 6957          Midwater    4         shiner surfperch  0.4513843991
## 6958     Benthopelagic   11       vermilion rockfish  0.3369161467
## 6959           Pelagic    5            chub mackerel -0.1595789783
## 6960          Midwater   14                kelp bass  0.2128937672
## 6961     Benthopelagic    3              black perch -0.0200301797
## 6962     Benthopelagic    5            black croaker  0.2432977677
## 6963          Midwater    5                top smelt  0.1305977594
## 6964          Midwater   11                top smelt  0.3180487412
## 6965           Benthic   10         hornyhead turbot  0.2273183805
## 6966           Pelagic    5             market squid  0.0279890153
## 6967     Benthopelagic   12              black perch -0.1634666525
## 6968     Benthopelagic    1       california corbina  0.4083345546
## 6969     Benthopelagic    3         barred surfperch  0.1305897965
## 6970     Benthopelagic   19       vermilion rockfish  0.3884075934
## 6971     Benthopelagic   15        speckled rockfish  0.4908163211
## 6972           Pelagic    5          pacific sardine  0.5638558057
## 6973     Benthopelagic    4         barred surfperch  0.3055976408
## 6974     Benthopelagic   11              black perch  0.0730232916
## 6975          Midwater   11                kelp bass  0.1239093520
## 6976     Benthopelagic   11         barred surfperch  0.4756666121
## 6977           Pelagic    5         northern anchovy  0.3352693470
## 6978           Pelagic    5          pacific sardine  0.4439903879
## 6979     Benthopelagic   11            white croaker  0.5341732882
## 6980     Benthopelagic   19            white croaker  0.5342520357
## 6981     Benthopelagic    3              black perch  0.4450199282
## 6982     Benthopelagic   19       vermilion rockfish  0.0546086650
## 6983     Benthopelagic   12           brown rockfish  0.3438470408
## 6984     Benthopelagic    6          copper rockfish  0.2401542417
## 6985           Pelagic    5             market squid  0.1057626301
## 6986     Benthopelagic   22              black perch  0.4075155507
## 6987           Benthic   20       california halibut  0.3878243913
## 6988     Benthopelagic    2        spotted sand bass  0.1942630541
## 6989           Benthic    1           diamond turbot  0.2782452154
## 6990           Benthic   23         hornyhead turbot  0.6357803332
## 6991     Benthopelagic    5         barred sand bass  0.1833634895
## 6992           Benthic    4    california lizardfish  0.4965706206
## 6993     Benthopelagic   11 brown smooth-hound shark -0.0077013055
## 6994     Benthopelagic   21            white croaker  0.2400651932
## 6995     Benthopelagic    4            flag rockfish  0.2627566284
## 6996           Benthic   12         hornyhead turbot  0.2945924365
## 6997           Benthic    4    shovelnose guitarfish  0.5188225190
## 6998     Benthopelagic   14            white croaker  0.4956660049
## 6999     Benthopelagic    5     california sheephead  0.3265394075
## 7000           Pelagic    5         northern anchovy  0.6621774271
## 7001     Benthopelagic   20       vermilion rockfish  0.4147876921
## 7002     Benthopelagic    2         barred surfperch  0.3534237793
## 7003          Midwater   17      squarespot rockfish  0.6611835329
## 7004     Benthopelagic   18       vermilion rockfish  0.1412560283
## 7005     Benthopelagic   11            white croaker  0.3141399502
## 7006     Benthopelagic    4         barred sand bass  0.1095969956
## 7007          Midwater    4                top smelt  0.4284619071
## 7008           Benthic   17         hornyhead turbot  0.3072248829
## 7009     Benthopelagic   11            white croaker  0.0931391641
## 7010     Benthopelagic   11         barred surfperch  0.4203171375
## 7011           Pelagic    5             market squid -0.0869948443
## 7012           Benthic   19  california scorpionfish  0.6115208906
## 7013           Pelagic    5             market squid  0.2443752923
## 7014     Benthopelagic   10         barred sand bass  0.1980087905
## 7015           Pelagic   11            chub mackerel  0.0793134398
## 7016     Benthopelagic   11              black perch  0.3885776685
## 7017     Benthopelagic   22              black perch  0.4410533648
## 7018     Benthopelagic   12            white croaker  0.1905213721
## 7019           Benthic    5    shovelnose guitarfish  0.0123381425
## 7020     Benthopelagic   20       california corbina  0.5161448768
## 7021     Benthopelagic    5                  opaleye  0.1042582481
## 7022     Benthopelagic   16       vermilion rockfish  0.4062260169
## 7023     Benthopelagic    1        spotted sand bass  0.5073261041
## 7024     Benthopelagic    3        rainbow surfperch  0.2334166131
## 7025     Benthopelagic   17            white croaker -0.3119728716
## 7026           Benthic   22  california scorpionfish  0.1119207112
## 7027          Midwater   21                kelp bass -0.0082814578
## 7028           Pelagic    5             market squid  0.3582796836
## 7029     Benthopelagic   21            white croaker  0.4769508039
## 7030     Benthopelagic    1        rainbow surfperch  0.5998672612
## 7031     Benthopelagic    4       california corbina  0.0084666061
## 7032           Pelagic   21            chub mackerel  0.2541823938
## 7033     Benthopelagic   20            white croaker  0.2351973563
## 7034           Pelagic    6          pacific sardine  0.5958092570
## 7035          Midwater    4           striped mullet -0.1402737408
## 7036           Pelagic   21            chub mackerel  0.3398965954
## 7037           Benthic    1         speckled sanddab  0.3421420845
## 7038     Benthopelagic   11            white croaker  0.1200636512
## 7039           Benthic    8         hornyhead turbot -0.0149851757
## 7040          Midwater    4         shiner surfperch  0.1272281774
## 7041     Benthopelagic   10       vermilion rockfish  0.5459837544
## 7042     Benthopelagic    1        rainbow surfperch  0.5607900720
## 7043          Midwater   11         shiner surfperch  0.2781875614
## 7044     Benthopelagic    5            leopard shark  0.5841321642
## 7045           Pelagic   21            chub mackerel  0.3103107171
## 7046     Benthopelagic   11              black perch -0.0554641191
## 7047          Midwater    4         shiner surfperch  0.4821626049
## 7048     Benthopelagic   14              black perch  0.1557864655
## 7049          Midwater   11                kelp bass -0.0305731018
## 7050     Benthopelagic   18            white croaker  0.7285650884
## 7051          Midwater    4                top smelt  0.2101297860
## 7052     Benthopelagic    5   gray smoothhound shark  0.2958815895
## 7053     Benthopelagic   23            white croaker  0.5035030543
## 7054           Pelagic   21           slough anchovy  0.2346675566
## 7055          Midwater    1                queenfish  0.3316052582
## 7056     Benthopelagic   21            white croaker  0.5429990800
## 7057          Midwater    1                kelp bass  0.3140410019
## 7058     Benthopelagic   24       vermilion rockfish -0.1100711482
## 7059           Pelagic   21            chub mackerel  0.5247945806
## 7060           Pelagic    5          pacific sardine  0.3757220627
## 7061     Benthopelagic    4       california corbina  0.2516450497
## 7062     Benthopelagic    3       california corbina  0.3496415182
## 7063     Benthopelagic   16              black perch  0.4343885485
## 7064           Pelagic    5          pacific sardine  0.1901309072
## 7065           Pelagic   21            chub mackerel  0.1350632797
## 7066     Benthopelagic   21         barred sand bass  0.2718244160
## 7067           Pelagic    6          pacific sardine  0.2879659742
## 7068     Benthopelagic    5        yellowfin croaker  0.1888415825
## 7069           Benthic    1  california scorpionfish  0.4872431200
## 7070          Midwater    4         shiner surfperch  0.3935425664
## 7071           Benthic    5  california scorpionfish  0.4816067199
## 7072     Benthopelagic    5       california corbina  0.6256514389
## 7073           Benthic   19         hornyhead turbot  0.2838471898
## 7074     Benthopelagic    2              black perch  0.1701690899
## 7075     Benthopelagic   21        spotted sand bass  0.2795312662
## 7076     Benthopelagic    7       vermilion rockfish  0.2138338915
## 7077     Benthopelagic    3              black perch  0.6058694209
## 7078           Pelagic   11            chub mackerel  0.3639558949
## 7079     Benthopelagic   22            white croaker  0.2973653298
## 7080          Midwater    2         shiner surfperch  0.6304036430
## 7081     Benthopelagic   11   gray smoothhound shark  0.2091249468
## 7082     Benthopelagic   19            white croaker  0.4103311788
## 7083     Benthopelagic   11            white croaker  0.3492580163
## 7084     Benthopelagic    5            white croaker -0.0894401602
## 7085     Benthopelagic   21          white surfperch  0.2240137560
## 7086          Midwater    5                 halfmoon  0.7877588510
## 7087          Midwater   10                kelp bass  0.3059022286
## 7088          Midwater    1                kelp bass  0.3480971126
## 7089          Midwater    3         shiner surfperch  0.6318001763
## 7090     Benthopelagic   10            white croaker  0.2075305679
## 7091          Midwater    5                queenfish  0.4412719284
## 7092     Benthopelagic    1            white croaker  0.6284742069
## 7093     Benthopelagic    4              black perch  0.2772174333
## 7094     Benthopelagic    1         barred sand bass  0.5527382667
## 7095          Midwater    5                kelp bass  0.7103876176
## 7096           Pelagic    5          pacific sardine  0.2607785544
## 7097     Benthopelagic   21         barred sand bass  0.4407941055
## 7098     Benthopelagic    4           pile surfperch  0.1608566564
## 7099          Midwater   14                kelp bass  0.1183822612
## 7100     Benthopelagic   16          copper rockfish  0.5093490686
## 7101     Benthopelagic    3        spotted sand bass  0.2902043160
## 7102          Midwater   16                kelp bass  0.2567803188
## 7103          Midwater    4                kelp bass  0.1818830344
## 7104     Benthopelagic   14              black perch  0.3113896679
## 7105           Pelagic    6          pacific sardine  0.5713895399
## 7106     Benthopelagic   11              black perch  0.4959298512
## 7107     Benthopelagic    4           pile surfperch  0.4909897071
## 7108     Benthopelagic    5        yellowfin croaker  0.2924818873
## 7109           Benthic   14         hornyhead turbot  0.2261771158
## 7110           Pelagic    5          pacific sardine  0.5665141461
## 7111           Pelagic   21            chub mackerel  0.3223528830
## 7112          Midwater   21                kelp bass  0.1337055851
## 7113     Benthopelagic   10              black perch -0.0419027007
## 7114          Midwater   21                kelp bass  0.3805028565
## 7115           Pelagic    5          pacific sardine  0.2579142407
## 7116          Midwater    3         shiner surfperch  0.7752649870
## 7117     Benthopelagic    8         barred sand bass  0.0968346473
## 7118     Benthopelagic   11         barred sand bass -0.0434231256
## 7119          Midwater    1        walleye surfperch  0.4046181004
## 7120           Benthic   20  california scorpionfish  0.1308708444
## 7121           Benthic   23         hornyhead turbot  0.3866833201
## 7122           Benthic   19  california scorpionfish  0.3218380469
## 7123     Benthopelagic   12           brown rockfish  0.0896494286
## 7124     Benthopelagic   11          white surfperch  0.5002122657
## 7125     Benthopelagic    5       california corbina  0.9110152070
## 7126     Benthopelagic    4              black perch -0.0003834204
## 7127     Benthopelagic    5            white croaker  0.1852130341
## 7128     Benthopelagic    3        spotted sand bass  0.3494424316
## 7129     Benthopelagic   20            white croaker  0.4273196475
## 7130          Midwater    1         shiner surfperch  0.4543628456
## 7131           Benthic   20         hornyhead turbot  0.4017334604
## 7132           Benthic    1           spotted turbot  0.1147035539
## 7133           Benthic   23         hornyhead turbot  0.5724762464
## 7134     Benthopelagic   14       vermilion rockfish  0.1510661720
## 7135           Pelagic    5             market squid  0.1483850043
## 7136     Benthopelagic    8            white croaker -0.0110466565
## 7137           Pelagic    5             market squid  0.3598248793
## 7138     Benthopelagic    5       vermilion rockfish  0.2321961472
## 7139     Benthopelagic   11            white croaker  0.3425430816
## 7140           Benthic    3           diamond turbot  0.2448705735
## 7141           Pelagic   21         northern anchovy  0.1976575948
## 7142           Benthic    8         hornyhead turbot  0.1389455246
## 7143     Benthopelagic    4         barred sand bass  0.1416002461
## 7144          Midwater    3                jacksmelt  0.4077316704
## 7145          Midwater   21                kelp bass  0.2773267880
## 7146     Benthopelagic   11        yellowfin croaker  0.0714206685
## 7147          Midwater    8                kelp bass  0.0031997319
## 7148     Benthopelagic    9       vermilion rockfish  0.6008819151
## 7149          Midwater   21                kelp bass  0.5168064456
## 7150     Benthopelagic    1         barred surfperch  0.5736246544
## 7151          Midwater   11                top smelt  0.6549014004
## 7152     Benthopelagic    5            white croaker  0.5594863430
## 7153     Benthopelagic    4         barred surfperch  0.0935607329
## 7154     Benthopelagic   21        yellowfin croaker  0.2296529742
## 7155     Benthopelagic    5         barred sand bass  0.0797966721
## 7156           Pelagic   21            chub mackerel  0.4429303192
## 7157          Midwater   21                kelp bass  0.3320410251
## 7158     Benthopelagic    8            white croaker  0.1013583919
## 7159           Pelagic   21            chub mackerel  0.2627639584
## 7160     Benthopelagic   16        speckled rockfish  0.4105207259
## 7161     Benthopelagic    5         barred sand bass  0.3829889880
## 7162           Pelagic   21           slough anchovy  0.4610351776
## 7163     Benthopelagic   11            rosy rockfish  0.1807681431
## 7164           Benthic    4           diamond turbot  0.2240229389
## 7165           Benthic   16  california scorpionfish  0.2673472482
## 7166     Benthopelagic   20       vermilion rockfish  0.5026381092
## 7167          Midwater   20                kelp bass  0.2601305820
## 7168          Midwater   21                kelp bass  0.3791836166
## 7169           Benthic   13         hornyhead turbot  0.4819348857
## 7170           Pelagic   21            chub mackerel  0.1358451375
## 7171     Benthopelagic   14       vermilion rockfish  0.0964346115
## 7172          Midwater    5                kelp bass  0.1895829770
## 7173           Benthic   10  california scorpionfish  0.3066625184
## 7174     Benthopelagic    5         barred sand bass  0.6705591226
## 7175          Midwater    4                kelp bass  0.3358111365
## 7176     Benthopelagic    1        yellowfin croaker  0.2627021373
## 7177     Benthopelagic   10           brown rockfish  0.2310441986
## 7178           Benthic    5          longfin sanddab  0.3525942901
## 7179     Benthopelagic    3        yellowfin croaker  0.4190142302
## 7180     Benthopelagic   11            white croaker  0.1515378780
## 7181          Midwater   20                kelp bass  0.1738416701
## 7182           Benthic    5       california halibut  0.2334418976
## 7183           Pelagic    5          pacific sardine  0.3330149893
## 7184          Midwater   21                kelp bass  0.4090136458
## 7185     Benthopelagic    8            white croaker  0.4315256300
## 7186     Benthopelagic    3       california corbina  0.5741760813
## 7187     Benthopelagic    4        spotted sand bass -0.3419122537
## 7188           Benthic   10  california scorpionfish  0.5317546129
## 7189           Benthic    5  california scorpionfish -0.1674551603
## 7190          Midwater   11                top smelt  0.1544862009
## 7191     Benthopelagic   17            white croaker  0.1864714632
## 7192     Benthopelagic    5            white croaker  0.3132892711
## 7193           Pelagic   21         northern anchovy  0.1270462125
## 7194           Pelagic    5          pacific sardine  0.4785722269
## 7195     Benthopelagic    1       california corbina  0.3246588278
## 7196          Midwater    5                kelp bass  0.3996408161
## 7197     Benthopelagic   20            white croaker  0.2771924082
## 7198     Benthopelagic    3            rosy rockfish  0.5336419439
## 7199     Benthopelagic   21        yellowfin croaker  0.0549501349
## 7200     Benthopelagic    1         barred surfperch  0.4182837184
## 7201     Benthopelagic   14         barred sand bass  5.0659677428
## 7202     Benthopelagic    5       vermilion rockfish  5.1776789562
## 7203          Midwater   21                kelp bass  5.4371210548
## 7204     Benthopelagic    3           pile surfperch  5.4437195708
## 7205     Benthopelagic   19       vermilion rockfish  5.2469795369
## 7206           Pelagic    5            chub mackerel  5.1777744315
## 7207          Midwater   21                kelp bass  5.4218054716
## 7208          Midwater    5                queenfish  5.6484641830
## 7209     Benthopelagic   11            white croaker  4.9125470579
## 7210           Benthic    1           diamond turbot  5.3956197754
## 7211           Benthic   22         hornyhead turbot  4.9649864813
## 7212          Midwater    5                kelp bass  5.1218760746
## 7213     Benthopelagic   21          spotfin croaker  5.0389448029
## 7214           Pelagic    5            chub mackerel  5.2499807484
## 7215     Benthopelagic    5       vermilion rockfish  5.1410228069
## 7216     Benthopelagic    1         barred surfperch  5.0188441420
## 7217     Benthopelagic   11            white croaker  5.1302121557
## 7218     Benthopelagic    4         barred sand bass  5.6311546431
## 7219     Benthopelagic   17       vermilion rockfish  5.4044923104
## 7220     Benthopelagic   11          white surfperch  5.3035039980
## 7221     Benthopelagic    8          copper rockfish  5.5500767854
## 7222          Midwater   11            kelp rockfish  5.2461391914
## 7223     Benthopelagic    5            white croaker  5.3616671117
## 7224     Benthopelagic    4         barred surfperch  5.5007287912
## 7225     Benthopelagic    4       california corbina  5.0346886236
## 7226           Benthic   20       california halibut  5.5057704777
## 7227           Benthic    3           diamond turbot  5.3091933455
## 7228     Benthopelagic   12         barred sand bass  5.2760104741
## 7229          Midwater    1                 halfmoon  5.2154559414
## 7230     Benthopelagic   13       vermilion rockfish  5.6069245509
## 7231           Pelagic    5        pacific barracuda  5.0808597823
## 7232     Benthopelagic    3              black perch  4.9697331373
## 7233           Pelagic   21            chub mackerel  5.4098170354
## 7234     Benthopelagic   14            white croaker  5.5215231038
## 7235     Benthopelagic   24       vermilion rockfish  5.0167317307
## 7236     Benthopelagic   20       california corbina  5.1761413911
## 7237     Benthopelagic   21         barred sand bass  5.2102421034
## 7238     Benthopelagic   11            white croaker  5.4152470238
## 7239          Midwater   21                kelp bass  5.0084992446
## 7240          Midwater    1         shiner surfperch  5.4616817275
## 7241          Midwater    5         shiner surfperch  5.7249270378
## 7242     Benthopelagic   11           brown rockfish  5.2691153124
## 7243     Benthopelagic    5         barred sand bass  5.3461599433
## 7244           Pelagic    5          pacific sardine  5.2310431586
## 7245           Benthic   16         hornyhead turbot  5.0413629393
## 7246          Midwater    1         shiner surfperch  5.4628848252
## 7247     Benthopelagic    5                  opaleye  5.1485431957
## 7248     Benthopelagic   20            white croaker  5.1727919611
## 7249     Benthopelagic   21            white croaker  5.2704320513
## 7250     Benthopelagic   11          spotfin croaker  5.0735966963
## 7251           Benthic   22  california scorpionfish  5.0352786062
## 7252           Pelagic    5          pacific sardine  5.0490262643
## 7253     Benthopelagic    1                  opaleye  5.4826188293
## 7254          Midwater    1         shiner surfperch  5.2180839125
## 7255     Benthopelagic   11         barred surfperch  5.0767032645
## 7256          Midwater   11         shiner surfperch  5.2491622283
## 7257     Benthopelagic   12            white croaker  5.2649675048
## 7258          Midwater   21                queenfish  5.5293200799
## 7259           Benthic    4    shovelnose guitarfish  5.6679285036
## 7260     Benthopelagic   21         barred sand bass  4.9991509074
## 7261     Benthopelagic   10            white croaker  5.2550711466
## 7262     Benthopelagic    1       california corbina  4.9581243850
## 7263     Benthopelagic   11            white croaker  5.3716899101
## 7264          Midwater   11                kelp bass  5.3299649893
## 7265     Benthopelagic    3        spotted sand bass  5.1854256383
## 7266     Benthopelagic    3          copper rockfish  5.4736297992
## 7267           Pelagic   11            chub mackerel  5.1749806515
## 7268           Pelagic    5             market squid  5.3236204611
## 7269           Pelagic   11            chub mackerel  5.2435299889
## 7270           Pelagic   21            chub mackerel  5.3718708073
## 7271           Benthic   22  california scorpionfish  5.1745793550
## 7272          Midwater    4         shiner surfperch  5.1939729466
## 7273           Benthic   18  california scorpionfish  5.2719123441
## 7274     Benthopelagic    5                  opaleye  5.2460014679
## 7275          Midwater   21                queenfish  5.2921625736
## 7276     Benthopelagic    5          copper rockfish  5.0187859717
## 7277     Benthopelagic   11         barred sand bass  5.3833249841
## 7278     Benthopelagic   21        spotted sand bass  5.4648751199
## 7279     Benthopelagic   22            white croaker  5.2647274919
## 7280           Pelagic    5         northern anchovy  5.4245321918
## 7281     Benthopelagic   21            leopard shark  5.2614224549
## 7282          Midwater   11         shiner surfperch  5.2947823405
## 7283     Benthopelagic   21            white croaker  4.9789176330
## 7284           Benthic    5       california halibut  5.3919638565
## 7285          Midwater   11                kelp bass  5.1416839293
## 7286          Midwater   18                kelp bass  5.1378002703
## 7287     Benthopelagic    5            white croaker  5.0975805867
## 7288     Benthopelagic    1         barred surfperch  5.2466407786
## 7289     Benthopelagic   20            white croaker  5.1121854552
## 7290     Benthopelagic    4 brown smooth-hound shark  5.7514792295
## 7291     Benthopelagic   11         barred sand bass  5.0807998979
## 7292           Benthic   15         hornyhead turbot  5.0985687628
## 7293           Benthic    5  california scorpionfish  5.1883809348
## 7294     Benthopelagic   14       vermilion rockfish  5.3844392853
## 7295           Pelagic    5             market squid  5.2775842190
## 7296     Benthopelagic    5            black croaker  5.3099159946
## 7297     Benthopelagic    1         barred surfperch  5.0026352580
## 7298          Midwater    2        walleye surfperch  5.4963227428
## 7299     Benthopelagic   16       vermilion rockfish  5.1414030889
## 7300           Pelagic    4            chub mackerel  5.4107087265
## 7301     Benthopelagic    1        yellowfin croaker  5.3352044840
## 7302          Midwater    5                kelp bass  4.9662761716
## 7303     Benthopelagic    6          copper rockfish  5.2325170538
## 7304           Benthic    9         hornyhead turbot  5.1314511287
## 7305     Benthopelagic   13           brown rockfish  5.3035686202
## 7306     Benthopelagic    4            white croaker  5.0596198200
## 7307     Benthopelagic   21        spotted sand bass  5.4336397204
## 7308           Pelagic    6             market squid  5.5025260024
## 7309     Benthopelagic   11            white croaker  5.3519682067
## 7310     Benthopelagic   16       vermilion rockfish  5.4572007128
## 7311           Benthic    5           diamond turbot  5.2232405277
## 7312          Midwater    5                kelp bass  5.2297313274
## 7313     Benthopelagic    3        rainbow surfperch  5.0815631439
## 7314           Benthic   21       california halibut  5.1336814648
## 7315     Benthopelagic   21            white croaker  5.6521152086
## 7316     Benthopelagic   11          white surfperch  5.3819201290
## 7317     Benthopelagic    4        yellowfin croaker  5.2959846794
## 7318           Pelagic    5         northern anchovy  5.3887082931
## 7319           Pelagic   21         northern anchovy  4.9717623477
## 7320     Benthopelagic   21        yellowfin croaker  5.3252262300
## 7321     Benthopelagic   13       vermilion rockfish  5.2544420783
## 7322     Benthopelagic   11         barred sand bass  5.1774715848
## 7323     Benthopelagic    1       california corbina  5.3153339682
## 7324     Benthopelagic    5       vermilion rockfish  5.1202170351
## 7325          Midwater    1                 halfmoon  5.4975137527
## 7326     Benthopelagic   23          starry rockfish  5.0509210500
## 7327     Benthopelagic    9          copper rockfish  5.0975777401
## 7328     Benthopelagic    5            white croaker  5.0112088309
## 7329     Benthopelagic   12         barred sand bass  5.1822430587
## 7330     Benthopelagic   23            white croaker  5.2820746751
## 7331           Pelagic    5            chub mackerel  5.1807784304
## 7332          Midwater    4                kelp bass  4.9534058547
## 7333           Pelagic    5         northern anchovy  5.4608625576
## 7334     Benthopelagic    1        spotted sand bass  5.2762657243
## 7335           Benthic   16         hornyhead turbot  5.2440344055
## 7336          Midwater   11                kelp bass  5.3971917657
## 7337           Pelagic   21            chub mackerel  5.2411100817
## 7338     Benthopelagic    1          ocean whitefish  5.6147402827
## 7339     Benthopelagic    1       california corbina  4.9375778108
## 7340     Benthopelagic   21        spotted sand bass  5.0058900775
## 7341           Pelagic    5          pacific sardine  5.2612646725
## 7342     Benthopelagic    4                  opaleye  5.1400251940
## 7343           Pelagic    6          pacific sardine  5.1620722186
## 7344           Pelagic   11            chub mackerel  5.2237644746
## 7345          Midwater   21                kelp bass  5.1442831997
## 7346     Benthopelagic    1     california sheephead  5.4416193652
## 7347          Midwater   10                kelp bass  5.1544432965
## 7348     Benthopelagic   13            white croaker  5.4306054826
## 7349           Pelagic    5            chub mackerel  5.2730812874
## 7350           Benthic   15         hornyhead turbot  5.5351182473
## 7351     Benthopelagic   24          starry rockfish  4.9940497440
## 7352     Benthopelagic   14       vermilion rockfish  5.2665682511
## 7353     Benthopelagic   22            white croaker  5.3619815190
## 7354           Benthic    5    shovelnose guitarfish  5.4218219835
## 7355           Benthic   12  california scorpionfish  5.0429096514
## 7356     Benthopelagic   11   gray smoothhound shark  5.2907675919
## 7357     Benthopelagic    3        rainbow surfperch  5.1531266600
## 7358     Benthopelagic    1                  opaleye  5.0744879811
## 7359           Pelagic    5             market squid  5.5218436103
## 7360           Pelagic    4            chub mackerel  5.0357152253
## 7361           Pelagic    5          pacific sardine  5.1683196531
## 7362     Benthopelagic   15            white croaker  5.5598953021
## 7363           Pelagic    5             market squid  5.2184384661
## 7364           Pelagic   21            chub mackerel  5.0438306577
## 7365     Benthopelagic   11           brown rockfish  5.3478498160
## 7366     Benthopelagic   20        yellowfin croaker  5.2776977414
## 7367     Benthopelagic   22         barred sand bass  5.1117380164
## 7368           Pelagic    5          pacific sardine  5.4827683146
## 7369           Benthic   13         hornyhead turbot  5.2173508531
## 7370          Midwater   12                kelp bass  5.2277210818
## 7371     Benthopelagic   22            white croaker  5.3856702587
## 7372           Pelagic    6             market squid  5.4557632998
## 7373           Pelagic    5          pacific sardine  5.2139213930
## 7374     Benthopelagic    4       california corbina  5.4229740198
## 7375     Benthopelagic   21        spotted sand bass  5.5633466391
## 7376     Benthopelagic    6    greenspotted rockfish  5.3586032264
## 7377           Pelagic    5             market squid  5.2532703339
## 7378     Benthopelagic    4            white croaker  4.9338838564
## 7379     Benthopelagic    1       california corbina  5.0214075331
## 7380          Midwater    4         shiner surfperch  5.3493056602
## 7381     Benthopelagic   23       vermilion rockfish  5.4649182466
## 7382     Benthopelagic   20       california corbina  4.8469118801
## 7383           Pelagic    5            chub mackerel  5.5051901671
## 7384     Benthopelagic   21         barred sand bass  5.4436326286
## 7385           Benthic    5  california scorpionfish  5.3926264581
## 7386           Pelagic    5             market squid  5.3512084075
## 7387     Benthopelagic   21        yellowfin croaker  5.4779917138
## 7388           Benthic    5          longfin sanddab  5.1991953619
## 7389     Benthopelagic    5       vermilion rockfish  5.2643790292
## 7390          Midwater   13     chilipepper rockfish  5.5489144912
## 7391     Benthopelagic    4        yellowfin croaker  5.1590112589
## 7392     Benthopelagic   21        yellowfin croaker  5.3803083347
## 7393     Benthopelagic    1        yellowfin croaker  5.2657655700
## 7394     Benthopelagic    3                  opaleye  4.9324034615
## 7395     Benthopelagic   11        yellowfin croaker  5.6571435738
## 7396           Benthic   15         hornyhead turbot  5.5298743388
## 7397          Midwater    3         shiner surfperch  5.4750379806
## 7398     Benthopelagic    3        spotted sand bass  5.1910957592
## 7399           Benthic   13         hornyhead turbot  5.7138200573
## 7400     Benthopelagic    7       vermilion rockfish  5.3146438842
## 7401          Midwater    3                kelp bass  5.2560949975
## 7402     Benthopelagic   22       vermilion rockfish  5.1995894574
## 7403     Benthopelagic   11          gopher rockfish  5.4428862990
## 7404     Benthopelagic    4         barred sand bass  5.1792063042
## 7405     Benthopelagic    5         barred sand bass  5.4135002390
## 7406          Midwater   10                kelp bass  5.2314969114
## 7407           Benthic    4    california lizardfish  5.4896213655
## 7408     Benthopelagic    8            white croaker  5.4750955464
## 7409          Midwater   11         shiner surfperch  5.4028561019
## 7410     Benthopelagic    1     california sheephead  5.1699287899
## 7411     Benthopelagic    5            white croaker  5.0821229892
## 7412     Benthopelagic   11            white croaker  5.3379419515
## 7413           Benthic    1           diamond turbot  5.4584510726
## 7414     Benthopelagic    6       vermilion rockfish  5.5489129319
## 7415           Pelagic   21            chub mackerel  5.1759726402
## 7416          Midwater    4           striped mullet  5.3232375469
## 7417           Benthic   19  california scorpionfish  5.2024582253
## 7418          Midwater    1         shiner surfperch  4.9523717267
## 7419     Benthopelagic   11         barred surfperch  5.3414809805
## 7420     Benthopelagic   11        spotted sand bass  5.5207396910
## 7421           Pelagic    5            chub mackerel  5.1506312587
## 7422           Pelagic    5            chub mackerel  5.3422290251
## 7423     Benthopelagic   11            white croaker  5.1702217737
## 7424     Benthopelagic    5           brown rockfish  5.1757800791
## 7425          Midwater    4           striped mullet  5.0894445675
## 7426          Midwater   21                kelp bass  5.3419455722
## 7427     Benthopelagic   21        yellowfin croaker  5.6058434492
## 7428     Benthopelagic    1         barred surfperch  5.2927831587
## 7429     Benthopelagic   14          starry rockfish  5.3811845494
## 7430     Benthopelagic   11 brown smooth-hound shark  5.5533631375
## 7431     Benthopelagic   11           brown rockfish  5.2132185674
## 7432          Midwater    1        walleye surfperch  5.3005926434
## 7433     Benthopelagic   20              black perch  5.3261351554
## 7434           Benthic   10  california scorpionfish  5.3242736858
## 7435          Midwater   22                kelp bass  5.5873893218
## 7436     Benthopelagic    1        rainbow surfperch  5.0328652825
## 7437          Midwater   24      squarespot rockfish  4.9775414877
## 7438     Benthopelagic   21        yellowfin croaker  5.0136764043
## 7439     Benthopelagic   11       vermilion rockfish  5.3484869831
## 7440     Benthopelagic   11         barred sand bass  5.0429430854
## 7441           Benthic   22  california scorpionfish  5.2729211870
## 7442     Benthopelagic    1                  opaleye  5.3246411253
## 7443     Benthopelagic   21          white surfperch  4.9127067407
## 7444          Midwater    4           striped mullet  4.9009517342
## 7445           Pelagic   21            chub mackerel  5.3530571051
## 7446     Benthopelagic   22       vermilion rockfish  5.4433413544
## 7447     Benthopelagic   13            white croaker  5.1052172619
## 7448           Benthic    8  california scorpionfish  5.4258532024
## 7449     Benthopelagic    5       vermilion rockfish  5.2067356680
## 7450     Benthopelagic    3        rainbow surfperch  5.1015801501
## 7451     Benthopelagic    9   greenblotched rockfish  5.1812160697
## 7452           Pelagic   21            chub mackerel  5.1898011792
## 7453     Benthopelagic    5            white croaker  5.4181955900
## 7454           Pelagic   21            chub mackerel  5.4304145019
## 7455           Pelagic    5          pacific sardine  5.3387234636
## 7456          Midwater   12                kelp bass  5.5265210225
## 7457     Benthopelagic   11         barred sand bass  5.0855472736
## 7458           Benthic    8         hornyhead turbot  5.0909220824
## 7459           Benthic    4           spotted turbot  5.2654170315
## 7460           Benthic    5  california scorpionfish  5.2197095781
## 7461          Midwater   21                kelp bass  5.2410297657
## 7462     Benthopelagic    1       california corbina  5.1525818698
## 7463           Pelagic   21            chub mackerel  5.3623465502
## 7464           Benthic    3           diamond turbot  5.2532925794
## 7465           Pelagic   11            chub mackerel  5.1978090205
## 7466     Benthopelagic    9   greenblotched rockfish  5.2125048342
## 7467     Benthopelagic    5            white croaker  5.1180534232
## 7468     Benthopelagic    4        yellowfin croaker  5.4379870401
## 7469          Midwater    7      squarespot rockfish  5.1971865322
## 7470     Benthopelagic   15        speckled rockfish  4.8028828979
## 7471     Benthopelagic   11          white surfperch  5.3241637337
## 7472     Benthopelagic   13       vermilion rockfish  5.2988118453
## 7473     Benthopelagic    2        spotted sand bass  5.3954294693
## 7474     Benthopelagic   15       vermilion rockfish  5.1127791917
## 7475     Benthopelagic   13            white croaker  4.9602585318
## 7476     Benthopelagic    1              black perch  5.5148614156
## 7477     Benthopelagic    8         barred sand bass  5.1038567391
## 7478           Pelagic   11            chub mackerel  5.5849620147
## 7479           Pelagic    6             market squid  5.1614533418
## 7480     Benthopelagic   10            white croaker  5.3540678603
## 7481           Benthic    4           spotted turbot  5.2645189729
## 7482          Midwater   11                kelp bass  5.5268082013
## 7483     Benthopelagic    1              black perch  5.0853438437
## 7484     Benthopelagic   21            white croaker  5.2168800103
## 7485     Benthopelagic   20       california corbina  5.1587975527
## 7486     Benthopelagic   11              black perch  5.3604406375
## 7487           Pelagic   21            chub mackerel  5.0349861774
## 7488     Benthopelagic    1        yellowfin croaker  5.1084311165
## 7489     Benthopelagic   10           brown rockfish  5.0868032258
## 7490           Pelagic   11            chub mackerel  5.1383377565
## 7491     Benthopelagic   11          gopher rockfish  5.4622172897
## 7492     Benthopelagic   21        spotted sand bass  5.5271223928
## 7493     Benthopelagic   23       vermilion rockfish  5.0732258870
## 7494           Pelagic    5            chub mackerel  5.2321584177
## 7495          Midwater    3         shiner surfperch  5.0683125134
## 7496          Midwater   11         shiner surfperch  5.3563434396
## 7497     Benthopelagic   20         barred surfperch  5.5529703229
## 7498     Benthopelagic    3         barred surfperch  5.3573068566
## 7499     Benthopelagic   21        yellowfin croaker  5.2694643662
## 7500     Benthopelagic    5       california corbina  5.2458569149
## 7501     Benthopelagic    5            white croaker  5.2046010127
## 7502           Pelagic    5             market squid  5.5019442474
## 7503     Benthopelagic   17            white croaker  5.4344235922
## 7504     Benthopelagic   20         barred sand bass  5.1640003297
## 7505     Benthopelagic    3              black perch  5.2067776718
## 7506     Benthopelagic   11            white croaker  5.2486959113
## 7507     Benthopelagic    5                  opaleye  5.2033145364
## 7508     Benthopelagic    5            white croaker  5.3372274347
## 7509          Midwater   21                kelp bass  5.1058902742
## 7510     Benthopelagic   23       vermilion rockfish  4.9236526948
## 7511     Benthopelagic    4       california corbina  5.2482029426
## 7512     Benthopelagic   11              black perch  5.3289067453
## 7513     Benthopelagic    5                  opaleye  4.8240452518
## 7514     Benthopelagic    5            white croaker  5.0507226815
## 7515     Benthopelagic   11        spotted sand bass  5.5356630727
## 7516           Pelagic   21            chub mackerel  5.3362381100
## 7517           Pelagic    5         northern anchovy  5.2994336156
## 7518     Benthopelagic    3        spotted sand bass  5.3298192031
## 7519     Benthopelagic   20           pile surfperch  5.4018552438
## 7520           Pelagic    5         northern anchovy  5.1688597953
## 7521           Benthic   11         hornyhead turbot  5.3512980649
## 7522     Benthopelagic   11            black croaker  4.9922688996
## 7523     Benthopelagic    1          white surfperch  5.1752721980
## 7524     Benthopelagic   11         barred sand bass  4.9122040153
## 7525     Benthopelagic   14            white croaker  5.5133584867
## 7526     Benthopelagic    3       california corbina  5.3214131862
## 7527           Pelagic    5            chub mackerel  5.4749715286
## 7528     Benthopelagic   12            white croaker  5.1914966271
## 7529     Benthopelagic    1        yellowfin croaker  5.3513310873
## 7530     Benthopelagic   22          starry rockfish  5.2053188642
## 7531     Benthopelagic    5                  opaleye  5.1923775410
## 7532           Pelagic   11            chub mackerel  5.5613061873
## 7533     Benthopelagic   22            white croaker  5.2842307935
## 7534     Benthopelagic   17        speckled rockfish  5.1273957200
## 7535     Benthopelagic   11         barred sand bass  5.5505556306
## 7536     Benthopelagic   21        spotted sand bass  5.0043877115
## 7537     Benthopelagic    1        spotted sand bass  5.3977841696
## 7538     Benthopelagic    4           pile surfperch  4.9974302993
## 7539     Benthopelagic    5                  opaleye  5.4974244564
## 7540          Midwater    2                kelp bass  5.6859607940
## 7541     Benthopelagic   10              black perch  5.3019014836
## 7542           Pelagic    5          pacific sardine  5.2464044928
## 7543          Midwater    1         shiner surfperch  5.3844488424
## 7544     Benthopelagic    1         barred surfperch  5.1947260644
## 7545     Benthopelagic    2            white croaker  5.4118038993
## 7546     Benthopelagic    1            white croaker  5.4281441887
## 7547     Benthopelagic    5         barred sand bass  5.1073489389
## 7548     Benthopelagic   24       vermilion rockfish  5.3059442538
## 7549          Midwater    3          canary rockfish  5.0749730587
## 7550     Benthopelagic   18            white croaker  5.3697301938
## 7551     Benthopelagic    7           brown rockfish  5.1425419388
## 7552          Midwater    5                queenfish  5.2153145891
## 7553           Benthic    1           diamond turbot  5.3485479389
## 7554     Benthopelagic    1            white croaker  5.4954028382
## 7555           Pelagic    5             market squid  5.2719956338
## 7556           Pelagic    5             market squid  5.5117728530
## 7557     Benthopelagic    3        spotted sand bass  5.1785125212
## 7558           Pelagic    5             market squid  5.1393423673
## 7559          Midwater   11                kelp bass  5.0324089168
## 7560           Benthic    5       california halibut  5.0575588998
## 7561           Benthic   19         hornyhead turbot  5.4242737638
## 7562           Pelagic    5         northern anchovy  5.0757985326
## 7563          Midwater   21                kelp bass  5.5431503875
## 7564           Pelagic   21            chub mackerel  5.3960388396
## 7565          Midwater    1                queenfish  4.9899817355
## 7566     Benthopelagic    3        spotted sand bass  5.5218663607
## 7567     Benthopelagic   14    greenspotted rockfish  5.3657343540
## 7568     Benthopelagic    5            white croaker  5.4083509820
## 7569     Benthopelagic   10   greenblotched rockfish  5.0932714106
## 7570     Benthopelagic    5                  opaleye  5.3711250313
## 7571     Benthopelagic    1            white croaker  5.7115965057
## 7572           Pelagic    5          pacific sardine  5.1264946857
## 7573          Midwater    1            blue rockfish  5.3920690526
## 7574          Midwater   21                kelp bass  5.4480638316
## 7575     Benthopelagic    3         barred sand bass  5.3125499424
## 7576           Pelagic   21            chub mackerel  5.1868086304
## 7577     Benthopelagic    4                  opaleye  5.4781473446
## 7578     Benthopelagic    1     california sheephead  5.0353035506
## 7579     Benthopelagic   11              black perch  5.3273572193
## 7580     Benthopelagic    1        yellowfin croaker  5.2881520077
## 7581     Benthopelagic   18              black perch  5.4241824774
## 7582     Benthopelagic    1        yellowfin croaker  5.3804217817
## 7583     Benthopelagic   21        spotted sand bass  5.3515067967
## 7584     Benthopelagic    5                  opaleye  4.9594177269
## 7585     Benthopelagic   12       vermilion rockfish  5.3494342456
## 7586     Benthopelagic   18       vermilion rockfish  5.2166985216
## 7587     Benthopelagic    3              black perch  5.2217419861
## 7588          Midwater    3                kelp bass  5.1968132168
## 7589     Benthopelagic   12            white croaker  4.9681423008
## 7590          Midwater   21                kelp bass  5.3376640593
## 7591          Midwater    4         shiner surfperch  5.2410740224
## 7592     Benthopelagic   11          gopher rockfish  5.4833037789
## 7593     Benthopelagic    3       vermilion rockfish  5.3169110751
## 7594     Benthopelagic   14         barred sand bass  5.1874535573
## 7595          Midwater   21                kelp bass  5.0896549350
## 7596          Midwater    1                queenfish  5.2654428636
## 7597     Benthopelagic   22          starry rockfish  5.4394701155
## 7598     Benthopelagic   20            white croaker  5.3618678348
## 7599     Benthopelagic    4       california corbina  5.1644943694
## 7600     Benthopelagic    8              black perch  5.5409240055
## 7601           Benthic   20         hornyhead turbot  3.6369309502
## 7602          Midwater   21                kelp bass  3.5203177819
## 7603     Benthopelagic    4              black perch  3.5552440119
## 7604     Benthopelagic    4            white croaker  3.5747225184
## 7605     Benthopelagic    4              black perch  3.6305371436
## 7606     Benthopelagic   21        yellowfin croaker  3.4560895957
## 7607     Benthopelagic    1                  opaleye  3.7489913405
## 7608           Benthic   21         hornyhead turbot  3.2859682271
## 7609     Benthopelagic    4         barred surfperch  3.4818648170
## 7610          Midwater   11                kelp bass  3.5591083706
## 7611           Pelagic    5             market squid  3.3873219764
## 7612           Benthic    1           diamond turbot  3.1780317350
## 7613     Benthopelagic    1            white croaker  3.0709627786
## 7614     Benthopelagic    4              black perch  3.3927399321
## 7615           Pelagic    6             market squid  3.3734821757
## 7616     Benthopelagic   11            white croaker  3.4119130858
## 7617     Benthopelagic    9            white croaker  3.2121754123
## 7618           Pelagic   21         northern anchovy  3.5392367956
## 7619     Benthopelagic   11           brown rockfish  3.6357816644
## 7620     Benthopelagic   11          ocean whitefish  3.6443390895
## 7621           Benthic   17         hornyhead turbot  2.7671833190
## 7622           Benthic   11  california scorpionfish  3.2030461135
## 7623           Benthic   20           diamond turbot  3.5716207587
## 7624     Benthopelagic    4        spotted sand bass  3.3688870651
## 7625          Midwater   11           olive rockfish  3.6991135123
## 7626     Benthopelagic    1              black perch  3.7747963215
## 7627     Benthopelagic    5            white croaker  3.5369857510
## 7628           Pelagic    5         northern anchovy  3.3914220011
## 7629     Benthopelagic   11        yellowfin croaker  3.3493573198
## 7630          Midwater   16                kelp bass  3.3344117913
## 7631     Benthopelagic   11            white croaker  3.3366007463
## 7632     Benthopelagic   11              black perch  3.4742819810
## 7633          Midwater   18                kelp bass  3.4838513880
## 7634     Benthopelagic    3              black perch  3.5357170459
## 7635          Midwater    1                kelp bass  3.4481923684
## 7636     Benthopelagic   15            white croaker  3.4712917622
## 7637     Benthopelagic   22         barred sand bass  3.3309789636
## 7638     Benthopelagic    1            white croaker  3.4254765628
## 7639     Benthopelagic   21        yellowfin croaker  3.5901306496
## 7640           Benthic    5  california scorpionfish  3.2318680983
## 7641           Pelagic   21            chub mackerel  3.1941775371
## 7642           Benthic    1           spotted turbot  3.4282172103
## 7643     Benthopelagic   11          gopher rockfish  3.4645077199
## 7644     Benthopelagic    1            white croaker  3.2896926132
## 7645     Benthopelagic    5       california corbina  2.9037436639
## 7646     Benthopelagic    1              black perch  3.7016762143
## 7647     Benthopelagic   11          spotfin croaker  3.9215904102
## 7648     Benthopelagic    8          copper rockfish  3.3778996570
## 7649     Benthopelagic    4        yellowfin croaker  3.9297547552
## 7650     Benthopelagic   12            white croaker  3.6130209161
## 7651          Midwater    8      yellowtail rockfish  3.5417080534
## 7652          Midwater    3                kelp bass  3.1234213813
## 7653     Benthopelagic    5          spotfin croaker  3.2213085499
## 7654           Pelagic    5          pacific sardine  3.0365392023
## 7655           Benthic    5  california scorpionfish  3.4074978031
## 7656     Benthopelagic    3         barred surfperch  3.6116116332
## 7657           Pelagic    6          pacific sardine  3.5621671773
## 7658     Benthopelagic   11       vermilion rockfish  3.3310926391
## 7659           Pelagic    5         northern anchovy  3.2669204723
## 7660           Pelagic   11            chub mackerel  3.6325316999
## 7661           Pelagic   21            chub mackerel  3.5918574528
## 7662          Midwater    5                top smelt  3.5063642590
## 7663          Midwater    2                queenfish  3.6424719407
## 7664     Benthopelagic    4            white croaker  4.0184079579
## 7665     Benthopelagic   18              black perch  3.5288586915
## 7666          Midwater   21                kelp bass  3.5962906864
## 7667     Benthopelagic    4          copper rockfish  3.4677477366
## 7668     Benthopelagic   20              black perch  3.4393209007
## 7669           Benthic    1         speckled sanddab  3.3800282961
## 7670     Benthopelagic   18            white croaker  3.1824811723
## 7671     Benthopelagic   11         barred sand bass  3.5069905081
## 7672     Benthopelagic   11          spotfin croaker  3.4445221757
## 7673           Pelagic   11            chub mackerel  3.4014519220
## 7674           Pelagic    5            chub mackerel  3.1863248597
## 7675           Benthic   18         hornyhead turbot  3.5827747681
## 7676           Benthic   12  california scorpionfish  3.6905087904
## 7677           Benthic    1             fantail sole  3.7170100320
## 7678          Midwater   21                kelp bass  3.3813174625
## 7679     Benthopelagic    3          white surfperch  3.0662566442
## 7680     Benthopelagic   13       vermilion rockfish  3.6984887422
## 7681     Benthopelagic   18            white croaker  3.4498207067
## 7682          Midwater    1         shiner surfperch  3.6188878522
## 7683     Benthopelagic   14            white croaker  3.5978601664
## 7684          Midwater   11                kelp bass  3.3865604185
## 7685           Benthic    5         speckled sanddab  3.6453408143
## 7686           Benthic   17  california scorpionfish  3.8804584494
## 7687     Benthopelagic   21       california corbina  3.3068875094
## 7688           Benthic   11  california scorpionfish  3.1061052409
## 7689           Benthic   17         hornyhead turbot  3.4326879080
## 7690     Benthopelagic   12              black perch  3.6288639641
## 7691     Benthopelagic    1            white croaker  3.8533800583
## 7692     Benthopelagic    5       california corbina  3.3148605595
## 7693     Benthopelagic    4              black perch  3.5205391561
## 7694     Benthopelagic    5            white croaker  3.4179860272
## 7695     Benthopelagic    1            white croaker  3.2065592598
## 7696           Benthic   14         hornyhead turbot  3.5289438294
## 7697           Benthic    4    shovelnose guitarfish  3.2961309193
## 7698          Midwater    1        walleye surfperch  3.3505835821
## 7699          Midwater   18                kelp bass  3.2778184254
## 7700     Benthopelagic    5            white croaker  3.4186327894
## 7701     Benthopelagic    5         barred sand bass  3.3460730546
## 7702          Midwater    2                kelp bass  3.6773370997
## 7703     Benthopelagic   21         barred sand bass  3.4333225950
## 7704     Benthopelagic   12       vermilion rockfish  3.7124797204
## 7705     Benthopelagic    2       quillback rockfish  3.4627760799
## 7706     Benthopelagic   21            white croaker  3.4512828827
## 7707     Benthopelagic   16       vermilion rockfish  3.5729664982
## 7708     Benthopelagic    3              black perch  3.5153505574
## 7709           Benthic    8  california scorpionfish  3.4641564007
## 7710           Pelagic    5          pacific sardine  3.5826181292
## 7711           Benthic    5  california scorpionfish  3.6209645432
## 7712     Benthopelagic    8          copper rockfish  3.5574621086
## 7713           Pelagic    5          pacific sardine  3.4409973448
## 7714     Benthopelagic    2            white croaker  3.1317505222
## 7715     Benthopelagic    1            white croaker  3.4222955632
## 7716     Benthopelagic   21            leopard shark  3.3354785563
## 7717     Benthopelagic   14              black perch  3.7289439329
## 7718     Benthopelagic   16       vermilion rockfish  3.2328512842
## 7719     Benthopelagic   10       vermilion rockfish  3.4869113536
## 7720          Midwater   21                kelp bass  3.4296261109
## 7721     Benthopelagic    1            rosy rockfish  3.7085406909
## 7722          Midwater    3         shiner surfperch  3.6111724033
## 7723     Benthopelagic   11            white croaker  3.4853872840
## 7724     Benthopelagic    1         barred surfperch  3.6973407974
## 7725          Midwater    1         shiner surfperch  3.6402160980
## 7726           Pelagic   21            chub mackerel  3.7335482442
## 7727     Benthopelagic   16       vermilion rockfish  3.3887815714
## 7728     Benthopelagic    7        speckled rockfish  3.3314151291
## 7729          Midwater    4         shiner surfperch  3.4036751019
## 7730     Benthopelagic   11       vermilion rockfish  3.4694719753
## 7731           Pelagic    5            chub mackerel  3.5270662239
## 7732          Midwater   14                kelp bass  3.4266758222
## 7733     Benthopelagic    3              black perch  3.8336112291
## 7734     Benthopelagic    5            black croaker  3.4439503435
## 7735          Midwater    5                top smelt  3.5859247446
## 7736          Midwater   11                top smelt  3.2333178363
## 7737           Benthic   10         hornyhead turbot  3.3269418042
## 7738           Pelagic    5             market squid  3.8217581874
## 7739     Benthopelagic   12              black perch  3.3980763975
## 7740     Benthopelagic    1       california corbina  3.5285064495
## 7741     Benthopelagic    3         barred surfperch  3.8811263685
## 7742     Benthopelagic   19       vermilion rockfish  3.6159634269
## 7743     Benthopelagic   15        speckled rockfish  3.6979828433
## 7744           Pelagic    5          pacific sardine  3.2095705999
## 7745     Benthopelagic    4         barred surfperch  3.5641333471
## 7746     Benthopelagic   11              black perch  3.1409870140
## 7747          Midwater   11                kelp bass  3.4496888229
## 7748     Benthopelagic   11         barred surfperch  3.4991069711
## 7749           Pelagic    5         northern anchovy  3.4643067860
## 7750           Pelagic    5          pacific sardine  3.6190937005
## 7751     Benthopelagic   11            white croaker  3.4987657264
## 7752     Benthopelagic   19            white croaker  3.3482718037
## 7753     Benthopelagic    3              black perch  3.4842410596
## 7754     Benthopelagic   19       vermilion rockfish  3.3000529512
## 7755     Benthopelagic   12           brown rockfish  3.3841672046
## 7756     Benthopelagic    6          copper rockfish  3.2702509120
## 7757           Pelagic    5             market squid  3.2602092208
## 7758     Benthopelagic   22              black perch  3.4054197727
## 7759           Benthic   20       california halibut  3.4654541623
## 7760     Benthopelagic    2        spotted sand bass  3.5013117893
## 7761           Benthic    1           diamond turbot  3.1881111245
## 7762           Benthic   23         hornyhead turbot  3.4984838061
## 7763     Benthopelagic    5         barred sand bass  3.3772286459
## 7764           Benthic    4    california lizardfish  3.4979843317
## 7765     Benthopelagic   11 brown smooth-hound shark  3.4611971546
## 7766     Benthopelagic   21            white croaker  4.1200912165
## 7767     Benthopelagic    4            flag rockfish  3.9031122536
## 7768           Benthic   12         hornyhead turbot  3.6972026429
## 7769           Benthic    4    shovelnose guitarfish  3.3388452603
## 7770     Benthopelagic   14            white croaker  3.5730947367
## 7771     Benthopelagic    5     california sheephead  3.5563421339
## 7772           Pelagic    5         northern anchovy  3.4418350817
## 7773     Benthopelagic   20       vermilion rockfish  3.4715089471
## 7774     Benthopelagic    2         barred surfperch  3.5921969742
## 7775          Midwater   17      squarespot rockfish  3.5088013896
## 7776     Benthopelagic   18       vermilion rockfish  3.4005304254
## 7777     Benthopelagic   11            white croaker  3.3951071626
## 7778     Benthopelagic    4         barred sand bass  3.5914034027
## 7779          Midwater    4                top smelt  3.4522983675
## 7780           Benthic   17         hornyhead turbot  3.4192635846
## 7781     Benthopelagic   11            white croaker  3.7355352258
## 7782     Benthopelagic   11         barred surfperch  3.5516170619
## 7783           Pelagic    5             market squid  3.4547778097
## 7784           Benthic   19  california scorpionfish  3.5979105231
## 7785           Pelagic    5             market squid  3.4987908752
## 7786     Benthopelagic   10         barred sand bass  3.5186156493
## 7787           Pelagic   11            chub mackerel  3.7254629202
## 7788     Benthopelagic   11              black perch  3.3839426626
## 7789     Benthopelagic   22              black perch  3.6576529701
## 7790     Benthopelagic   12            white croaker  3.6114394785
## 7791           Benthic    5    shovelnose guitarfish  3.5806115358
## 7792     Benthopelagic   20       california corbina  3.7693613559
## 7793     Benthopelagic    5                  opaleye  3.3613696575
## 7794     Benthopelagic   16       vermilion rockfish  3.5697045735
## 7795     Benthopelagic    1        spotted sand bass  3.4325381716
## 7796     Benthopelagic    3        rainbow surfperch  3.8041534966
## 7797     Benthopelagic   17            white croaker  3.4703736262
## 7798           Benthic   22  california scorpionfish  3.6747561156
## 7799          Midwater   21                kelp bass  3.6250911019
## 7800           Pelagic    5             market squid  3.5090915087
## 7801     Benthopelagic   21            white croaker  3.3429995731
## 7802     Benthopelagic    1        rainbow surfperch  3.3740894736
## 7803     Benthopelagic    4       california corbina  4.0138335839
## 7804           Pelagic   21            chub mackerel  3.2973478550
## 7805     Benthopelagic   20            white croaker  3.3981798477
## 7806           Pelagic    6          pacific sardine  3.6172645662
## 7807          Midwater    4           striped mullet  3.4690654076
## 7808           Pelagic   21            chub mackerel  3.5317015304
## 7809           Benthic    1         speckled sanddab  3.5195164330
## 7810     Benthopelagic   11            white croaker  3.3672511448
## 7811           Benthic    8         hornyhead turbot  3.4932119445
## 7812          Midwater    4         shiner surfperch  3.8843231577
## 7813     Benthopelagic   10       vermilion rockfish  3.4710622548
## 7814     Benthopelagic    1        rainbow surfperch  3.4099002015
## 7815          Midwater   11         shiner surfperch  3.3975427248
## 7816     Benthopelagic    5            leopard shark  3.7513164916
## 7817           Pelagic   21            chub mackerel  3.0086504465
## 7818     Benthopelagic   11              black perch  3.0777155270
## 7819          Midwater    4         shiner surfperch  3.4654683726
## 7820     Benthopelagic   14              black perch  3.6626332451
## 7821          Midwater   11                kelp bass  3.5021906754
## 7822     Benthopelagic   18            white croaker  3.6631716045
## 7823          Midwater    4                top smelt  3.1681726582
## 7824     Benthopelagic    5   gray smoothhound shark  3.4235579327
## 7825     Benthopelagic   23            white croaker  3.4803810045
## 7826           Pelagic   21           slough anchovy  3.4695261498
## 7827          Midwater    1                queenfish  3.7568572837
## 7828     Benthopelagic   21            white croaker  3.9755923851
## 7829          Midwater    1                kelp bass  3.6560451789
## 7830     Benthopelagic   24       vermilion rockfish  3.6939980995
## 7831           Pelagic   21            chub mackerel  3.5220330052
## 7832           Pelagic    5          pacific sardine  3.4887365936
## 7833     Benthopelagic    4       california corbina  3.6390095566
## 7834     Benthopelagic    3       california corbina  3.4711529870
## 7835     Benthopelagic   16              black perch  3.3513823915
## 7836           Pelagic    5          pacific sardine  3.3634227067
## 7837           Pelagic   21            chub mackerel  3.3975889840
## 7838     Benthopelagic   21         barred sand bass  3.3542959318
## 7839           Pelagic    6          pacific sardine  3.2451874356
## 7840     Benthopelagic    5        yellowfin croaker  3.2773641502
## 7841           Benthic    1  california scorpionfish  3.8833478153
## 7842          Midwater    4         shiner surfperch  3.3377871328
## 7843           Benthic    5  california scorpionfish  3.2513134526
## 7844     Benthopelagic    5       california corbina  3.5574228359
## 7845           Benthic   19         hornyhead turbot  3.6188972500
## 7846     Benthopelagic    2              black perch  3.5687187898
## 7847     Benthopelagic   21        spotted sand bass  3.4965284820
## 7848     Benthopelagic    7       vermilion rockfish  3.0404357596
## 7849     Benthopelagic    3              black perch  3.3307082689
## 7850           Pelagic   11            chub mackerel  3.2404847289
## 7851     Benthopelagic   22            white croaker  3.6526377729
## 7852          Midwater    2         shiner surfperch  3.4988658526
## 7853     Benthopelagic   11   gray smoothhound shark  3.6652536438
## 7854     Benthopelagic   19            white croaker  3.2993918829
## 7855     Benthopelagic   11            white croaker  3.4685127227
## 7856     Benthopelagic    5            white croaker  3.8758200606
## 7857     Benthopelagic   21          white surfperch  3.7117759793
## 7858          Midwater    5                 halfmoon  3.4914157780
## 7859          Midwater   10                kelp bass  3.0476075514
## 7860          Midwater    1                kelp bass  3.2688342678
## 7861          Midwater    3         shiner surfperch  3.4547076757
## 7862     Benthopelagic   10            white croaker  3.4377967621
## 7863          Midwater    5                queenfish  3.4718759809
## 7864     Benthopelagic    1            white croaker  3.7898411530
## 7865     Benthopelagic    4              black perch  3.2389662542
## 7866     Benthopelagic    1         barred sand bass  3.4935340877
## 7867          Midwater    5                kelp bass  3.5774122376
## 7868           Pelagic    5          pacific sardine  3.1866330855
## 7869     Benthopelagic   21         barred sand bass  3.3277375222
## 7870     Benthopelagic    4           pile surfperch  3.5109653030
## 7871          Midwater   14                kelp bass  3.1786928644
## 7872     Benthopelagic   16          copper rockfish  3.5652284582
## 7873     Benthopelagic    3        spotted sand bass  3.4759807823
## 7874          Midwater   16                kelp bass  3.6364690464
## 7875          Midwater    4                kelp bass  3.4819930760
## 7876     Benthopelagic   14              black perch  3.4367174285
## 7877           Pelagic    6          pacific sardine  3.6781494334
## 7878     Benthopelagic   11              black perch  3.4368311861
## 7879     Benthopelagic    4           pile surfperch  3.6903378666
## 7880     Benthopelagic    5        yellowfin croaker  3.2681873081
## 7881           Benthic   14         hornyhead turbot  3.4264724030
## 7882           Pelagic    5          pacific sardine  3.3700294541
## 7883           Pelagic   21            chub mackerel  3.1094376367
## 7884          Midwater   21                kelp bass  3.7254836577
## 7885     Benthopelagic   10              black perch  3.3827508308
## 7886          Midwater   21                kelp bass  3.3083198689
## 7887           Pelagic    5          pacific sardine  3.7268641593
## 7888          Midwater    3         shiner surfperch  3.1653397222
## 7889     Benthopelagic    8         barred sand bass  3.5153865409
## 7890     Benthopelagic   11         barred sand bass  3.2449992885
## 7891          Midwater    1        walleye surfperch  3.7183348816
## 7892           Benthic   20  california scorpionfish  3.7532220409
## 7893           Benthic   23         hornyhead turbot  3.6336719219
## 7894           Benthic   19  california scorpionfish  3.5535078755
## 7895     Benthopelagic   12           brown rockfish  3.5314968603
## 7896     Benthopelagic   11          white surfperch  3.5674900135
## 7897     Benthopelagic    5       california corbina  3.3760515014
## 7898     Benthopelagic    4              black perch  3.2049987782
## 7899     Benthopelagic    5            white croaker  3.3520569848
## 7900     Benthopelagic    3        spotted sand bass  3.5575865837
## 7901     Benthopelagic   20            white croaker  3.3369022640
## 7902          Midwater    1         shiner surfperch  3.2572946409
## 7903           Benthic   20         hornyhead turbot  3.4753845852
## 7904           Benthic    1           spotted turbot  3.5264527919
## 7905           Benthic   23         hornyhead turbot  3.8811982782
## 7906     Benthopelagic   14       vermilion rockfish  3.4397032403
## 7907           Pelagic    5             market squid  3.2391757692
## 7908     Benthopelagic    8            white croaker  3.3256691630
## 7909           Pelagic    5             market squid  3.8608550709
## 7910     Benthopelagic    5       vermilion rockfish  3.3362399312
## 7911     Benthopelagic   11            white croaker  3.7711242593
## 7912           Benthic    3           diamond turbot  3.2288851443
## 7913           Pelagic   21         northern anchovy  3.2269633164
## 7914           Benthic    8         hornyhead turbot  3.7196131787
## 7915     Benthopelagic    4         barred sand bass  3.0982800918
## 7916          Midwater    3                jacksmelt  3.3745567384
## 7917          Midwater   21                kelp bass  3.3790374088
## 7918     Benthopelagic   11        yellowfin croaker  3.5671452600
## 7919          Midwater    8                kelp bass  3.8226866695
## 7920     Benthopelagic    9       vermilion rockfish  3.4480179512
## 7921          Midwater   21                kelp bass  3.4673781446
## 7922     Benthopelagic    1         barred surfperch  3.5040326995
## 7923          Midwater   11                top smelt  3.7121800576
## 7924     Benthopelagic    5            white croaker  3.5376878551
## 7925     Benthopelagic    4         barred surfperch  3.3429984273
## 7926     Benthopelagic   21        yellowfin croaker  3.4157037240
## 7927     Benthopelagic    5         barred sand bass  3.4697924264
## 7928           Pelagic   21            chub mackerel  3.2695673181
## 7929          Midwater   21                kelp bass  3.3962316095
## 7930     Benthopelagic    8            white croaker  3.6447135481
## 7931           Pelagic   21            chub mackerel  3.9222244848
## 7932     Benthopelagic   16        speckled rockfish  3.3738929028
## 7933     Benthopelagic    5         barred sand bass  3.3506247677
## 7934           Pelagic   21           slough anchovy  3.5344009745
## 7935     Benthopelagic   11            rosy rockfish  3.2623346683
## 7936           Benthic    4           diamond turbot  3.5467706079
## 7937           Benthic   16  california scorpionfish  3.6593579965
## 7938     Benthopelagic   20       vermilion rockfish  3.6802944565
## 7939          Midwater   20                kelp bass  3.5825991336
## 7940          Midwater   21                kelp bass  3.4983138437
## 7941           Benthic   13         hornyhead turbot  3.5324631708
## 7942           Pelagic   21            chub mackerel  3.4045263992
## 7943     Benthopelagic   14       vermilion rockfish  3.7072381693
## 7944          Midwater    5                kelp bass  3.7607509396
## 7945           Benthic   10  california scorpionfish  3.5272098966
## 7946     Benthopelagic    5         barred sand bass  3.8591388961
## 7947          Midwater    4                kelp bass  3.5941099363
## 7948     Benthopelagic    1        yellowfin croaker  3.2055228381
## 7949     Benthopelagic   10           brown rockfish  3.3357022005
## 7950           Benthic    5          longfin sanddab  3.3249969610
## 7951     Benthopelagic    3        yellowfin croaker  3.4694573113
## 7952     Benthopelagic   11            white croaker  3.5667771213
## 7953          Midwater   20                kelp bass  3.4016052082
## 7954           Benthic    5       california halibut  3.4937896048
## 7955           Pelagic    5          pacific sardine  3.7733035325
## 7956          Midwater   21                kelp bass  3.8124439151
## 7957     Benthopelagic    8            white croaker  3.7712375489
## 7958     Benthopelagic    3       california corbina  3.5727456116
## 7959     Benthopelagic    4        spotted sand bass  3.3479462129
## 7960           Benthic   10  california scorpionfish  3.4866847885
## 7961           Benthic    5  california scorpionfish  3.1221007216
## 7962          Midwater   11                top smelt  3.1662164292
## 7963     Benthopelagic   17            white croaker  3.5243066720
## 7964     Benthopelagic    5            white croaker  3.1493159265
## 7965           Pelagic   21         northern anchovy  3.5413642579
## 7966           Pelagic    5          pacific sardine  4.0036105761
## 7967     Benthopelagic    1       california corbina  3.4297442157
## 7968          Midwater    5                kelp bass  3.3498070731
## 7969     Benthopelagic   20            white croaker  3.8199408761
## 7970     Benthopelagic    3            rosy rockfish  3.8276527404
## 7971     Benthopelagic   21        yellowfin croaker  3.0726354908
## 7972     Benthopelagic    1         barred surfperch  3.5849142859
## 7973     Benthopelagic   14         barred sand bass  3.6705419090
## 7974     Benthopelagic    5       vermilion rockfish  3.5773310112
## 7975          Midwater   21                kelp bass  3.5703657716
## 7976     Benthopelagic    3           pile surfperch  3.6900278463
## 7977     Benthopelagic   19       vermilion rockfish  3.6062370159
## 7978           Pelagic    5            chub mackerel  3.2466031872
## 7979          Midwater   21                kelp bass  3.5864444050
## 7980          Midwater    5                queenfish  3.2260909726
## 7981     Benthopelagic   11            white croaker  3.4941519302
## 7982           Benthic    1           diamond turbot  3.7749903042
## 7983           Benthic   22         hornyhead turbot  3.5646708511
## 7984          Midwater    5                kelp bass  3.8117845483
## 7985     Benthopelagic   21          spotfin croaker  3.5282849154
## 7986           Pelagic    5            chub mackerel  3.3490175520
## 7987     Benthopelagic    5       vermilion rockfish  3.7642836323
## 7988     Benthopelagic    1         barred surfperch  3.6824504029
## 7989     Benthopelagic   11            white croaker  3.1360218346
## 7990     Benthopelagic    4         barred sand bass  3.3729250163
## 7991     Benthopelagic   17       vermilion rockfish  3.7181751348
## 7992     Benthopelagic   11          white surfperch  3.6864934473
## 7993     Benthopelagic    8          copper rockfish  3.6024716971
## 7994          Midwater   11            kelp rockfish  3.6087094835
## 7995     Benthopelagic    5            white croaker  3.7735175889
## 7996     Benthopelagic    4         barred surfperch  3.4726663858
## 7997     Benthopelagic    4       california corbina  3.3195053837
## 7998           Benthic   20       california halibut  3.1371564939
## 7999           Benthic    3           diamond turbot  3.3134022545
## 8000     Benthopelagic   12         barred sand bass  3.2746545928
## 8001          Midwater    1                 halfmoon  3.8852587361
## 8002     Benthopelagic   13       vermilion rockfish  3.4174715698
## 8003           Pelagic    5        pacific barracuda  3.6517973305
## 8004     Benthopelagic    3              black perch  3.7252509931
## 8005           Pelagic   21            chub mackerel  3.7130117178
## 8006     Benthopelagic   14            white croaker  3.3467216496
## 8007     Benthopelagic   24       vermilion rockfish  3.7060056339
## 8008     Benthopelagic   20       california corbina  3.6462945147
## 8009     Benthopelagic   21         barred sand bass  3.7848091091
## 8010     Benthopelagic   11            white croaker  3.5944588159
## 8011          Midwater   21                kelp bass  3.2747349419
## 8012          Midwater    1         shiner surfperch  3.8862479911
## 8013          Midwater    5         shiner surfperch  3.5547694238
## 8014     Benthopelagic   11           brown rockfish  3.3799711854
## 8015     Benthopelagic    5         barred sand bass  3.5246043942
## 8016           Pelagic    5          pacific sardine  3.7847330577
## 8017           Benthic   16         hornyhead turbot  3.7524988118
## 8018          Midwater    1         shiner surfperch  4.0126231873
## 8019     Benthopelagic    5                  opaleye  3.6528598424
## 8020     Benthopelagic   20            white croaker  3.5601325097
## 8021     Benthopelagic   21            white croaker  3.9293291940
## 8022     Benthopelagic   11          spotfin croaker  3.2972333245
## 8023           Benthic   22  california scorpionfish  3.4835777388
## 8024           Pelagic    5          pacific sardine  3.5162930501
## 8025     Benthopelagic    1                  opaleye  3.8698163123
## 8026          Midwater    1         shiner surfperch  3.7160836585
## 8027     Benthopelagic   11         barred surfperch  3.6494143635
## 8028          Midwater   11         shiner surfperch  3.4660546287
## 8029     Benthopelagic   12            white croaker  3.7328904341
## 8030          Midwater   21                queenfish  3.8030113480
## 8031           Benthic    4    shovelnose guitarfish  3.3415065117
## 8032     Benthopelagic   21         barred sand bass  3.5807409984
## 8033     Benthopelagic   10            white croaker  4.1624678837
## 8034     Benthopelagic    1       california corbina  3.4708929626
## 8035     Benthopelagic   11            white croaker  3.5453434303
## 8036          Midwater   11                kelp bass  3.7705821899
## 8037     Benthopelagic    3        spotted sand bass  3.8076274653
## 8038     Benthopelagic    3          copper rockfish  3.7749911426
## 8039           Pelagic   11            chub mackerel  4.1016042578
## 8040           Pelagic    5             market squid  3.7039223219
## 8041           Pelagic   11            chub mackerel  3.4665215517
## 8042           Pelagic   21            chub mackerel  3.4824174423
## 8043           Benthic   22  california scorpionfish  3.4912587576
## 8044          Midwater    4         shiner surfperch  3.5044324246
## 8045           Benthic   18  california scorpionfish  3.7822001727
## 8046     Benthopelagic    5                  opaleye  3.5264234430
## 8047          Midwater   21                queenfish  4.1884076214
## 8048     Benthopelagic    5          copper rockfish  3.7620884075
## 8049     Benthopelagic   11         barred sand bass  3.5544446293
## 8050     Benthopelagic   21        spotted sand bass  3.3245625261
## 8051     Benthopelagic   22            white croaker  3.2412696462
## 8052           Pelagic    5         northern anchovy  3.5487943142
## 8053     Benthopelagic   21            leopard shark  3.3208605857
## 8054          Midwater   11         shiner surfperch  3.3678661934
## 8055     Benthopelagic   21            white croaker  3.5788710212
## 8056           Benthic    5       california halibut  3.3300670368
## 8057          Midwater   11                kelp bass  3.5988048141
## 8058          Midwater   18                kelp bass  3.6398627980
## 8059     Benthopelagic    5            white croaker  3.5575225968
## 8060     Benthopelagic    1         barred surfperch  3.7221513359
## 8061     Benthopelagic   20            white croaker  3.7978438849
## 8062     Benthopelagic    4 brown smooth-hound shark  3.4923648567
## 8063     Benthopelagic   11         barred sand bass  3.5045025667
## 8064           Benthic   15         hornyhead turbot  4.0419429233
## 8065           Benthic    5  california scorpionfish  3.5099882703
## 8066     Benthopelagic   14       vermilion rockfish  3.8886254468
## 8067           Pelagic    5             market squid  3.6293314496
## 8068     Benthopelagic    5            black croaker  3.4943497258
## 8069     Benthopelagic    1         barred surfperch  3.4788803186
## 8070          Midwater    2        walleye surfperch  3.7989744858
## 8071     Benthopelagic   16       vermilion rockfish  3.6051713227
## 8072           Pelagic    4            chub mackerel  3.7343269640
## 8073     Benthopelagic    1        yellowfin croaker  3.2365558428
## 8074          Midwater    5                kelp bass  3.5006213245
## 8075     Benthopelagic    6          copper rockfish  3.5048593388
## 8076           Benthic    9         hornyhead turbot  3.6524271038
## 8077     Benthopelagic   13           brown rockfish  3.5289962022
## 8078     Benthopelagic    4            white croaker  3.5017647705
## 8079     Benthopelagic   21        spotted sand bass  3.7436021739
## 8080           Pelagic    6             market squid  3.7940341578
## 8081     Benthopelagic   11            white croaker  3.8570282916
## 8082     Benthopelagic   16       vermilion rockfish  3.9607461143
## 8083           Benthic    5           diamond turbot  3.5920921848
## 8084          Midwater    5                kelp bass  3.8464378976
## 8085     Benthopelagic    3        rainbow surfperch  3.5517340108
## 8086           Benthic   21       california halibut  3.7129504777
## 8087     Benthopelagic   21            white croaker  3.5352854141
## 8088     Benthopelagic   11          white surfperch  3.8267909159
## 8089     Benthopelagic    4        yellowfin croaker  3.5852007552
## 8090           Pelagic    5         northern anchovy  3.9844696727
## 8091           Pelagic   21         northern anchovy  3.6594819298
## 8092     Benthopelagic   21        yellowfin croaker  3.3559089830
## 8093     Benthopelagic   13       vermilion rockfish  3.2205064832
## 8094     Benthopelagic   11         barred sand bass  3.7492423929
## 8095     Benthopelagic    1       california corbina  3.6802133318
## 8096     Benthopelagic    5       vermilion rockfish  3.6636231262
## 8097          Midwater    1                 halfmoon  3.9858497110
## 8098     Benthopelagic   23          starry rockfish  3.9336594343
## 8099     Benthopelagic    9          copper rockfish  3.7494539236
## 8100     Benthopelagic    5            white croaker  3.8488681198
## 8101     Benthopelagic   12         barred sand bass  3.6653868415
## 8102     Benthopelagic   23            white croaker  3.5027700703
## 8103           Pelagic    5            chub mackerel  3.6252102434
## 8104          Midwater    4                kelp bass  3.5838980299
## 8105           Pelagic    5         northern anchovy  3.5882834139
## 8106     Benthopelagic    1        spotted sand bass  3.4136528924
## 8107           Benthic   16         hornyhead turbot  3.5600797488
## 8108          Midwater   11                kelp bass  3.3812089931
## 8109           Pelagic   21            chub mackerel  3.2661727719
## 8110     Benthopelagic    1          ocean whitefish  3.7489186407
## 8111     Benthopelagic    1       california corbina  3.3871436790
## 8112     Benthopelagic   21        spotted sand bass  3.7035412886
## 8113           Pelagic    5          pacific sardine  3.6965895570
## 8114     Benthopelagic    4                  opaleye  3.8680051675
## 8115           Pelagic    6          pacific sardine  3.4743347597
## 8116           Pelagic   11            chub mackerel  3.9685907411
## 8117          Midwater   21                kelp bass  3.9214678408
## 8118     Benthopelagic    1     california sheephead  3.3690864310
## 8119          Midwater   10                kelp bass  3.7329142282
## 8120     Benthopelagic   13            white croaker  3.7702641307
## 8121           Pelagic    5            chub mackerel  3.6538984269
## 8122           Benthic   15         hornyhead turbot  3.8007465994
## 8123     Benthopelagic   24          starry rockfish  3.4218487949
## 8124     Benthopelagic   14       vermilion rockfish  3.7587700270
## 8125     Benthopelagic   22            white croaker  3.6323182444
## 8126           Benthic    5    shovelnose guitarfish  3.3755022645
## 8127           Benthic   12  california scorpionfish  3.6705632078
## 8128     Benthopelagic   11   gray smoothhound shark  3.6444773811
## 8129     Benthopelagic    3        rainbow surfperch  3.5890628290
## 8130     Benthopelagic    1                  opaleye  3.7580480490
## 8131           Pelagic    5             market squid  3.5930479128
## 8132           Pelagic    4            chub mackerel  3.8783945562
## 8133           Pelagic    5          pacific sardine  3.8226682018
## 8134     Benthopelagic   15            white croaker  3.4896541289
## 8135           Pelagic    5             market squid  3.5942593153
## 8136           Pelagic   21            chub mackerel  3.7987886625
## 8137     Benthopelagic   11           brown rockfish  3.4463873623
## 8138     Benthopelagic   20        yellowfin croaker  3.8640795786
## 8139     Benthopelagic   22         barred sand bass  3.6729777774
## 8140           Pelagic    5          pacific sardine  3.5155769669
## 8141           Benthic   13         hornyhead turbot  3.2807785487
## 8142          Midwater   12                kelp bass  3.4864782177
## 8143     Benthopelagic   22            white croaker  3.4399082322
## 8144           Pelagic    6             market squid  3.8726099621
## 8145           Pelagic    5          pacific sardine  3.6721991537
## 8146     Benthopelagic    4       california corbina  3.6324936238
## 8147     Benthopelagic   21        spotted sand bass  3.9543199319
## 8148     Benthopelagic    6    greenspotted rockfish  3.5620164253
## 8149           Pelagic    5             market squid  3.9131579180
## 8150     Benthopelagic    4            white croaker  4.1165543231
## 8151     Benthopelagic    1       california corbina  3.5258513195
## 8152          Midwater    4         shiner surfperch  3.6104379953
## 8153     Benthopelagic   23       vermilion rockfish  3.5909387224
## 8154     Benthopelagic   20       california corbina  3.7749479577
## 8155           Pelagic    5            chub mackerel  3.8245846803
## 8156     Benthopelagic   21         barred sand bass  3.7028661044
## 8157           Benthic    5  california scorpionfish  3.7192103524
## 8158           Pelagic    5             market squid  3.5746538691
## 8159     Benthopelagic   21        yellowfin croaker  4.1345186870
## 8160           Benthic    5          longfin sanddab  3.5941302560
## 8161     Benthopelagic    5       vermilion rockfish  4.2218535889
## 8162          Midwater   13     chilipepper rockfish  3.5751825355
## 8163     Benthopelagic    4        yellowfin croaker  3.6284740069
## 8164     Benthopelagic   21        yellowfin croaker  3.7973952838
## 8165     Benthopelagic    1        yellowfin croaker  3.5151553590
## 8166     Benthopelagic    3                  opaleye  3.3922984209
## 8167     Benthopelagic   11        yellowfin croaker  3.6273329210
## 8168           Benthic   15         hornyhead turbot  3.5940294376
## 8169          Midwater    3         shiner surfperch  3.7170707672
## 8170     Benthopelagic    3        spotted sand bass  4.0010841500
## 8171           Benthic   13         hornyhead turbot  3.3347260870
## 8172     Benthopelagic    7       vermilion rockfish  3.3262400357
## 8173          Midwater    3                kelp bass  3.4433928919
## 8174     Benthopelagic   22       vermilion rockfish  3.8442885075
## 8175     Benthopelagic   11          gopher rockfish  3.4697448479
## 8176     Benthopelagic    4         barred sand bass  3.1871767495
## 8177     Benthopelagic    5         barred sand bass  3.3867633255
## 8178          Midwater   10                kelp bass  3.6961684940
## 8179           Benthic    4    california lizardfish  3.4193356159
## 8180     Benthopelagic    8            white croaker  3.7722999138
## 8181          Midwater   11         shiner surfperch  4.1829184417
## 8182     Benthopelagic    1     california sheephead  3.7160652416
## 8183     Benthopelagic    5            white croaker  3.4317492114
## 8184     Benthopelagic   11            white croaker  3.6892740778
## 8185           Benthic    1           diamond turbot  3.6043492456
## 8186     Benthopelagic    6       vermilion rockfish  3.3541792024
## 8187           Pelagic   21            chub mackerel  3.6300291152
## 8188          Midwater    4           striped mullet  3.5298867798
## 8189           Benthic   19  california scorpionfish  3.4137548536
## 8190          Midwater    1         shiner surfperch  3.8678871343
## 8191     Benthopelagic   11         barred surfperch  3.3228568600
## 8192     Benthopelagic   11        spotted sand bass  3.6959914206
## 8193           Pelagic    5            chub mackerel  3.7235495197
## 8194           Pelagic    5            chub mackerel  3.4948401012
## 8195     Benthopelagic   11            white croaker  3.8587155765
## 8196     Benthopelagic    5           brown rockfish  3.8705850201
## 8197          Midwater    4           striped mullet  3.7827476380
## 8198          Midwater   21                kelp bass  3.3644390397
## 8199     Benthopelagic   21        yellowfin croaker  4.0022112065
## 8200     Benthopelagic    1         barred surfperch  3.5603437072
## 8201     Benthopelagic   14          starry rockfish  3.2649466369
## 8202     Benthopelagic   11 brown smooth-hound shark  3.6220735680
## 8203     Benthopelagic   11           brown rockfish  3.7444541045
## 8204          Midwater    1        walleye surfperch  3.8658270472
## 8205     Benthopelagic   20              black perch  3.6619872589
## 8206           Benthic   10  california scorpionfish  3.5324775878
## 8207          Midwater   22                kelp bass  3.7084111156
## 8208     Benthopelagic    1        rainbow surfperch  3.6653897424
## 8209          Midwater   24      squarespot rockfish  4.1137141446
## 8210     Benthopelagic   21        yellowfin croaker  3.7858085727
## 8211     Benthopelagic   11       vermilion rockfish  3.6869708233
## 8212     Benthopelagic   11         barred sand bass  3.4333679650
## 8213           Benthic   22  california scorpionfish  3.6395201378
## 8214     Benthopelagic    1                  opaleye  3.4235784639
## 8215     Benthopelagic   21          white surfperch  3.2147454245
## 8216          Midwater    4           striped mullet  3.6532074957
## 8217           Pelagic   21            chub mackerel  3.6338133166
## 8218     Benthopelagic   22       vermilion rockfish  3.4696628888
## 8219     Benthopelagic   13            white croaker  3.4698836836
## 8220           Benthic    8  california scorpionfish  3.5619118834
## 8221     Benthopelagic    5       vermilion rockfish  3.6270782412
## 8222     Benthopelagic    3        rainbow surfperch  3.6669340996
## 8223     Benthopelagic    9   greenblotched rockfish  3.1710783313
## 8224           Pelagic   21            chub mackerel  3.4825637618
## 8225     Benthopelagic    5            white croaker  3.6830087506
## 8226           Pelagic   21            chub mackerel  3.3991233874
## 8227           Pelagic    5          pacific sardine  3.5986485069
## 8228          Midwater   12                kelp bass  3.8565000464
## 8229     Benthopelagic   11         barred sand bass  3.6701364297
## 8230           Benthic    8         hornyhead turbot  3.6937778775
## 8231           Benthic    4           spotted turbot  3.7896441952
## 8232           Benthic    5  california scorpionfish  3.7667478472
## 8233          Midwater   21                kelp bass  3.4911464325
## 8234     Benthopelagic    1       california corbina  3.2550027652
## 8235           Pelagic   21            chub mackerel  3.5218160431
## 8236           Benthic    3           diamond turbot  3.8492461236
## 8237           Pelagic   11            chub mackerel  4.0638653603
## 8238     Benthopelagic    9   greenblotched rockfish  3.2822432465
## 8239     Benthopelagic    5            white croaker  3.8367317568
## 8240     Benthopelagic    4        yellowfin croaker  4.0458326330
## 8241          Midwater    7      squarespot rockfish  3.4011512803
## 8242     Benthopelagic   15        speckled rockfish  3.7660993854
## 8243     Benthopelagic   11          white surfperch  3.7447010005
## 8244     Benthopelagic   13       vermilion rockfish  3.7461936673
## 8245     Benthopelagic    2        spotted sand bass  3.4996916903
## 8246     Benthopelagic   15       vermilion rockfish  3.4183374810
## 8247     Benthopelagic   13            white croaker  3.6217886416
## 8248     Benthopelagic    1              black perch  3.6384582984
## 8249     Benthopelagic    8         barred sand bass  3.5241051779
## 8250           Pelagic   11            chub mackerel  3.2593141888
## 8251           Pelagic    6             market squid  3.7548388586
## 8252     Benthopelagic   10            white croaker  3.8316261381
## 8253           Benthic    4           spotted turbot  3.8483102581
## 8254          Midwater   11                kelp bass  3.6910896438
## 8255     Benthopelagic    1              black perch  4.0801312608
## 8256     Benthopelagic   21            white croaker  3.7609943093
## 8257     Benthopelagic   20       california corbina  3.6422987419
## 8258     Benthopelagic   11              black perch  3.4442007138
## 8259           Pelagic   21            chub mackerel  3.3711109663
## 8260     Benthopelagic    1        yellowfin croaker  3.6734118858
## 8261     Benthopelagic   10           brown rockfish  3.5611629173
## 8262           Pelagic   11            chub mackerel  3.5110992894
## 8263     Benthopelagic   11          gopher rockfish  3.3576880093
## 8264     Benthopelagic   21        spotted sand bass  3.5424278748
## 8265     Benthopelagic   23       vermilion rockfish  3.4799108667
## 8266           Pelagic    5            chub mackerel  3.5883515397
## 8267          Midwater    3         shiner surfperch  3.8294222512
## 8268          Midwater   11         shiner surfperch  3.6921992714
## 8269     Benthopelagic   20         barred surfperch  3.7908630992
## 8270     Benthopelagic    3         barred surfperch  2.9743299676
## 8271     Benthopelagic   21        yellowfin croaker  3.3797111968
## 8272     Benthopelagic    5       california corbina  3.6113104238
## 8273     Benthopelagic    5            white croaker  3.5060458449
## 8274           Pelagic    5             market squid  3.4469021118
## 8275     Benthopelagic   17            white croaker  3.8143239977
## 8276     Benthopelagic   20         barred sand bass  3.0865097424
## 8277     Benthopelagic    3              black perch  3.5688067313
## 8278     Benthopelagic   11            white croaker  3.4257263492
## 8279     Benthopelagic    5                  opaleye  3.5288593904
## 8280     Benthopelagic    5            white croaker  3.8074757938
## 8281          Midwater   21                kelp bass  3.8161543772
## 8282     Benthopelagic   23       vermilion rockfish  3.7012910238
## 8283     Benthopelagic    4       california corbina  3.6866473095
## 8284     Benthopelagic   11              black perch  3.8133524329
## 8285     Benthopelagic    5                  opaleye  3.5091587319
## 8286     Benthopelagic    5            white croaker  3.6938491362
## 8287     Benthopelagic   11        spotted sand bass  3.5392428847
## 8288           Pelagic   21            chub mackerel  3.8814360440
## 8289           Pelagic    5         northern anchovy  3.2795675076
## 8290     Benthopelagic    3        spotted sand bass  3.4911650478
## 8291     Benthopelagic   20           pile surfperch  3.6418129509
## 8292           Pelagic    5         northern anchovy  3.5507058075
## 8293           Benthic   11         hornyhead turbot  3.5775718038
## 8294     Benthopelagic   11            black croaker  3.6598932269
## 8295     Benthopelagic    1          white surfperch  3.5682327683
## 8296     Benthopelagic   11         barred sand bass  3.5678864797
## 8297     Benthopelagic   14            white croaker  3.9545137552
## 8298     Benthopelagic    3       california corbina  3.4568475865
## 8299           Pelagic    5            chub mackerel  3.3715770579
## 8300     Benthopelagic   12            white croaker  3.4880656536
## 8301     Benthopelagic    1        yellowfin croaker  3.7923084583
## 8302     Benthopelagic   22          starry rockfish  3.4958856831
## 8303     Benthopelagic    5                  opaleye  3.5436690814
## 8304           Pelagic   11            chub mackerel  3.6388509787
## 8305     Benthopelagic   22            white croaker  3.3684348625
## 8306     Benthopelagic   17        speckled rockfish  3.6518862093
## 8307     Benthopelagic   11         barred sand bass  3.8256934619
## 8308     Benthopelagic   21        spotted sand bass  4.0053557977
## 8309     Benthopelagic    1        spotted sand bass  3.4823725092
## 8310     Benthopelagic    4           pile surfperch  3.5158102492
## 8311     Benthopelagic    5                  opaleye  3.6532175944
## 8312          Midwater    2                kelp bass  3.5529466388
## 8313     Benthopelagic   10              black perch  3.6418339542
## 8314           Pelagic    5          pacific sardine  3.8584069847
## 8315          Midwater    1         shiner surfperch  3.4855049557
## 8316     Benthopelagic    1         barred surfperch  3.4139840333
## 8317     Benthopelagic    2            white croaker  3.6816047480
## 8318     Benthopelagic    1            white croaker  3.6170189817
## 8319     Benthopelagic    5         barred sand bass  3.5182658326
## 8320     Benthopelagic   24       vermilion rockfish  4.0983741891
## 8321          Midwater    3          canary rockfish  3.3884304930
## 8322     Benthopelagic   18            white croaker  3.8988476561
## 8323     Benthopelagic    7           brown rockfish  3.5947123115
## 8324          Midwater    5                queenfish  3.8740376694
## 8325           Benthic    1           diamond turbot  3.8569492442
## 8326     Benthopelagic    1            white croaker  3.6103622538
## 8327           Pelagic    5             market squid  3.6487287308
## 8328           Pelagic    5             market squid  3.4112373611
## 8329     Benthopelagic    3        spotted sand bass  3.8837943382
## 8330           Pelagic    5             market squid  3.6357763076
## 8331          Midwater   11                kelp bass  3.7597685193
## 8332           Benthic    5       california halibut  3.1820916338
## 8333           Benthic   19         hornyhead turbot  3.5035437185
## 8334           Pelagic    5         northern anchovy  3.7571913427
## 8335          Midwater   21                kelp bass  3.6214860510
## 8336           Pelagic   21            chub mackerel  3.5353252804
## 8337          Midwater    1                queenfish  3.4780581740
## 8338     Benthopelagic    3        spotted sand bass  3.4445460836
## 8339     Benthopelagic   14    greenspotted rockfish  3.8608875124
## 8340     Benthopelagic    5            white croaker  3.7337267619
## 8341     Benthopelagic   10   greenblotched rockfish  3.4322350417
## 8342     Benthopelagic    5                  opaleye  3.7426279649
## 8343     Benthopelagic    1            white croaker  3.6948334541
## 8344           Pelagic    5          pacific sardine  3.6065367469
## 8345          Midwater    1            blue rockfish  3.5271286864
## 8346          Midwater   21                kelp bass  3.3609435921
## 8347     Benthopelagic    3         barred sand bass  3.3447870065
## 8348           Pelagic   21            chub mackerel  3.8605899256
## 8349     Benthopelagic    4                  opaleye  3.6655890912
## 8350     Benthopelagic    1     california sheephead  3.6389515964
## 8351     Benthopelagic   11              black perch  3.4398102698
## 8352     Benthopelagic    1        yellowfin croaker  3.6066010438
## 8353     Benthopelagic   18              black perch  3.5508667890
## 8354     Benthopelagic    1        yellowfin croaker  3.4710108046
## 8355     Benthopelagic   21        spotted sand bass  3.7040346717
## 8356     Benthopelagic    5                  opaleye  3.7282922165
## 8357     Benthopelagic   12       vermilion rockfish  3.5845460804
## 8358     Benthopelagic   18       vermilion rockfish  3.5455820101
## 8359     Benthopelagic    3              black perch  3.7300572675
## 8360          Midwater    3                kelp bass  3.7587051833
## 8361     Benthopelagic   12            white croaker  3.4871053972
## 8362          Midwater   21                kelp bass  3.4856593022
## 8363          Midwater    4         shiner surfperch  3.5313829289
## 8364     Benthopelagic   11          gopher rockfish  3.8953125201
## 8365     Benthopelagic    3       vermilion rockfish  3.7014259148
## 8366     Benthopelagic   14         barred sand bass  3.3999151231
## 8367          Midwater   21                kelp bass  3.3533407757
## 8368          Midwater    1                queenfish  3.3110390703
## 8369     Benthopelagic   22          starry rockfish  3.6714997022
## 8370     Benthopelagic   20            white croaker  3.9779902859
## 8371     Benthopelagic    4       california corbina  3.4782962690
## 8372     Benthopelagic    8              black perch  3.5110817574
## 8373           Benthic   20         hornyhead turbot  3.5295586718
## 8374          Midwater   21                kelp bass  3.8870009315
## 8375     Benthopelagic    4              black perch  3.6634536149
## 8376     Benthopelagic    4            white croaker  3.4067135355
## 8377     Benthopelagic    4              black perch  4.0941595024
## 8378     Benthopelagic   21        yellowfin croaker  3.3501189727
## 8379     Benthopelagic    1                  opaleye  3.5487591368
## 8380           Benthic   21         hornyhead turbot  3.7876542783
## 8381     Benthopelagic    4         barred surfperch  3.7780240920
## 8382          Midwater   11                kelp bass  3.8771776616
## 8383           Pelagic    5             market squid  3.5662202322
## 8384           Benthic    1           diamond turbot  3.8963773593
## 8385     Benthopelagic    1            white croaker  3.5939276481
## 8386     Benthopelagic    4              black perch  3.6805067467
## 8387           Pelagic    6             market squid  3.5444757383
## 8388     Benthopelagic   11            white croaker  3.6255990774
## 8389     Benthopelagic    9            white croaker  3.6190022127
## 8390           Pelagic   21         northern anchovy  3.3988151023
## 8391     Benthopelagic   11           brown rockfish  3.6941324386
## 8392     Benthopelagic   11          ocean whitefish  3.4650528946
## 8393           Benthic   17         hornyhead turbot  3.7363564416
## 8394           Benthic   11  california scorpionfish  3.9580766004
## 8395           Benthic   20           diamond turbot  3.6434312648
## 8396     Benthopelagic    4        spotted sand bass  3.9620632269
## 8397          Midwater   11           olive rockfish  3.6143766643
## 8398     Benthopelagic    1              black perch  3.5853255297
## 8399     Benthopelagic    5            white croaker  4.0231275186
## 8400           Pelagic    5         northern anchovy  3.7917672132
## 8401     Benthopelagic   11        yellowfin croaker  0.8535273818
## 8402          Midwater   16                kelp bass  0.7794632418
## 8403     Benthopelagic   11            white croaker  0.6525184969
## 8404     Benthopelagic   11              black perch  0.7728338237
## 8405          Midwater   18                kelp bass  0.8748039087
## 8406     Benthopelagic    3              black perch  0.3554501247
## 8407          Midwater    1                kelp bass  0.5189256793
## 8408     Benthopelagic   15            white croaker  0.8441637920
## 8409     Benthopelagic   22         barred sand bass  0.7521141324
## 8410     Benthopelagic    1            white croaker  0.7970171616
## 8411     Benthopelagic   21        yellowfin croaker  0.6644201879
## 8412           Benthic    5  california scorpionfish  0.4715079885
## 8413           Pelagic   21            chub mackerel  0.5878432960
## 8414           Benthic    1           spotted turbot  0.8155031152
## 8415     Benthopelagic   11          gopher rockfish  0.6143746854
## 8416     Benthopelagic    1            white croaker  0.5249139082
## 8417     Benthopelagic    5       california corbina  0.7778687630
## 8418     Benthopelagic    1              black perch  0.6712497815
## 8419     Benthopelagic   11          spotfin croaker  0.8819064884
## 8420     Benthopelagic    8          copper rockfish  0.6585753407
## 8421     Benthopelagic    4        yellowfin croaker  0.7346708514
## 8422     Benthopelagic   12            white croaker  0.7045427579
## 8423          Midwater    8      yellowtail rockfish  0.8694974109
## 8424          Midwater    3                kelp bass  0.3912291478
## 8425     Benthopelagic    5          spotfin croaker  0.6125837515
## 8426           Pelagic    5          pacific sardine  0.7169249522
## 8427           Benthic    5  california scorpionfish  0.7795407127
## 8428     Benthopelagic    3         barred surfperch  0.6279777367
## 8429           Pelagic    6          pacific sardine  0.6665445403
## 8430     Benthopelagic   11       vermilion rockfish  0.7763698255
## 8431           Pelagic    5         northern anchovy  1.0959945379
## 8432           Pelagic   11            chub mackerel  0.7606428026
## 8433           Pelagic   21            chub mackerel  0.8355607558
## 8434          Midwater    5                top smelt  0.7083323718
## 8435          Midwater    2                queenfish  0.8039662691
## 8436     Benthopelagic    4            white croaker  0.8259815077
## 8437     Benthopelagic   18              black perch  0.7080432907
## 8438          Midwater   21                kelp bass  0.7189413355
## 8439     Benthopelagic    4          copper rockfish  0.7023806093
## 8440     Benthopelagic   20              black perch  0.5118642904
## 8441           Benthic    1         speckled sanddab  0.5669366483
## 8442     Benthopelagic   18            white croaker  0.7879027596
## 8443     Benthopelagic   11         barred sand bass  0.7866516032
## 8444     Benthopelagic   11          spotfin croaker  0.8801185853
## 8445           Pelagic   11            chub mackerel  0.9595670755
## 8446           Pelagic    5            chub mackerel  0.6995418438
## 8447           Benthic   18         hornyhead turbot  0.7098690526
## 8448           Benthic   12  california scorpionfish  0.8803547444
## 8449           Benthic    1             fantail sole  0.4906126616
## 8450          Midwater   21                kelp bass  0.5786149997
## 8451     Benthopelagic    3          white surfperch  0.8994900069
## 8452     Benthopelagic   13       vermilion rockfish  0.6446780358
## 8453     Benthopelagic   18            white croaker  0.7578489172
## 8454          Midwater    1         shiner surfperch  0.9792390806
## 8455     Benthopelagic   14            white croaker  0.7660859134
## 8456          Midwater   11                kelp bass  0.6769853222
## 8457           Benthic    5         speckled sanddab  0.4869265458
## 8458           Benthic   17  california scorpionfish  0.6419302170
## 8459     Benthopelagic   21       california corbina  1.0117677187
## 8460           Benthic   11  california scorpionfish  0.6672346969
## 8461           Benthic   17         hornyhead turbot  0.8906356725
## 8462     Benthopelagic   12              black perch  0.7809295599
## 8463     Benthopelagic    1            white croaker  0.5988100107
## 8464     Benthopelagic    5       california corbina  0.5855660372
## 8465     Benthopelagic    4              black perch  0.6041760143
## 8466     Benthopelagic    5            white croaker  0.5472876625
## 8467     Benthopelagic    1            white croaker  0.7739008766
## 8468           Benthic   14         hornyhead turbot  0.3083855042
## 8469           Benthic    4    shovelnose guitarfish  0.6680765257
## 8470          Midwater    1        walleye surfperch  0.7628300189
## 8471          Midwater   18                kelp bass  0.5438930403
## 8472     Benthopelagic    5            white croaker  0.8891969559
## 8473     Benthopelagic    5         barred sand bass  0.8100381853
## 8474          Midwater    2                kelp bass  0.6984405552
## 8475     Benthopelagic   21         barred sand bass  0.6872230550
## 8476     Benthopelagic   12       vermilion rockfish  0.9685165691
## 8477     Benthopelagic    2       quillback rockfish  0.9985299782
## 8478     Benthopelagic   21            white croaker  0.6347289749
## 8479     Benthopelagic   16       vermilion rockfish  0.6770091948
## 8480     Benthopelagic    3              black perch  0.5735908100
## 8481           Benthic    8  california scorpionfish  0.6817142375
## 8482           Pelagic    5          pacific sardine  0.7395384270
## 8483           Benthic    5  california scorpionfish  0.9455645585
## 8484     Benthopelagic    8          copper rockfish  0.6573087422
## 8485           Pelagic    5          pacific sardine  1.0417920378
## 8486     Benthopelagic    2            white croaker  0.8825427455
## 8487     Benthopelagic    1            white croaker  0.9021911224
## 8488     Benthopelagic   21            leopard shark  1.0655942142
## 8489     Benthopelagic   14              black perch  0.8106104908
## 8490     Benthopelagic   16       vermilion rockfish  0.5472874588
## 8491     Benthopelagic   10       vermilion rockfish  0.4095206876
## 8492          Midwater   21                kelp bass  0.4581723689
## 8493     Benthopelagic    1            rosy rockfish  0.7472396708
## 8494          Midwater    3         shiner surfperch  0.7695157745
## 8495     Benthopelagic   11            white croaker  0.6495919630
## 8496     Benthopelagic    1         barred surfperch  0.7519298128
## 8497          Midwater    1         shiner surfperch  0.5973257166
## 8498           Pelagic   21            chub mackerel  0.5314652831
## 8499     Benthopelagic   16       vermilion rockfish  0.5685244622
## 8500     Benthopelagic    7        speckled rockfish  0.6742162859
## 8501          Midwater    4         shiner surfperch  0.9167394128
## 8502     Benthopelagic   11       vermilion rockfish  0.5784632015
## 8503           Pelagic    5            chub mackerel  0.6407143182
## 8504          Midwater   14                kelp bass  0.5192041697
## 8505     Benthopelagic    3              black perch  0.5833990350
## 8506     Benthopelagic    5            black croaker  0.6314021003
## 8507          Midwater    5                top smelt  0.6092550853
## 8508          Midwater   11                top smelt  0.9134155393
## 8509           Benthic   10         hornyhead turbot  0.7405460359
## 8510           Pelagic    5             market squid  0.7435951647
## 8511     Benthopelagic   12              black perch  0.6139464184
## 8512     Benthopelagic    1       california corbina  0.9653531258
## 8513     Benthopelagic    3         barred surfperch  0.7455909216
## 8514     Benthopelagic   19       vermilion rockfish  0.7040115730
## 8515     Benthopelagic   15        speckled rockfish  0.4166963108
## 8516           Pelagic    5          pacific sardine  0.8969368103
## 8517     Benthopelagic    4         barred surfperch  0.5241084394
## 8518     Benthopelagic   11              black perch  0.8186978636
## 8519          Midwater   11                kelp bass  0.7881990305
## 8520     Benthopelagic   11         barred surfperch  0.8554623599
## 8521           Pelagic    5         northern anchovy  0.8694052744
## 8522           Pelagic    5          pacific sardine  0.9120760037
## 8523     Benthopelagic   11            white croaker  1.0027392618
## 8524     Benthopelagic   19            white croaker  0.5771139776
## 8525     Benthopelagic    3              black perch  0.8466824086
## 8526     Benthopelagic   19       vermilion rockfish  0.7728795560
## 8527     Benthopelagic   12           brown rockfish  0.6551946039
## 8528     Benthopelagic    6          copper rockfish  0.7896134467
## 8529           Pelagic    5             market squid  0.8409258389
## 8530     Benthopelagic   22              black perch  0.9638501091
## 8531           Benthic   20       california halibut  0.7628609564
## 8532     Benthopelagic    2        spotted sand bass  1.0805392788
## 8533           Benthic    1           diamond turbot  0.5649794180
## 8534           Benthic   23         hornyhead turbot  0.5793880300
## 8535     Benthopelagic    5         barred sand bass  0.6682529955
## 8536           Benthic    4    california lizardfish  0.6739352220
## 8537     Benthopelagic   11 brown smooth-hound shark  0.8488770149
## 8538     Benthopelagic   21            white croaker  0.6565890699
## 8539     Benthopelagic    4            flag rockfish  0.7116929180
## 8540           Benthic   12         hornyhead turbot  0.8454796080
## 8541           Benthic    4    shovelnose guitarfish  0.8488704605
## 8542     Benthopelagic   14            white croaker  0.7512361958
## 8543     Benthopelagic    5     california sheephead  0.7220075397
## 8544           Pelagic    5         northern anchovy  0.6815555311
## 8545     Benthopelagic   20       vermilion rockfish  0.5936556420
## 8546     Benthopelagic    2         barred surfperch  0.8236517171
## 8547          Midwater   17      squarespot rockfish  0.5656238865
## 8548     Benthopelagic   18       vermilion rockfish  0.7136140766
## 8549     Benthopelagic   11            white croaker  0.5094558219
## 8550     Benthopelagic    4         barred sand bass  0.7320489399
## 8551          Midwater    4                top smelt  0.6686160360
## 8552           Benthic   17         hornyhead turbot  0.7082074107
## 8553     Benthopelagic   11            white croaker  0.8211637074
## 8554     Benthopelagic   11         barred surfperch  0.7617273048
## 8555           Pelagic    5             market squid  0.7584067402
## 8556           Benthic   19  california scorpionfish  0.5872796057
## 8557           Pelagic    5             market squid  0.5668301367
## 8558     Benthopelagic   10         barred sand bass  0.7192270279
## 8559           Pelagic   11            chub mackerel  0.9310604669
## 8560     Benthopelagic   11              black perch  0.7561272263
## 8561     Benthopelagic   22              black perch  0.8776482510
## 8562     Benthopelagic   12            white croaker  0.7943939467
## 8563           Benthic    5    shovelnose guitarfish  0.6877801537
## 8564     Benthopelagic   20       california corbina  0.9704980704
## 8565     Benthopelagic    5                  opaleye  0.8682673971
## 8566     Benthopelagic   16       vermilion rockfish  0.7763145332
## 8567     Benthopelagic    1        spotted sand bass  0.7671926676
## 8568     Benthopelagic    3        rainbow surfperch  0.6144719546
## 8569     Benthopelagic   17            white croaker  0.6781744519
## 8570           Benthic   22  california scorpionfish  0.7941420326
## 8571          Midwater   21                kelp bass  0.7374409180
## 8572           Pelagic    5             market squid  0.8891493022
## 8573     Benthopelagic   21            white croaker  0.7960644108
## 8574     Benthopelagic    1        rainbow surfperch  0.8873753074
## 8575     Benthopelagic    4       california corbina  0.7217633972
## 8576           Pelagic   21            chub mackerel  0.8426434932
## 8577     Benthopelagic   20            white croaker  0.6668357624
## 8578           Pelagic    6          pacific sardine  0.8262210539
## 8579          Midwater    4           striped mullet  0.9390081867
## 8580           Pelagic   21            chub mackerel  0.8219042513
## 8581           Benthic    1         speckled sanddab  0.7043349550
## 8582     Benthopelagic   11            white croaker  0.7498514072
## 8583           Benthic    8         hornyhead turbot  0.6466078940
## 8584          Midwater    4         shiner surfperch  0.5999334264
## 8585     Benthopelagic   10       vermilion rockfish  0.7868428884
## 8586     Benthopelagic    1        rainbow surfperch  0.2064631470
## 8587          Midwater   11         shiner surfperch  0.7715359830
## 8588     Benthopelagic    5            leopard shark  0.6709052791
## 8589           Pelagic   21            chub mackerel  0.5322326231
## 8590     Benthopelagic   11              black perch  0.8732616521
## 8591          Midwater    4         shiner surfperch  0.6353483571
## 8592     Benthopelagic   14              black perch  0.6530138491
## 8593          Midwater   11                kelp bass  0.6264687823
## 8594     Benthopelagic   18            white croaker  1.0296210038
## 8595          Midwater    4                top smelt  0.4970045609
## 8596     Benthopelagic    5   gray smoothhound shark  0.7884014711
## 8597     Benthopelagic   23            white croaker  0.8196426504
## 8598           Pelagic   21           slough anchovy  0.8842759511
## 8599          Midwater    1                queenfish  0.7141689523
## 8600     Benthopelagic   21            white croaker  0.9355381327
## 8601          Midwater    1                kelp bass  0.8737039762
## 8602     Benthopelagic   24       vermilion rockfish  0.7009377395
## 8603           Pelagic   21            chub mackerel  0.9600886725
## 8604           Pelagic    5          pacific sardine  0.7758416401
## 8605     Benthopelagic    4       california corbina  0.6440993238
## 8606     Benthopelagic    3       california corbina  0.7127382443
## 8607     Benthopelagic   16              black perch  0.5915078874
## 8608           Pelagic    5          pacific sardine  0.7755169281
## 8609           Pelagic   21            chub mackerel  0.4930766807
## 8610     Benthopelagic   21         barred sand bass  0.7171542631
## 8611           Pelagic    6          pacific sardine  0.7093130488
## 8612     Benthopelagic    5        yellowfin croaker  0.4116455725
## 8613           Benthic    1  california scorpionfish  0.8933316524
## 8614          Midwater    4         shiner surfperch  0.7869076082
## 8615           Benthic    5  california scorpionfish  0.8192941662
## 8616     Benthopelagic    5       california corbina  0.3140000872
## 8617           Benthic   19         hornyhead turbot  0.7059782631
## 8618     Benthopelagic    2              black perch  0.9091273392
## 8619     Benthopelagic   21        spotted sand bass  0.5639301861
## 8620     Benthopelagic    7       vermilion rockfish  0.8313838724
## 8621     Benthopelagic    3              black perch  0.7895039599
## 8622           Pelagic   11            chub mackerel  0.7761072379
## 8623     Benthopelagic   22            white croaker  0.8709528626
## 8624          Midwater    2         shiner surfperch  0.8077620511
## 8625     Benthopelagic   11   gray smoothhound shark  0.7891503162
## 8626     Benthopelagic   19            white croaker  0.7421987662
## 8627     Benthopelagic   11            white croaker  0.5466336866
## 8628     Benthopelagic    5            white croaker  0.7689773126
## 8629     Benthopelagic   21          white surfperch  0.6215171013
## 8630          Midwater    5                 halfmoon  0.4583872508
## 8631          Midwater   10                kelp bass  0.9244811682
## 8632          Midwater    1                kelp bass  0.4796014443
## 8633          Midwater    3         shiner surfperch  0.7989734089
## 8634     Benthopelagic   10            white croaker  0.9528415515
## 8635          Midwater    5                queenfish  0.5845890069
## 8636     Benthopelagic    1            white croaker  0.7434737026
## 8637     Benthopelagic    4              black perch  0.8884850871
## 8638     Benthopelagic    1         barred sand bass  0.6632655220
## 8639          Midwater    5                kelp bass  0.4952347250
## 8640           Pelagic    5          pacific sardine  0.7265771565
## 8641     Benthopelagic   21         barred sand bass  0.9890920874
## 8642     Benthopelagic    4           pile surfperch  0.8131653734
## 8643          Midwater   14                kelp bass  0.9756418613
## 8644     Benthopelagic   16          copper rockfish  0.8079590687
## 8645     Benthopelagic    3        spotted sand bass  0.6801854222
## 8646          Midwater   16                kelp bass  0.6175263571
## 8647          Midwater    4                kelp bass  0.5211328254
## 8648     Benthopelagic   14              black perch  0.8658505594
## 8649           Pelagic    6          pacific sardine  0.5838430964
## 8650     Benthopelagic   11              black perch  0.6418056567
## 8651     Benthopelagic    4           pile surfperch  0.7694580772
## 8652     Benthopelagic    5        yellowfin croaker  0.7267709390
## 8653           Benthic   14         hornyhead turbot  0.8179397278
## 8654           Pelagic    5          pacific sardine  0.6052982869
## 8655           Pelagic   21            chub mackerel  0.8477514999
## 8656          Midwater   21                kelp bass  0.5242825009
## 8657     Benthopelagic   10              black perch  0.6751086611
## 8658          Midwater   21                kelp bass  0.7403175312
## 8659           Pelagic    5          pacific sardine  0.7595090805
## 8660          Midwater    3         shiner surfperch  0.5754639356
## 8661     Benthopelagic    8         barred sand bass  0.6283234821
## 8662     Benthopelagic   11         barred sand bass  0.4459715776
## 8663          Midwater    1        walleye surfperch  0.8445375729
## 8664           Benthic   20  california scorpionfish  0.7302662684
## 8665           Benthic   23         hornyhead turbot  0.8025404014
## 8666           Benthic   19  california scorpionfish  0.8486866152
## 8667     Benthopelagic   12           brown rockfish  0.8978101231
## 8668     Benthopelagic   11          white surfperch  0.7294187927
## 8669     Benthopelagic    5       california corbina  0.9483723260
## 8670     Benthopelagic    4              black perch  0.7282854671
## 8671     Benthopelagic    5            white croaker  0.7627283580
## 8672     Benthopelagic    3        spotted sand bass  0.8432014295
## 8673     Benthopelagic   20            white croaker  0.5731143320
## 8674          Midwater    1         shiner surfperch  0.9786252851
## 8675           Benthic   20         hornyhead turbot  0.7074024130
## 8676           Benthic    1           spotted turbot  0.8155002432
## 8677           Benthic   23         hornyhead turbot  0.7383767343
## 8678     Benthopelagic   14       vermilion rockfish  0.7596510393
## 8679           Pelagic    5             market squid  0.5624320889
## 8680     Benthopelagic    8            white croaker  0.7961956284
## 8681           Pelagic    5             market squid  0.6642219098
## 8682     Benthopelagic    5       vermilion rockfish  0.6994222211
## 8683     Benthopelagic   11            white croaker  0.5828575220
## 8684           Benthic    3           diamond turbot  0.5941145251
## 8685           Pelagic   21         northern anchovy  0.9608846812
## 8686           Benthic    8         hornyhead turbot  0.3926218169
## 8687     Benthopelagic    4         barred sand bass  0.6626393678
## 8688          Midwater    3                jacksmelt  0.6098605559
## 8689          Midwater   21                kelp bass  0.6623232805
## 8690     Benthopelagic   11        yellowfin croaker  0.5872772443
## 8691          Midwater    8                kelp bass  0.5792392258
## 8692     Benthopelagic    9       vermilion rockfish  0.5092595959
## 8693          Midwater   21                kelp bass  0.7718475724
## 8694     Benthopelagic    1         barred surfperch  0.8646396508
## 8695          Midwater   11                top smelt  0.5148092718
## 8696     Benthopelagic    5            white croaker  0.7143776351
## 8697     Benthopelagic    4         barred surfperch  0.6801510198
## 8698     Benthopelagic   21        yellowfin croaker  0.6289636611
## 8699     Benthopelagic    5         barred sand bass  0.6961682072
## 8700           Pelagic   21            chub mackerel  0.8100797226
## 8701          Midwater   21                kelp bass  0.9568578115
## 8702     Benthopelagic    8            white croaker  0.6938471683
## 8703           Pelagic   21            chub mackerel  0.5502560309
## 8704     Benthopelagic   16        speckled rockfish  0.7303969653
## 8705     Benthopelagic    5         barred sand bass  0.7328961517
## 8706           Pelagic   21           slough anchovy  0.9543487569
## 8707     Benthopelagic   11            rosy rockfish  0.6171067478
## 8708           Benthic    4           diamond turbot  0.6321431366
## 8709           Benthic   16  california scorpionfish  0.6700815047
## 8710     Benthopelagic   20       vermilion rockfish  0.9169170130
## 8711          Midwater   20                kelp bass  0.7775472353
## 8712          Midwater   21                kelp bass  0.8809089242
## 8713           Benthic   13         hornyhead turbot  0.7941576717
## 8714           Pelagic   21            chub mackerel  0.8402663662
## 8715     Benthopelagic   14       vermilion rockfish  0.5689228689
## 8716          Midwater    5                kelp bass  0.9849519051
## 8717           Benthic   10  california scorpionfish  0.5815522765
## 8718     Benthopelagic    5         barred sand bass  0.7669908239
## 8719          Midwater    4                kelp bass  0.9261463038
## 8720     Benthopelagic    1        yellowfin croaker  0.6702696117
## 8721     Benthopelagic   10           brown rockfish  0.5535705114
## 8722           Benthic    5          longfin sanddab  0.7496625809
## 8723     Benthopelagic    3        yellowfin croaker  0.6682647537
## 8724     Benthopelagic   11            white croaker  0.7486604895
## 8725          Midwater   20                kelp bass  0.6529884323
## 8726           Benthic    5       california halibut  0.7762274514
## 8727           Pelagic    5          pacific sardine  0.6132559542
## 8728          Midwater   21                kelp bass  0.8034566232
## 8729     Benthopelagic    8            white croaker  0.7252767780
## 8730     Benthopelagic    3       california corbina  0.5245723800
## 8731     Benthopelagic    4        spotted sand bass  0.6172866679
## 8732           Benthic   10  california scorpionfish  0.7829926926
## 8733           Benthic    5  california scorpionfish  0.4278634348
## 8734          Midwater   11                top smelt  0.7990262388
## 8735     Benthopelagic   17            white croaker  0.7480675015
## 8736     Benthopelagic    5            white croaker  0.8942499662
## 8737           Pelagic   21         northern anchovy  0.5122977405
## 8738           Pelagic    5          pacific sardine  0.9895788790
## 8739     Benthopelagic    1       california corbina  0.7379493936
## 8740          Midwater    5                kelp bass  0.6915967540
## 8741     Benthopelagic   20            white croaker  0.7855835434
## 8742     Benthopelagic    3            rosy rockfish  0.7121544725
## 8743     Benthopelagic   21        yellowfin croaker  0.6061420014
## 8744     Benthopelagic    1         barred surfperch  0.6470722440
## 8745     Benthopelagic   14         barred sand bass  0.7699862665
## 8746     Benthopelagic    5       vermilion rockfish  0.7404235235
## 8747          Midwater   21                kelp bass  0.8965485738
## 8748     Benthopelagic    3           pile surfperch  0.5765026315
## 8749     Benthopelagic   19       vermilion rockfish  0.8054767595
## 8750           Pelagic    5            chub mackerel  0.7773327445
## 8751          Midwater   21                kelp bass  0.6367450800
## 8752          Midwater    5                queenfish  0.8290981349
## 8753     Benthopelagic   11            white croaker  1.1546045714
## 8754           Benthic    1           diamond turbot  0.7889851421
## 8755           Benthic   22         hornyhead turbot  0.9219666320
## 8756          Midwater    5                kelp bass  0.7471392857
## 8757     Benthopelagic   21          spotfin croaker  0.5873180098
## 8758           Pelagic    5            chub mackerel  0.9024755282
## 8759     Benthopelagic    5       vermilion rockfish  0.5571721370
## 8760     Benthopelagic    1         barred surfperch  0.5750730054
## 8761     Benthopelagic   11            white croaker  0.7687998630
## 8762     Benthopelagic    4         barred sand bass  0.6744418280
## 8763     Benthopelagic   17       vermilion rockfish  0.7924523524
## 8764     Benthopelagic   11          white surfperch  0.8266352451
## 8765     Benthopelagic    8          copper rockfish  0.9542049361
## 8766          Midwater   11            kelp rockfish  0.6863394883
## 8767     Benthopelagic    5            white croaker  0.8598321613
## 8768     Benthopelagic    4         barred surfperch  0.7987247708
## 8769     Benthopelagic    4       california corbina  0.8170371275
## 8770           Benthic   20       california halibut  0.6732132110
## 8771           Benthic    3           diamond turbot  0.7425853142
## 8772     Benthopelagic   12         barred sand bass  0.7754766218
## 8773          Midwater    1                 halfmoon  0.5371961785
## 8774     Benthopelagic   13       vermilion rockfish  0.5105373703
## 8775           Pelagic    5        pacific barracuda  0.6673334350
## 8776     Benthopelagic    3              black perch  0.5870990090
## 8777           Pelagic   21            chub mackerel  0.5507849983
## 8778     Benthopelagic   14            white croaker  0.6673753754
## 8779     Benthopelagic   24       vermilion rockfish  1.0399231215
## 8780     Benthopelagic   20       california corbina  0.8359419806
## 8781     Benthopelagic   21         barred sand bass  0.5135041939
## 8782     Benthopelagic   11            white croaker  0.6321345041
## 8783          Midwater   21                kelp bass  0.9538401980
## 8784          Midwater    1         shiner surfperch  0.4421532460
## 8785          Midwater    5         shiner surfperch  0.3546332079
## 8786     Benthopelagic   11           brown rockfish  0.5538783564
## 8787     Benthopelagic    5         barred sand bass  0.5774977447
## 8788           Pelagic    5          pacific sardine  0.8458926973
## 8789           Benthic   16         hornyhead turbot  0.5843018994
## 8790          Midwater    1         shiner surfperch  0.6476234832
## 8791     Benthopelagic    5                  opaleye  0.4502519488
## 8792     Benthopelagic   20            white croaker  0.8966636845
## 8793     Benthopelagic   21            white croaker  0.8518278854
## 8794     Benthopelagic   11          spotfin croaker  0.7695954135
## 8795           Benthic   22  california scorpionfish  0.5638813702
## 8796           Pelagic    5          pacific sardine  0.9798888741
## 8797     Benthopelagic    1                  opaleye  0.9056202156
## 8798          Midwater    1         shiner surfperch  0.7322595719
## 8799     Benthopelagic   11         barred surfperch  0.8505331272
## 8800          Midwater   11         shiner surfperch  0.7230540923
## 8801     Benthopelagic   12            white croaker  0.9044592712
## 8802          Midwater   21                queenfish  1.0165556149
## 8803           Benthic    4    shovelnose guitarfish  1.8805408684
## 8804     Benthopelagic   21         barred sand bass  1.0507302736
## 8805     Benthopelagic   10            white croaker  1.2065616765
## 8806     Benthopelagic    1       california corbina  1.2220420635
## 8807     Benthopelagic   11            white croaker  1.5731581237
## 8808          Midwater   11                kelp bass  1.1354828116
## 8809     Benthopelagic    3        spotted sand bass  0.5807732313
## 8810     Benthopelagic    3          copper rockfish  1.2989336762
## 8811           Pelagic   11            chub mackerel  1.4303965129
## 8812           Pelagic    5             market squid  1.2904618049
## 8813           Pelagic   11            chub mackerel  1.0255397799
## 8814           Pelagic   21            chub mackerel  1.0132835158
## 8815           Benthic   22  california scorpionfish  0.7381684390
## 8816          Midwater    4         shiner surfperch  0.9266952184
## 8817           Benthic   18  california scorpionfish  0.1939170098
## 8818     Benthopelagic    5                  opaleye  0.9725296698
## 8819          Midwater   21                queenfish  0.7113911456
## 8820     Benthopelagic    5          copper rockfish  1.0121230892
## 8821     Benthopelagic   11         barred sand bass  1.1245717407
## 8822     Benthopelagic   21        spotted sand bass  0.7269270328
## 8823     Benthopelagic   22            white croaker  1.2060357186
## 8824           Pelagic    5         northern anchovy  2.0067072294
## 8825     Benthopelagic   21            leopard shark  1.2750302357
## 8826          Midwater   11         shiner surfperch  0.6594703460
## 8827     Benthopelagic   21            white croaker  1.3395579576
## 8828           Benthic    5       california halibut  1.8969659983
## 8829          Midwater   11                kelp bass  1.7035344278
## 8830          Midwater   18                kelp bass  1.3749726374
## 8831     Benthopelagic    5            white croaker  1.5366105366
## 8832     Benthopelagic    1         barred surfperch  0.7648276014
## 8833     Benthopelagic   20            white croaker  0.6596700808
## 8834     Benthopelagic    4 brown smooth-hound shark  0.5474925519
## 8835     Benthopelagic   11         barred sand bass  0.9945884571
## 8836           Benthic   15         hornyhead turbot  0.1138598128
## 8837           Benthic    5  california scorpionfish  1.6330591618
## 8838     Benthopelagic   14       vermilion rockfish  1.7923677085
## 8839           Pelagic    5             market squid  0.8628958120
## 8840     Benthopelagic    5            black croaker  1.0694714368
## 8841     Benthopelagic    1         barred surfperch  1.3109701114
## 8842          Midwater    2        walleye surfperch  1.2549608839
## 8843     Benthopelagic   16       vermilion rockfish  0.9097918533
## 8844           Pelagic    4            chub mackerel  0.6128943997
## 8845     Benthopelagic    1        yellowfin croaker  1.1458927983
## 8846          Midwater    5                kelp bass  1.8975849220
## 8847     Benthopelagic    6          copper rockfish  1.5319037977
## 8848           Benthic    9         hornyhead turbot  1.6128221531
## 8849     Benthopelagic   13           brown rockfish  1.1703328397
## 8850     Benthopelagic    4            white croaker  0.7891058347
## 8851     Benthopelagic   21        spotted sand bass  2.4205667611
## 8852           Pelagic    6             market squid  0.3482241649
## 8853     Benthopelagic   11            white croaker  0.7818081195
## 8854     Benthopelagic   16       vermilion rockfish  0.6149800006
## 8855           Benthic    5           diamond turbot  1.4148111371
## 8856          Midwater    5                kelp bass  0.3197654363
## 8857     Benthopelagic    3        rainbow surfperch  0.5934878571
## 8858           Benthic   21       california halibut  1.0591831053
## 8859     Benthopelagic   21            white croaker  1.5825343566
## 8860     Benthopelagic   11          white surfperch  0.6140592512
## 8861     Benthopelagic    4        yellowfin croaker  1.2423772729
## 8862           Pelagic    5         northern anchovy  1.3412773203
## 8863           Pelagic   21         northern anchovy  1.8338329769
## 8864     Benthopelagic   21        yellowfin croaker  0.8025360090
## 8865     Benthopelagic   13       vermilion rockfish  1.8756403417
## 8866     Benthopelagic   11         barred sand bass  1.1618038606
## 8867     Benthopelagic    1       california corbina  0.3888609268
## 8868     Benthopelagic    5       vermilion rockfish  1.6643905249
## 8869          Midwater    1                 halfmoon  0.9530602909
## 8870     Benthopelagic   23          starry rockfish  1.5343647371
## 8871     Benthopelagic    9          copper rockfish  0.5781459117
## 8872     Benthopelagic    5            white croaker  1.1942751523
## 8873     Benthopelagic   12         barred sand bass  1.4685265524
## 8874     Benthopelagic   23            white croaker  0.6375441755
## 8875           Pelagic    5            chub mackerel  1.5809964056
## 8876          Midwater    4                kelp bass  0.7049810838
## 8877           Pelagic    5         northern anchovy  0.9544548441
## 8878     Benthopelagic    1        spotted sand bass  1.4443937915
## 8879           Benthic   16         hornyhead turbot  0.9060301128
## 8880          Midwater   11                kelp bass  1.7056552516
## 8881           Pelagic   21            chub mackerel  0.8668315880
## 8882     Benthopelagic    1          ocean whitefish  0.8976936085
## 8883     Benthopelagic    1       california corbina  1.2208016106
## 8884     Benthopelagic   21        spotted sand bass  1.1965510524
## 8885           Pelagic    5          pacific sardine  0.5600023027
## 8886     Benthopelagic    4                  opaleye  0.6918375289
## 8887           Pelagic    6          pacific sardine  1.1084478845
## 8888           Pelagic   11            chub mackerel  1.5494927465
## 8889          Midwater   21                kelp bass  1.5077219865
## 8890     Benthopelagic    1     california sheephead  1.5467253899
## 8891          Midwater   10                kelp bass  0.9403702826
## 8892     Benthopelagic   13            white croaker  0.7366965044
## 8893           Pelagic    5            chub mackerel  0.8640764045
## 8894           Benthic   15         hornyhead turbot  1.0142659434
## 8895     Benthopelagic   24          starry rockfish  0.6795463347
## 8896     Benthopelagic   14       vermilion rockfish  1.2337270849
## 8897     Benthopelagic   22            white croaker  0.5199221647
## 8898           Benthic    5    shovelnose guitarfish  0.6730183438
## 8899           Benthic   12  california scorpionfish  0.7061594029
## 8900     Benthopelagic   11   gray smoothhound shark  1.7768635443
## 8901     Benthopelagic    3        rainbow surfperch  1.2121115946
## 8902     Benthopelagic    1                  opaleye  0.9709872128
## 8903           Pelagic    5             market squid  1.4559409156
## 8904           Pelagic    4            chub mackerel  0.7783271128
## 8905           Pelagic    5          pacific sardine  1.8010569367
## 8906     Benthopelagic   15            white croaker  1.2474604225
## 8907           Pelagic    5             market squid  0.9525558004
## 8908           Pelagic   21            chub mackerel  1.1035106771
## 8909     Benthopelagic   11           brown rockfish  1.0551415568
## 8910     Benthopelagic   20        yellowfin croaker  1.5539351807
## 8911     Benthopelagic   22         barred sand bass  1.0080571562
## 8912           Pelagic    5          pacific sardine  0.9713269295
## 8913           Benthic   13         hornyhead turbot  0.7924126924
## 8914          Midwater   12                kelp bass  1.4373685460
## 8915     Benthopelagic   22            white croaker  1.2196478656
## 8916           Pelagic    6             market squid  0.7131848957
## 8917           Pelagic    5          pacific sardine  1.0907526019
## 8918     Benthopelagic    4       california corbina  0.7211285931
## 8919     Benthopelagic   21        spotted sand bass  1.0312059199
## 8920     Benthopelagic    6    greenspotted rockfish  1.5280154250
## 8921           Pelagic    5             market squid  1.0882949470
## 8922     Benthopelagic    4            white croaker  1.2311245422
## 8923     Benthopelagic    1       california corbina  0.6525083804
## 8924          Midwater    4         shiner surfperch  0.4730917094
## 8925     Benthopelagic   23       vermilion rockfish  1.0432927223
## 8926     Benthopelagic   20       california corbina  0.9156670796
## 8927           Pelagic    5            chub mackerel  2.1053693493
## 8928     Benthopelagic   21         barred sand bass  0.6910467833
## 8929           Benthic    5  california scorpionfish  1.6247977164
## 8930           Pelagic    5             market squid  1.1527272147
## 8931     Benthopelagic   21        yellowfin croaker  1.7259208541
## 8932           Benthic    5          longfin sanddab  1.3758623617
## 8933     Benthopelagic    5       vermilion rockfish  0.9596773471
## 8934          Midwater   13     chilipepper rockfish  1.0105419364
## 8935     Benthopelagic    4        yellowfin croaker  0.8485259317
## 8936     Benthopelagic   21        yellowfin croaker  1.2127727551
## 8937     Benthopelagic    1        yellowfin croaker  1.2828002130
## 8938     Benthopelagic    3                  opaleye  1.1503821997
## 8939     Benthopelagic   11        yellowfin croaker  0.5749629275
## 8940           Benthic   15         hornyhead turbot  1.4031854106
## 8941          Midwater    3         shiner surfperch  1.0981238188
## 8942     Benthopelagic    3        spotted sand bass  1.0721386606
## 8943           Benthic   13         hornyhead turbot  0.4788403503
## 8944     Benthopelagic    7       vermilion rockfish  1.3687858713
## 8945          Midwater    3                kelp bass  0.9526671873
## 8946     Benthopelagic   22       vermilion rockfish  1.5247592009
## 8947     Benthopelagic   11          gopher rockfish  1.1982736525
## 8948     Benthopelagic    4         barred sand bass  1.1386971020
## 8949     Benthopelagic    5         barred sand bass  1.1730735300
## 8950          Midwater   10                kelp bass  0.8398515901
## 8951           Benthic    4    california lizardfish  0.5358436708
## 8952     Benthopelagic    8            white croaker  0.4855586799
## 8953          Midwater   11         shiner surfperch  1.2495955353
## 8954     Benthopelagic    1     california sheephead  1.2534157829
## 8955     Benthopelagic    5            white croaker  1.0525882070
## 8956     Benthopelagic   11            white croaker  1.4423314952
## 8957           Benthic    1           diamond turbot  0.9456394232
## 8958     Benthopelagic    6       vermilion rockfish  1.4821859610
## 8959           Pelagic   21            chub mackerel  1.3368204870
## 8960          Midwater    4           striped mullet  0.6199599338
## 8961           Benthic   19  california scorpionfish  0.8735934056
## 8962          Midwater    1         shiner surfperch  0.8543684614
## 8963     Benthopelagic   11         barred surfperch  1.1114053927
## 8964     Benthopelagic   11        spotted sand bass  1.1545154625
## 8965           Pelagic    5            chub mackerel  1.6326368568
## 8966           Pelagic    5            chub mackerel  1.7029254972
## 8967     Benthopelagic   11            white croaker  1.0790651288
## 8968     Benthopelagic    5           brown rockfish  1.3171318289
## 8969          Midwater    4           striped mullet  1.0215222032
## 8970          Midwater   21                kelp bass  1.1936625122
## 8971     Benthopelagic   21        yellowfin croaker  1.5449739266
## 8972     Benthopelagic    1         barred surfperch  0.5580699240
## 8973     Benthopelagic   14          starry rockfish  1.2937658867
## 8974     Benthopelagic   11 brown smooth-hound shark  0.8797182278
## 8975     Benthopelagic   11           brown rockfish  1.0068288815
## 8976          Midwater    1        walleye surfperch  0.7841858875
## 8977     Benthopelagic   20              black perch  0.2266252248
## 8978           Benthic   10  california scorpionfish  0.8122453105
## 8979          Midwater   22                kelp bass  0.8173312871
## 8980     Benthopelagic    1        rainbow surfperch  1.7364853927
## 8981          Midwater   24      squarespot rockfish  1.5786246438
## 8982     Benthopelagic   21        yellowfin croaker  0.8978048785
## 8983     Benthopelagic   11       vermilion rockfish  1.0420679836
## 8984     Benthopelagic   11         barred sand bass  1.0033203680
## 8985           Benthic   22  california scorpionfish  1.3378273109
## 8986     Benthopelagic    1                  opaleye  1.1585022967
## 8987     Benthopelagic   21          white surfperch  0.4421167964
## 8988          Midwater    4           striped mullet  0.3309275242
## 8989           Pelagic   21            chub mackerel  0.5114955862
## 8990     Benthopelagic   22       vermilion rockfish  1.3235062189
## 8991     Benthopelagic   13            white croaker  0.9078650792
## 8992           Benthic    8  california scorpionfish  1.0397308024
## 8993     Benthopelagic    5       vermilion rockfish  0.6116920766
## 8994     Benthopelagic    3        rainbow surfperch  1.1631118078
## 8995     Benthopelagic    9   greenblotched rockfish  0.5715094151
## 8996           Pelagic   21            chub mackerel  1.0504414859
## 8997     Benthopelagic    5            white croaker  1.2525145933
## 8998           Pelagic   21            chub mackerel  1.1823034841
## 8999           Pelagic    5          pacific sardine  1.2423838138
## 9000          Midwater   12                kelp bass  0.9320262007
## 9001     Benthopelagic   11         barred sand bass  1.8784653565
## 9002           Benthic    8         hornyhead turbot  1.0789359396
## 9003           Benthic    4           spotted turbot  0.7148611689
## 9004           Benthic    5  california scorpionfish  1.5045621885
## 9005          Midwater   21                kelp bass  1.8830685543
## 9006     Benthopelagic    1       california corbina  0.7125074290
## 9007           Pelagic   21            chub mackerel  0.6230281718
## 9008           Benthic    3           diamond turbot  1.2168832577
## 9009           Pelagic   11            chub mackerel  1.1848852330
## 9010     Benthopelagic    9   greenblotched rockfish  0.4665837631
## 9011     Benthopelagic    5            white croaker  0.7490983654
## 9012     Benthopelagic    4        yellowfin croaker  0.8843851577
## 9013          Midwater    7      squarespot rockfish  1.1379286858
## 9014     Benthopelagic   15        speckled rockfish  0.8358060503
## 9015     Benthopelagic   11          white surfperch  1.3837215024
## 9016     Benthopelagic   13       vermilion rockfish  1.0773356624
## 9017     Benthopelagic    2        spotted sand bass  1.5841512626
## 9018     Benthopelagic   15       vermilion rockfish  0.9640185439
## 9019     Benthopelagic   13            white croaker  0.9474823140
## 9020     Benthopelagic    1              black perch  1.2871932987
## 9021     Benthopelagic    8         barred sand bass  1.0917398069
## 9022           Pelagic   11            chub mackerel  2.2495527500
## 9023           Pelagic    6             market squid  1.4038325582
## 9024     Benthopelagic   10            white croaker  1.0145885986
## 9025           Benthic    4           spotted turbot  1.1882475006
## 9026          Midwater   11                kelp bass  1.6623371141
## 9027     Benthopelagic    1              black perch  0.6721646741
## 9028     Benthopelagic   21            white croaker  1.4953873188
## 9029     Benthopelagic   20       california corbina  0.9483501130
## 9030     Benthopelagic   11              black perch  1.4259764668
## 9031           Pelagic   21            chub mackerel  1.3198967649
## 9032     Benthopelagic    1        yellowfin croaker  1.5297377390
## 9033     Benthopelagic   10           brown rockfish  1.2225313708
## 9034           Pelagic   11            chub mackerel  2.0443334159
## 9035     Benthopelagic   11          gopher rockfish  0.9100856754
## 9036     Benthopelagic   21        spotted sand bass  1.2946063920
## 9037     Benthopelagic   23       vermilion rockfish  0.8253773140
## 9038           Pelagic    5            chub mackerel  2.1231244258
## 9039          Midwater    3         shiner surfperch  1.3260521757
## 9040          Midwater   11         shiner surfperch  1.2567503052
## 9041     Benthopelagic   20         barred surfperch  1.7324288938
## 9042     Benthopelagic    3         barred surfperch  0.8456911196
## 9043     Benthopelagic   21        yellowfin croaker  0.9137707824
## 9044     Benthopelagic    5       california corbina  1.1380456032
## 9045     Benthopelagic    5            white croaker  1.3892481594
## 9046           Pelagic    5             market squid  0.9023715332
## 9047     Benthopelagic   17            white croaker  1.0189410292
## 9048     Benthopelagic   20         barred sand bass  1.0668669336
## 9049     Benthopelagic    3              black perch  1.2518824931
## 9050     Benthopelagic   11            white croaker  1.8627128981
## 9051     Benthopelagic    5                  opaleye  0.9480236419
## 9052     Benthopelagic    5            white croaker  0.8607462843
## 9053          Midwater   21                kelp bass  0.7975771345
## 9054     Benthopelagic   23       vermilion rockfish  1.0101657354
## 9055     Benthopelagic    4       california corbina  1.1683276197
## 9056     Benthopelagic   11              black perch  0.8879487219
## 9057     Benthopelagic    5                  opaleye  0.9595023479
## 9058     Benthopelagic    5            white croaker  1.1141423745
## 9059     Benthopelagic   11        spotted sand bass  1.2539173430
## 9060           Pelagic   21            chub mackerel  0.8809514760
## 9061           Pelagic    5         northern anchovy  1.0698575783
## 9062     Benthopelagic    3        spotted sand bass  0.6919439210
## 9063     Benthopelagic   20           pile surfperch  1.2069343668
## 9064           Pelagic    5         northern anchovy  2.0933722446
## 9065           Benthic   11         hornyhead turbot  1.0575088456
## 9066     Benthopelagic   11            black croaker  1.5007025191
## 9067     Benthopelagic    1          white surfperch  0.5837058755
## 9068     Benthopelagic   11         barred sand bass  0.6601807193
## 9069     Benthopelagic   14            white croaker  0.4155578493
## 9070     Benthopelagic    3       california corbina  2.0523847072
## 9071           Pelagic    5            chub mackerel  1.2314834850
## 9072     Benthopelagic   12            white croaker  0.6753741496
## 9073     Benthopelagic    1        yellowfin croaker  0.8629293408
## 9074     Benthopelagic   22          starry rockfish  0.7863462860
## 9075     Benthopelagic    5                  opaleye  1.1990402214
## 9076           Pelagic   11            chub mackerel  1.5160369355
## 9077     Benthopelagic   22            white croaker  0.9188351492
## 9078     Benthopelagic   17        speckled rockfish  1.0958741805
## 9079     Benthopelagic   11         barred sand bass  1.3136401585
## 9080     Benthopelagic   21        spotted sand bass  0.6601740344
## 9081     Benthopelagic    1        spotted sand bass  2.1541050007
## 9082     Benthopelagic    4           pile surfperch  0.3598685184
## 9083     Benthopelagic    5                  opaleye  1.3719526681
## 9084          Midwater    2                kelp bass  1.6373925254
## 9085     Benthopelagic   10              black perch  0.8066654039
## 9086           Pelagic    5          pacific sardine  1.5432351359
## 9087          Midwater    1         shiner surfperch  0.9352252065
## 9088     Benthopelagic    1         barred surfperch  1.0776013149
## 9089     Benthopelagic    2            white croaker  1.7426852610
## 9090     Benthopelagic    1            white croaker  1.2986590091
## 9091     Benthopelagic    5         barred sand bass  1.4779078678
## 9092     Benthopelagic   24       vermilion rockfish  1.6409573046
## 9093          Midwater    3          canary rockfish  0.9150866445
## 9094     Benthopelagic   18            white croaker  1.0344486033
## 9095     Benthopelagic    7           brown rockfish  1.3495879562
## 9096          Midwater    5                queenfish  1.5703038030
## 9097           Benthic    1           diamond turbot  1.9158491388
## 9098     Benthopelagic    1            white croaker  1.5362269691
## 9099           Pelagic    5             market squid  0.7654124023
## 9100           Pelagic    5             market squid  0.7953498924
## 9101     Benthopelagic    3        spotted sand bass  1.2699461824
## 9102           Pelagic    5             market squid  1.0379437222
## 9103          Midwater   11                kelp bass  1.3810757421
## 9104           Benthic    5       california halibut  0.8471732571
## 9105           Benthic   19         hornyhead turbot  1.4281211561
## 9106           Pelagic    5         northern anchovy  1.0318832171
## 9107          Midwater   21                kelp bass  0.8100967329
## 9108           Pelagic   21            chub mackerel  0.6430884283
## 9109          Midwater    1                queenfish  0.7777123285
## 9110     Benthopelagic    3        spotted sand bass  0.9212423597
## 9111     Benthopelagic   14    greenspotted rockfish  1.3475507320
## 9112     Benthopelagic    5            white croaker  1.5483820311
## 9113     Benthopelagic   10   greenblotched rockfish  1.1413677945
## 9114     Benthopelagic    5                  opaleye  1.4762962017
## 9115     Benthopelagic    1            white croaker  0.9614195254
## 9116           Pelagic    5          pacific sardine  0.4134384930
## 9117          Midwater    1            blue rockfish  0.8374960494
## 9118          Midwater   21                kelp bass  0.5567468701
## 9119     Benthopelagic    3         barred sand bass  0.7402889841
## 9120           Pelagic   21            chub mackerel  0.8814069947
## 9121     Benthopelagic    4                  opaleye  1.2748919316
## 9122     Benthopelagic    1     california sheephead  0.6906817563
## 9123     Benthopelagic   11              black perch  1.5641861564
## 9124     Benthopelagic    1        yellowfin croaker  1.4556881311
## 9125     Benthopelagic   18              black perch  2.0992841813
## 9126     Benthopelagic    1        yellowfin croaker  0.8514616065
## 9127     Benthopelagic   21        spotted sand bass  1.0328909444
## 9128     Benthopelagic    5                  opaleye  0.9584839420
## 9129     Benthopelagic   12       vermilion rockfish  1.1440908450
## 9130     Benthopelagic   18       vermilion rockfish  1.0250869179
## 9131     Benthopelagic    3              black perch  1.5183099403
## 9132          Midwater    3                kelp bass  1.3495571354
## 9133     Benthopelagic   12            white croaker  1.1140832063
## 9134          Midwater   21                kelp bass  1.1310199668
## 9135          Midwater    4         shiner surfperch  1.0356290231
## 9136     Benthopelagic   11          gopher rockfish  1.4710856850
## 9137     Benthopelagic    3       vermilion rockfish  1.2202322713
## 9138     Benthopelagic   14         barred sand bass  1.2406143163
## 9139          Midwater   21                kelp bass  0.4162429979
## 9140          Midwater    1                queenfish  1.2036428390
## 9141     Benthopelagic   22          starry rockfish  0.6515735896
## 9142     Benthopelagic   20            white croaker  1.6911079374
## 9143     Benthopelagic    4       california corbina  1.4720629664
## 9144     Benthopelagic    8              black perch  0.9334954834
## 9145           Benthic   20         hornyhead turbot  0.8387427345
## 9146          Midwater   21                kelp bass  1.8927705285
## 9147     Benthopelagic    4              black perch  0.7805188924
## 9148     Benthopelagic    4            white croaker  1.3569351310
## 9149     Benthopelagic    4              black perch  1.6553324088
## 9150     Benthopelagic   21        yellowfin croaker  1.2347300144
## 9151     Benthopelagic    1                  opaleye  1.4104163407
## 9152           Benthic   21         hornyhead turbot  0.9327139422
## 9153     Benthopelagic    4         barred surfperch  1.5934842903
## 9154          Midwater   11                kelp bass  0.8826947215
## 9155           Pelagic    5             market squid  0.8836634504
## 9156           Benthic    1           diamond turbot  1.4762784612
## 9157     Benthopelagic    1            white croaker  1.4948368399
## 9158     Benthopelagic    4              black perch  1.2149298726
## 9159           Pelagic    6             market squid -0.0028306111
## 9160     Benthopelagic   11            white croaker  1.4797198221
## 9161     Benthopelagic    9            white croaker  1.6651763983
## 9162           Pelagic   21         northern anchovy  1.5445691502
## 9163     Benthopelagic   11           brown rockfish  1.1518579377
## 9164     Benthopelagic   11          ocean whitefish  1.1734444649
## 9165           Benthic   17         hornyhead turbot  0.9560541816
## 9166           Benthic   11  california scorpionfish  1.4368674692
## 9167           Benthic   20           diamond turbot  1.0701736688
## 9168     Benthopelagic    4        spotted sand bass  1.5889887204
## 9169          Midwater   11           olive rockfish  1.7753402317
## 9170     Benthopelagic    1              black perch  1.4937919822
## 9171     Benthopelagic    5            white croaker  1.0356925287
## 9172           Pelagic    5         northern anchovy  1.6744970819
## 9173     Benthopelagic   11        yellowfin croaker  1.1317051261
## 9174          Midwater   16                kelp bass  0.3719279041
## 9175     Benthopelagic   11            white croaker  1.1878626235
## 9176     Benthopelagic   11              black perch  1.1959898530
## 9177          Midwater   18                kelp bass  1.7556464868
## 9178     Benthopelagic    3              black perch  0.7406956753
## 9179          Midwater    1                kelp bass  1.1126104795
## 9180     Benthopelagic   15            white croaker  1.2505035591
## 9181     Benthopelagic   22         barred sand bass  1.2071940698
## 9182     Benthopelagic    1            white croaker  0.5841189794
## 9183     Benthopelagic   21        yellowfin croaker  0.4912903783
## 9184           Benthic    5  california scorpionfish  1.7095144428
## 9185           Pelagic   21            chub mackerel  0.8749497911
## 9186           Benthic    1           spotted turbot  0.5504959549
## 9187     Benthopelagic   11          gopher rockfish  1.0637938089
## 9188     Benthopelagic    1            white croaker  0.9174450064
## 9189     Benthopelagic    5       california corbina  1.0849533820
## 9190     Benthopelagic    1              black perch  1.7966569588
## 9191     Benthopelagic   11          spotfin croaker  1.7140303709
## 9192     Benthopelagic    8          copper rockfish  0.7824703963
## 9193     Benthopelagic    4        yellowfin croaker  1.2797763864
## 9194     Benthopelagic   12            white croaker  1.0001666160
## 9195          Midwater    8      yellowtail rockfish  1.5648468021
## 9196          Midwater    3                kelp bass  1.2207955510
## 9197     Benthopelagic    5          spotfin croaker  0.4594986662
## 9198           Pelagic    5          pacific sardine  0.7645808544
## 9199           Benthic    5  california scorpionfish  0.4362746944
## 9200     Benthopelagic    3         barred surfperch  0.8233307953
## 9201           Pelagic    6          pacific sardine  2.8900605905
## 9202     Benthopelagic   11       vermilion rockfish  3.1115503796
## 9203           Pelagic    5         northern anchovy  3.0945286639
## 9204           Pelagic   11            chub mackerel  2.9163390478
## 9205           Pelagic   21            chub mackerel  3.2569611977
## 9206          Midwater    5                top smelt  3.2935807574
## 9207          Midwater    2                queenfish  2.7333289649
## 9208     Benthopelagic    4            white croaker  2.9156096390
## 9209     Benthopelagic   18              black perch  3.4641487732
## 9210          Midwater   21                kelp bass  2.9426541059
## 9211     Benthopelagic    4          copper rockfish  2.8317562311
## 9212     Benthopelagic   20              black perch  2.8799176470
## 9213           Benthic    1         speckled sanddab  3.0810845394
## 9214     Benthopelagic   18            white croaker  3.2814227422
## 9215     Benthopelagic   11         barred sand bass  3.1871946531
## 9216     Benthopelagic   11          spotfin croaker  3.0578472047
## 9217           Pelagic   11            chub mackerel  2.8998227217
## 9218           Pelagic    5            chub mackerel  2.9781638502
## 9219           Benthic   18         hornyhead turbot  2.8271747644
## 9220           Benthic   12  california scorpionfish  2.3524990240
## 9221           Benthic    1             fantail sole  2.9044388585
## 9222          Midwater   21                kelp bass  2.9587975095
## 9223     Benthopelagic    3          white surfperch  3.0225063369
## 9224     Benthopelagic   13       vermilion rockfish  3.0564695435
## 9225     Benthopelagic   18            white croaker  3.0663504069
## 9226          Midwater    1         shiner surfperch  3.2057331717
## 9227     Benthopelagic   14            white croaker  3.1582152062
## 9228          Midwater   11                kelp bass  3.1271410503
## 9229           Benthic    5         speckled sanddab  3.3172756272
## 9230           Benthic   17  california scorpionfish  3.1729282753
## 9231     Benthopelagic   21       california corbina  2.9457575237
## 9232           Benthic   11  california scorpionfish  2.9977598002
## 9233           Benthic   17         hornyhead turbot  3.1475628062
## 9234     Benthopelagic   12              black perch  3.0015295368
## 9235     Benthopelagic    1            white croaker  3.0471016331
## 9236     Benthopelagic    5       california corbina  3.0020436485
## 9237     Benthopelagic    4              black perch  2.8569053262
## 9238     Benthopelagic    5            white croaker  3.1901723692
## 9239     Benthopelagic    1            white croaker  3.2340248911
## 9240           Benthic   14         hornyhead turbot  3.1018861183
## 9241           Benthic    4    shovelnose guitarfish  3.0226910273
## 9242          Midwater    1        walleye surfperch  3.0064404142
## 9243          Midwater   18                kelp bass  2.7360114726
## 9244     Benthopelagic    5            white croaker  3.0462537706
## 9245     Benthopelagic    5         barred sand bass  2.5667344729
## 9246          Midwater    2                kelp bass  2.8565313297
## 9247     Benthopelagic   21         barred sand bass  2.9479207880
## 9248     Benthopelagic   12       vermilion rockfish  2.9613906051
## 9249     Benthopelagic    2       quillback rockfish  3.1535324221
## 9250     Benthopelagic   21            white croaker  2.9755927553
## 9251     Benthopelagic   16       vermilion rockfish  2.7088686027
## 9252     Benthopelagic    3              black perch  2.7091107360
## 9253           Benthic    8  california scorpionfish  2.9756694539
## 9254           Pelagic    5          pacific sardine  2.8715536481
## 9255           Benthic    5  california scorpionfish  2.9562507741
## 9256     Benthopelagic    8          copper rockfish  2.9246424812
## 9257           Pelagic    5          pacific sardine  3.2189216565
## 9258     Benthopelagic    2            white croaker  2.9795740633
## 9259     Benthopelagic    1            white croaker  3.0546474597
## 9260     Benthopelagic   21            leopard shark  3.0031907238
## 9261     Benthopelagic   14              black perch  3.4950670566
## 9262     Benthopelagic   16       vermilion rockfish  2.9045968274
## 9263     Benthopelagic   10       vermilion rockfish  2.9623451497
## 9264          Midwater   21                kelp bass  2.7122497511
## 9265     Benthopelagic    1            rosy rockfish  3.0951945301
## 9266          Midwater    3         shiner surfperch  2.8175623811
## 9267     Benthopelagic   11            white croaker  3.2381205685
## 9268     Benthopelagic    1         barred surfperch  3.1382646463
## 9269          Midwater    1         shiner surfperch  2.7153050212
## 9270           Pelagic   21            chub mackerel  2.6245612563
## 9271     Benthopelagic   16       vermilion rockfish  2.9554896726
## 9272     Benthopelagic    7        speckled rockfish  2.7282095320
## 9273          Midwater    4         shiner surfperch  3.0970740117
## 9274     Benthopelagic   11       vermilion rockfish  2.8900057996
## 9275           Pelagic    5            chub mackerel  3.0621911591
## 9276          Midwater   14                kelp bass  2.7652412561
## 9277     Benthopelagic    3              black perch  2.8401622332
## 9278     Benthopelagic    5            black croaker  2.9533043013
## 9279          Midwater    5                top smelt  2.7862286821
## 9280          Midwater   11                top smelt  2.5141733867
## 9281           Benthic   10         hornyhead turbot  3.0277362596
## 9282           Pelagic    5             market squid  3.0363192594
## 9283     Benthopelagic   12              black perch  3.0321660265
## 9284     Benthopelagic    1       california corbina  2.8625266900
## 9285     Benthopelagic    3         barred surfperch  2.8502695053
## 9286     Benthopelagic   19       vermilion rockfish  3.2877321196
## 9287     Benthopelagic   15        speckled rockfish  3.1679835592
## 9288           Pelagic    5          pacific sardine  3.0089927501
## 9289     Benthopelagic    4         barred surfperch  3.3275408493
## 9290     Benthopelagic   11              black perch  2.9677062608
## 9291          Midwater   11                kelp bass  3.1556457282
## 9292     Benthopelagic   11         barred surfperch  2.7758854787
## 9293           Pelagic    5         northern anchovy  3.0441312031
## 9294           Pelagic    5          pacific sardine  3.1519232834
## 9295     Benthopelagic   11            white croaker  3.0759809698
## 9296     Benthopelagic   19            white croaker  2.8870830467
## 9297     Benthopelagic    3              black perch  2.6693745939
## 9298     Benthopelagic   19       vermilion rockfish  3.1838646853
## 9299     Benthopelagic   12           brown rockfish  3.4573316866
## 9300     Benthopelagic    6          copper rockfish  2.9622757188
## 9301           Pelagic    5             market squid  2.6447396134
## 9302     Benthopelagic   22              black perch  3.3842800970
## 9303           Benthic   20       california halibut  2.9840288213
## 9304     Benthopelagic    2        spotted sand bass  2.9750310235
## 9305           Benthic    1           diamond turbot  3.1385441124
## 9306           Benthic   23         hornyhead turbot  2.8962160897
## 9307     Benthopelagic    5         barred sand bass  2.7718651322
## 9308           Benthic    4    california lizardfish  2.9640932959
## 9309     Benthopelagic   11 brown smooth-hound shark  2.9924904821
## 9310     Benthopelagic   21            white croaker  3.0943453434
## 9311     Benthopelagic    4            flag rockfish  2.8479717489
## 9312           Benthic   12         hornyhead turbot  2.9923111645
## 9313           Benthic    4    shovelnose guitarfish  3.1712579313
## 9314     Benthopelagic   14            white croaker  3.0228551617
## 9315     Benthopelagic    5     california sheephead  3.1265210732
## 9316           Pelagic    5         northern anchovy  3.1565260207
## 9317     Benthopelagic   20       vermilion rockfish  3.5026998226
## 9318     Benthopelagic    2         barred surfperch  2.6677806339
## 9319          Midwater   17      squarespot rockfish  2.8810828682
## 9320     Benthopelagic   18       vermilion rockfish  2.7691456124
## 9321     Benthopelagic   11            white croaker  3.1020994637
## 9322     Benthopelagic    4         barred sand bass  3.0681271891
## 9323          Midwater    4                top smelt  3.1106154399
## 9324           Benthic   17         hornyhead turbot  2.5419983136
## 9325     Benthopelagic   11            white croaker  3.0701903301
## 9326     Benthopelagic   11         barred surfperch  3.2674893578
## 9327           Pelagic    5             market squid  2.8649062291
## 9328           Benthic   19  california scorpionfish  3.0477665936
## 9329           Pelagic    5             market squid  3.0778693267
## 9330     Benthopelagic   10         barred sand bass  2.8676278725
## 9331           Pelagic   11            chub mackerel  3.4008122856
## 9332     Benthopelagic   11              black perch  3.7126267196
## 9333     Benthopelagic   22              black perch  3.2720413843
## 9334     Benthopelagic   12            white croaker  3.2204880730
## 9335           Benthic    5    shovelnose guitarfish  2.9867640692
## 9336     Benthopelagic   20       california corbina  2.7867271754
## 9337     Benthopelagic    5                  opaleye  3.0039348133
## 9338     Benthopelagic   16       vermilion rockfish  3.1500131833
## 9339     Benthopelagic    1        spotted sand bass  3.1903099168
## 9340     Benthopelagic    3        rainbow surfperch  3.0821261570
## 9341     Benthopelagic   17            white croaker  3.3676693145
## 9342           Benthic   22  california scorpionfish  2.9938511326
## 9343          Midwater   21                kelp bass  2.6106164024
## 9344           Pelagic    5             market squid  2.9615764489
## 9345     Benthopelagic   21            white croaker  2.7604337537
## 9346     Benthopelagic    1        rainbow surfperch  3.1838747368
## 9347     Benthopelagic    4       california corbina  2.7262090404
## 9348           Pelagic   21            chub mackerel  3.1088635613
## 9349     Benthopelagic   20            white croaker  2.8952487546
## 9350           Pelagic    6          pacific sardine  3.0754086413
## 9351          Midwater    4           striped mullet  2.8834498410
## 9352           Pelagic   21            chub mackerel  3.0616843553
## 9353           Benthic    1         speckled sanddab  2.8363279320
## 9354     Benthopelagic   11            white croaker  2.8897764449
## 9355           Benthic    8         hornyhead turbot  3.0545703163
## 9356          Midwater    4         shiner surfperch  2.9149992403
## 9357     Benthopelagic   10       vermilion rockfish  3.3067533916
## 9358     Benthopelagic    1        rainbow surfperch  3.0451620511
## 9359          Midwater   11         shiner surfperch  2.6749604832
## 9360     Benthopelagic    5            leopard shark  2.7401068344
## 9361           Pelagic   21            chub mackerel  3.0799493208
## 9362     Benthopelagic   11              black perch  3.2860197793
## 9363          Midwater    4         shiner surfperch  2.9791195711
## 9364     Benthopelagic   14              black perch  3.1007939038
## 9365          Midwater   11                kelp bass  2.9143102834
## 9366     Benthopelagic   18            white croaker  2.9520877303
## 9367          Midwater    4                top smelt  3.2880834630
## 9368     Benthopelagic    5   gray smoothhound shark  3.1299626760
## 9369     Benthopelagic   23            white croaker  3.1042982226
## 9370           Pelagic   21           slough anchovy  3.1129016649
## 9371          Midwater    1                queenfish  3.2539053522
## 9372     Benthopelagic   21            white croaker  2.8036320030
## 9373          Midwater    1                kelp bass  3.2048883352
## 9374     Benthopelagic   24       vermilion rockfish  2.5717616696
## 9375           Pelagic   21            chub mackerel  3.0035192135
## 9376           Pelagic    5          pacific sardine  3.0916337081
## 9377     Benthopelagic    4       california corbina  2.8139960490
## 9378     Benthopelagic    3       california corbina  3.0055676166
## 9379     Benthopelagic   16              black perch  3.1703698335
## 9380           Pelagic    5          pacific sardine  3.2874155070
## 9381           Pelagic   21            chub mackerel  3.1715554510
## 9382     Benthopelagic   21         barred sand bass  2.9383389466
## 9383           Pelagic    6          pacific sardine  2.5388316095
## 9384     Benthopelagic    5        yellowfin croaker  2.8036773811
## 9385           Benthic    1  california scorpionfish  2.8216437916
## 9386          Midwater    4         shiner surfperch  3.3884453828
## 9387           Benthic    5  california scorpionfish  2.8791511226
## 9388     Benthopelagic    5       california corbina  2.7942670444
## 9389           Benthic   19         hornyhead turbot  2.8672621789
## 9390     Benthopelagic    2              black perch  3.0379887291
## 9391     Benthopelagic   21        spotted sand bass  2.9896995463
## 9392     Benthopelagic    7       vermilion rockfish  3.4396329658
## 9393     Benthopelagic    3              black perch  3.0431513293
## 9394           Pelagic   11            chub mackerel  2.6953485578
## 9395     Benthopelagic   22            white croaker  3.0350334427
## 9396          Midwater    2         shiner surfperch  2.9949948092
## 9397     Benthopelagic   11   gray smoothhound shark  3.2122211945
## 9398     Benthopelagic   19            white croaker  3.0869788919
## 9399     Benthopelagic   11            white croaker  2.9312192818
## 9400     Benthopelagic    5            white croaker  2.8866371994
## 9401     Benthopelagic   21          white surfperch  2.7486520810
## 9402          Midwater    5                 halfmoon  3.1641360163
## 9403          Midwater   10                kelp bass  2.9089689315
## 9404          Midwater    1                kelp bass  3.0275075002
## 9405          Midwater    3         shiner surfperch  2.5186222139
## 9406     Benthopelagic   10            white croaker  3.5120576044
## 9407          Midwater    5                queenfish  2.4787175335
## 9408     Benthopelagic    1            white croaker  2.7923267777
## 9409     Benthopelagic    4              black perch  2.8465145026
## 9410     Benthopelagic    1         barred sand bass  2.8986893314
## 9411          Midwater    5                kelp bass  3.0765619851
## 9412           Pelagic    5          pacific sardine  2.6719648079
## 9413     Benthopelagic   21         barred sand bass  3.3022149271
## 9414     Benthopelagic    4           pile surfperch  2.9922535304
## 9415          Midwater   14                kelp bass  2.8271267178
## 9416     Benthopelagic   16          copper rockfish  2.9073919143
## 9417     Benthopelagic    3        spotted sand bass  2.9158161987
## 9418          Midwater   16                kelp bass  3.2977300486
## 9419          Midwater    4                kelp bass  3.0071519029
## 9420     Benthopelagic   14              black perch  2.9145125081
## 9421           Pelagic    6          pacific sardine  3.1703308835
## 9422     Benthopelagic   11              black perch  2.9517181814
## 9423     Benthopelagic    4           pile surfperch  2.9516341643
## 9424     Benthopelagic    5        yellowfin croaker  3.0905630924
## 9425           Benthic   14         hornyhead turbot  3.1275716425
## 9426           Pelagic    5          pacific sardine  3.1102493364
## 9427           Pelagic   21            chub mackerel  2.7383605524
## 9428          Midwater   21                kelp bass  3.2223846768
## 9429     Benthopelagic   10              black perch  2.8104148782
## 9430          Midwater   21                kelp bass  2.8324157603
## 9431           Pelagic    5          pacific sardine  3.3069639968
## 9432          Midwater    3         shiner surfperch  2.8963400157
## 9433     Benthopelagic    8         barred sand bass  2.9701985696
## 9434     Benthopelagic   11         barred sand bass  2.7878985765
## 9435          Midwater    1        walleye surfperch  2.8735489007
## 9436           Benthic   20  california scorpionfish  2.9081293332
## 9437           Benthic   23         hornyhead turbot  2.9802828432
## 9438           Benthic   19  california scorpionfish  2.8330449407
## 9439     Benthopelagic   12           brown rockfish  2.8472686740
## 9440     Benthopelagic   11          white surfperch  3.1741350567
## 9441     Benthopelagic    5       california corbina  3.0628148055
## 9442     Benthopelagic    4              black perch  2.7649352269
## 9443     Benthopelagic    5            white croaker  3.0684738248
## 9444     Benthopelagic    3        spotted sand bass  2.8965371103
## 9445     Benthopelagic   20            white croaker  3.0833107094
## 9446          Midwater    1         shiner surfperch  2.8023018774
## 9447           Benthic   20         hornyhead turbot  2.7323853312
## 9448           Benthic    1           spotted turbot  3.1281901741
## 9449           Benthic   23         hornyhead turbot  2.6474258510
## 9450     Benthopelagic   14       vermilion rockfish  2.9945363639
## 9451           Pelagic    5             market squid  3.5860583327
## 9452     Benthopelagic    8            white croaker  2.8835737298
## 9453           Pelagic    5             market squid  3.0917505143
## 9454     Benthopelagic    5       vermilion rockfish  2.9640208266
## 9455     Benthopelagic   11            white croaker  2.9397701875
## 9456           Benthic    3           diamond turbot  2.9576156237
## 9457           Pelagic   21         northern anchovy  2.9217984687
## 9458           Benthic    8         hornyhead turbot  3.0527392325
## 9459     Benthopelagic    4         barred sand bass  3.4522048428
## 9460          Midwater    3                jacksmelt  3.0191552390
## 9461          Midwater   21                kelp bass  3.0118767008
## 9462     Benthopelagic   11        yellowfin croaker  3.2895540829
## 9463          Midwater    8                kelp bass  3.0209117178
## 9464     Benthopelagic    9       vermilion rockfish  2.9207361138
## 9465          Midwater   21                kelp bass  2.7545671428
## 9466     Benthopelagic    1         barred surfperch  3.0962089046
## 9467          Midwater   11                top smelt  2.9937420756
## 9468     Benthopelagic    5            white croaker  2.8034299338
## 9469     Benthopelagic    4         barred surfperch  3.1467562400
## 9470     Benthopelagic   21        yellowfin croaker  3.0214202551
## 9471     Benthopelagic    5         barred sand bass  2.9922751035
## 9472           Pelagic   21            chub mackerel  3.3167515367
## 9473          Midwater   21                kelp bass  3.1241760624
## 9474     Benthopelagic    8            white croaker  2.9931943083
## 9475           Pelagic   21            chub mackerel  2.8432294546
## 9476     Benthopelagic   16        speckled rockfish  3.1574056019
## 9477     Benthopelagic    5         barred sand bass  3.0384033469
## 9478           Pelagic   21           slough anchovy  3.3419680164
## 9479     Benthopelagic   11            rosy rockfish  3.1704347532
## 9480           Benthic    4           diamond turbot  2.8706016622
## 9481           Benthic   16  california scorpionfish  3.0076367882
## 9482     Benthopelagic   20       vermilion rockfish  3.1271398631
## 9483          Midwater   20                kelp bass  3.1050415864
## 9484          Midwater   21                kelp bass  3.1516075577
## 9485           Benthic   13         hornyhead turbot  3.0622454315
## 9486           Pelagic   21            chub mackerel  2.5072399479
## 9487     Benthopelagic   14       vermilion rockfish  2.6242891269
## 9488          Midwater    5                kelp bass  2.7370888903
## 9489           Benthic   10  california scorpionfish  3.4403613828
## 9490     Benthopelagic    5         barred sand bass  2.7944654697
## 9491          Midwater    4                kelp bass  2.9221644935
## 9492     Benthopelagic    1        yellowfin croaker  3.0741597551
## 9493     Benthopelagic   10           brown rockfish  2.9097340951
## 9494           Benthic    5          longfin sanddab  2.9688546355
## 9495     Benthopelagic    3        yellowfin croaker  2.8954046320
## 9496     Benthopelagic   11            white croaker  3.0547712414
## 9497          Midwater   20                kelp bass  3.0216760044
## 9498           Benthic    5       california halibut  3.2350613486
## 9499           Pelagic    5          pacific sardine  3.3988791425
## 9500          Midwater   21                kelp bass  2.8109609991
## 9501     Benthopelagic    8            white croaker  3.1045514656
## 9502     Benthopelagic    3       california corbina  2.9999153555
## 9503     Benthopelagic    4        spotted sand bass  3.0002046882
## 9504           Benthic   10  california scorpionfish  2.6295931768
## 9505           Benthic    5  california scorpionfish  2.9503175756
## 9506          Midwater   11                top smelt  3.0886804945
## 9507     Benthopelagic   17            white croaker  2.6424079807
## 9508     Benthopelagic    5            white croaker  3.4744887803
## 9509           Pelagic   21         northern anchovy  2.8630172982
## 9510           Pelagic    5          pacific sardine  3.2036484657
## 9511     Benthopelagic    1       california corbina  3.0460803471
## 9512          Midwater    5                kelp bass  3.0775665433
## 9513     Benthopelagic   20            white croaker  3.2749300805
## 9514     Benthopelagic    3            rosy rockfish  2.8649187716
## 9515     Benthopelagic   21        yellowfin croaker  3.0022109122
## 9516     Benthopelagic    1         barred surfperch  2.7827443409
## 9517     Benthopelagic   14         barred sand bass  2.9217169266
## 9518     Benthopelagic    5       vermilion rockfish  3.0725159808
## 9519          Midwater   21                kelp bass  2.8183459796
## 9520     Benthopelagic    3           pile surfperch  3.0779391066
## 9521     Benthopelagic   19       vermilion rockfish  3.2953550908
## 9522           Pelagic    5            chub mackerel  3.3599446424
## 9523          Midwater   21                kelp bass  2.9494578573
## 9524          Midwater    5                queenfish  2.8680790961
## 9525     Benthopelagic   11            white croaker  3.1771978684
## 9526           Benthic    1           diamond turbot  3.1107836774
## 9527           Benthic   22         hornyhead turbot  2.9125898457
## 9528          Midwater    5                kelp bass  2.8576558751
## 9529     Benthopelagic   21          spotfin croaker  2.9009047416
## 9530           Pelagic    5            chub mackerel  3.3042228875
## 9531     Benthopelagic    5       vermilion rockfish  3.2355205318
## 9532     Benthopelagic    1         barred surfperch  3.0238865059
## 9533     Benthopelagic   11            white croaker  2.9723639069
## 9534     Benthopelagic    4         barred sand bass  3.1929227102
## 9535     Benthopelagic   17       vermilion rockfish  2.9433682055
## 9536     Benthopelagic   11          white surfperch  2.9374239017
## 9537     Benthopelagic    8          copper rockfish  2.8054759432
## 9538          Midwater   11            kelp rockfish  2.9638076382
## 9539     Benthopelagic    5            white croaker  2.5919169191
## 9540     Benthopelagic    4         barred surfperch  2.9289851862
## 9541     Benthopelagic    4       california corbina  3.3657755138
## 9542           Benthic   20       california halibut  2.6360971316
## 9543           Benthic    3           diamond turbot  3.3239720731
## 9544     Benthopelagic   12         barred sand bass  2.9188957178
## 9545          Midwater    1                 halfmoon  3.2083340105
## 9546     Benthopelagic   13       vermilion rockfish  3.1226398276
## 9547           Pelagic    5        pacific barracuda  2.8873109495
## 9548     Benthopelagic    3              black perch  2.6791325505
## 9549           Pelagic   21            chub mackerel  3.0310770337
## 9550     Benthopelagic   14            white croaker  3.3584866697
## 9551     Benthopelagic   24       vermilion rockfish  3.1691061662
## 9552     Benthopelagic   20       california corbina  2.9588731992
## 9553     Benthopelagic   21         barred sand bass  2.9529830265
## 9554     Benthopelagic   11            white croaker  3.4064217919
## 9555          Midwater   21                kelp bass  2.7376775262
## 9556          Midwater    1         shiner surfperch  2.5833123539
## 9557          Midwater    5         shiner surfperch  2.9308857438
## 9558     Benthopelagic   11           brown rockfish  2.9350108624
## 9559     Benthopelagic    5         barred sand bass  2.7625631533
## 9560           Pelagic    5          pacific sardine  3.1378025309
## 9561           Benthic   16         hornyhead turbot  3.2081324270
## 9562          Midwater    1         shiner surfperch  2.7061949229
## 9563     Benthopelagic    5                  opaleye  3.0392125296
## 9564     Benthopelagic   20            white croaker  2.8788045915
## 9565     Benthopelagic   21            white croaker  3.1871291599
## 9566     Benthopelagic   11          spotfin croaker  3.1813014918
## 9567           Benthic   22  california scorpionfish  3.0914031227
## 9568           Pelagic    5          pacific sardine  3.0075438110
## 9569     Benthopelagic    1                  opaleye  3.0022204926
## 9570          Midwater    1         shiner surfperch  3.1401156781
## 9571     Benthopelagic   11         barred surfperch  3.0781759369
## 9572          Midwater   11         shiner surfperch  3.2136481808
## 9573     Benthopelagic   12            white croaker  3.0529640266
## 9574          Midwater   21                queenfish  3.6099640287
## 9575           Benthic    4    shovelnose guitarfish  2.5090274433
## 9576     Benthopelagic   21         barred sand bass  2.9880220360
## 9577     Benthopelagic   10            white croaker  3.2033504864
## 9578     Benthopelagic    1       california corbina  2.8057342098
## 9579     Benthopelagic   11            white croaker  3.0713555992
## 9580          Midwater   11                kelp bass  3.1586964197
## 9581     Benthopelagic    3        spotted sand bass  2.9654294332
## 9582     Benthopelagic    3          copper rockfish  3.0500073666
## 9583           Pelagic   11            chub mackerel  3.2355680409
## 9584           Pelagic    5             market squid  3.0313756475
## 9585           Pelagic   11            chub mackerel  2.8527603054
## 9586           Pelagic   21            chub mackerel  3.2218547796
## 9587           Benthic   22  california scorpionfish  2.9954135376
## 9588          Midwater    4         shiner surfperch  3.3406482808
## 9589           Benthic   18  california scorpionfish  3.0688628099
## 9590     Benthopelagic    5                  opaleye  2.8203320974
## 9591          Midwater   21                queenfish  2.8898261892
## 9592     Benthopelagic    5          copper rockfish  3.0366765935
## 9593     Benthopelagic   11         barred sand bass  3.1326272086
## 9594     Benthopelagic   21        spotted sand bass  2.7938921159
## 9595     Benthopelagic   22            white croaker  3.1033497761
## 9596           Pelagic    5         northern anchovy  3.1945364594
## 9597     Benthopelagic   21            leopard shark  2.8538094115
## 9598          Midwater   11         shiner surfperch  2.6557041911
## 9599     Benthopelagic   21            white croaker  3.1456982645
## 9600           Benthic    5       california halibut  3.1053609538
## 9601          Midwater   11                kelp bass  3.8254740060
## 9602          Midwater   18                kelp bass  3.3582583022
## 9603     Benthopelagic    5            white croaker  3.5909494589
## 9604     Benthopelagic    1         barred surfperch  3.6649726091
## 9605     Benthopelagic   20            white croaker  3.6550870720
## 9606     Benthopelagic    4 brown smooth-hound shark  3.2859996516
## 9607     Benthopelagic   11         barred sand bass  3.6426398419
## 9608           Benthic   15         hornyhead turbot  3.5760830600
## 9609           Benthic    5  california scorpionfish  3.7205213796
## 9610     Benthopelagic   14       vermilion rockfish  3.5362910241
## 9611           Pelagic    5             market squid  3.2060330951
## 9612     Benthopelagic    5            black croaker  3.8171087395
## 9613     Benthopelagic    1         barred surfperch  3.4939834295
## 9614          Midwater    2        walleye surfperch  3.3115827023
## 9615     Benthopelagic   16       vermilion rockfish  3.4657242104
## 9616           Pelagic    4            chub mackerel  3.7112424019
## 9617     Benthopelagic    1        yellowfin croaker  3.6993538299
## 9618          Midwater    5                kelp bass  3.9467245483
## 9619     Benthopelagic    6          copper rockfish  3.5923579439
## 9620           Benthic    9         hornyhead turbot  3.4923682896
## 9621     Benthopelagic   13           brown rockfish  3.8745194410
## 9622     Benthopelagic    4            white croaker  3.2501474184
## 9623     Benthopelagic   21        spotted sand bass  3.4217086229
## 9624           Pelagic    6             market squid  3.4555315172
## 9625     Benthopelagic   11            white croaker  3.7946599740
## 9626     Benthopelagic   16       vermilion rockfish  3.6548335824
## 9627           Benthic    5           diamond turbot  3.5880257892
## 9628          Midwater    5                kelp bass  3.4059029339
## 9629     Benthopelagic    3        rainbow surfperch  3.6677265070
## 9630           Benthic   21       california halibut  3.7346819007
## 9631     Benthopelagic   21            white croaker  3.2777168769
## 9632     Benthopelagic   11          white surfperch  3.5158768152
## 9633     Benthopelagic    4        yellowfin croaker  4.0943649146
## 9634           Pelagic    5         northern anchovy  3.4106028080
## 9635           Pelagic   21         northern anchovy  3.4769021714
## 9636     Benthopelagic   21        yellowfin croaker  3.7118459989
## 9637     Benthopelagic   13       vermilion rockfish  3.7406020442
## 9638     Benthopelagic   11         barred sand bass  3.7120319928
## 9639     Benthopelagic    1       california corbina  4.0420199224
## 9640     Benthopelagic    5       vermilion rockfish  3.6438692462
## 9641          Midwater    1                 halfmoon  3.4046815016
## 9642     Benthopelagic   23          starry rockfish  3.4325962052
## 9643     Benthopelagic    9          copper rockfish  3.4379210372
## 9644     Benthopelagic    5            white croaker  3.4409675124
## 9645     Benthopelagic   12         barred sand bass  3.7215128195
## 9646     Benthopelagic   23            white croaker  3.4523411856
## 9647           Pelagic    5            chub mackerel  4.1239577919
## 9648          Midwater    4                kelp bass  3.7009396259
## 9649           Pelagic    5         northern anchovy  3.4887914212
## 9650     Benthopelagic    1        spotted sand bass  3.2568780981
## 9651           Benthic   16         hornyhead turbot  3.1809706044
## 9652          Midwater   11                kelp bass  3.4929579675
## 9653           Pelagic   21            chub mackerel  3.2515129687
## 9654     Benthopelagic    1          ocean whitefish  3.3037790803
## 9655     Benthopelagic    1       california corbina  3.5273848430
## 9656     Benthopelagic   21        spotted sand bass  3.2619175075
## 9657           Pelagic    5          pacific sardine  3.5296162831
## 9658     Benthopelagic    4                  opaleye  3.5714066636
## 9659           Pelagic    6          pacific sardine  3.5017207851
## 9660           Pelagic   11            chub mackerel  3.6590026418
## 9661          Midwater   21                kelp bass  3.7387126381
## 9662     Benthopelagic    1     california sheephead  3.4397203666
## 9663          Midwater   10                kelp bass  3.4398844436
## 9664     Benthopelagic   13            white croaker  3.9757306324
## 9665           Pelagic    5            chub mackerel  3.4474070947
## 9666           Benthic   15         hornyhead turbot  3.8197576091
## 9667     Benthopelagic   24          starry rockfish  3.5549164511
## 9668     Benthopelagic   14       vermilion rockfish  3.4380377762
## 9669     Benthopelagic   22            white croaker  3.4067163775
## 9670           Benthic    5    shovelnose guitarfish  3.7458440242
## 9671           Benthic   12  california scorpionfish  3.5396780253
## 9672     Benthopelagic   11   gray smoothhound shark  3.6791911508
## 9673     Benthopelagic    3        rainbow surfperch  3.1731465383
## 9674     Benthopelagic    1                  opaleye  3.4359679331
## 9675           Pelagic    5             market squid  3.4381474921
## 9676           Pelagic    4            chub mackerel  3.5770540474
## 9677           Pelagic    5          pacific sardine  3.4685871021
## 9678     Benthopelagic   15            white croaker  3.4531345439
## 9679           Pelagic    5             market squid  3.6836899261
## 9680           Pelagic   21            chub mackerel  3.7249875772
## 9681     Benthopelagic   11           brown rockfish  3.7847725479
## 9682     Benthopelagic   20        yellowfin croaker  3.9013322092
## 9683     Benthopelagic   22         barred sand bass  3.5219397052
## 9684           Pelagic    5          pacific sardine  3.7840519445
## 9685           Benthic   13         hornyhead turbot  3.4928359858
## 9686          Midwater   12                kelp bass  3.6457600340
## 9687     Benthopelagic   22            white croaker  3.4760639618
## 9688           Pelagic    6             market squid  3.7709104438
## 9689           Pelagic    5          pacific sardine  3.5190092109
## 9690     Benthopelagic    4       california corbina  3.9093341426
## 9691     Benthopelagic   21        spotted sand bass  3.5947081849
## 9692     Benthopelagic    6    greenspotted rockfish  3.2982493042
## 9693           Pelagic    5             market squid  3.1571857005
## 9694     Benthopelagic    4            white croaker  3.6939882707
## 9695     Benthopelagic    1       california corbina  3.6157285564
## 9696          Midwater    4         shiner surfperch  3.5996950321
## 9697     Benthopelagic   23       vermilion rockfish  3.9214244136
## 9698     Benthopelagic   20       california corbina  3.8652679728
## 9699           Pelagic    5            chub mackerel  3.6947159188
## 9700     Benthopelagic   21         barred sand bass  3.7838797924
## 9701           Benthic    5  california scorpionfish  3.5980697109
## 9702           Pelagic    5             market squid  3.4369019372
## 9703     Benthopelagic   21        yellowfin croaker  3.5565957648
## 9704           Benthic    5          longfin sanddab  3.5238019691
## 9705     Benthopelagic    5       vermilion rockfish  3.5272582287
## 9706          Midwater   13     chilipepper rockfish  3.3512107768
## 9707     Benthopelagic    4        yellowfin croaker  3.4982895067
## 9708     Benthopelagic   21        yellowfin croaker  3.3210659972
## 9709     Benthopelagic    1        yellowfin croaker  3.1927276737
## 9710     Benthopelagic    3                  opaleye  3.6891846190
## 9711     Benthopelagic   11        yellowfin croaker  3.3223145619
## 9712           Benthic   15         hornyhead turbot  3.6426418187
## 9713          Midwater    3         shiner surfperch  3.6357460535
## 9714     Benthopelagic    3        spotted sand bass  3.8042415990
## 9715           Benthic   13         hornyhead turbot  3.4137892688
## 9716     Benthopelagic    7       vermilion rockfish  3.9026720862
## 9717          Midwater    3                kelp bass  3.8525850384
## 9718     Benthopelagic   22       vermilion rockfish  3.3121826263
## 9719     Benthopelagic   11          gopher rockfish  3.6652707602
## 9720     Benthopelagic    4         barred sand bass  3.7155719026
## 9721     Benthopelagic    5         barred sand bass  3.5922212433
## 9722          Midwater   10                kelp bass  3.7393951341
## 9723           Benthic    4    california lizardfish  3.3616362317
## 9724     Benthopelagic    8            white croaker  3.6881996056
## 9725          Midwater   11         shiner surfperch  3.5721712745
## 9726     Benthopelagic    1     california sheephead  3.3169793486
## 9727     Benthopelagic    5            white croaker  3.6089680822
## 9728     Benthopelagic   11            white croaker  3.5751086348
## 9729           Benthic    1           diamond turbot  3.5308418387
## 9730     Benthopelagic    6       vermilion rockfish  3.7030134803
## 9731           Pelagic   21            chub mackerel  3.5286726990
## 9732          Midwater    4           striped mullet  3.8096629307
## 9733           Benthic   19  california scorpionfish  3.7584113200
## 9734          Midwater    1         shiner surfperch  3.4157947700
## 9735     Benthopelagic   11         barred surfperch  3.5233678802
## 9736     Benthopelagic   11        spotted sand bass  3.7420646765
## 9737           Pelagic    5            chub mackerel  3.3765150824
## 9738           Pelagic    5            chub mackerel  3.7979841917
## 9739     Benthopelagic   11            white croaker  3.6149360357
## 9740     Benthopelagic    5           brown rockfish  3.4575540185
## 9741          Midwater    4           striped mullet  3.2086682436
## 9742          Midwater   21                kelp bass  3.4404529798
## 9743     Benthopelagic   21        yellowfin croaker  3.3760588813
## 9744     Benthopelagic    1         barred surfperch  3.8136492006
## 9745     Benthopelagic   14          starry rockfish  3.5998352881
## 9746     Benthopelagic   11 brown smooth-hound shark  3.5743563426
## 9747     Benthopelagic   11           brown rockfish  3.8954114318
## 9748          Midwater    1        walleye surfperch  3.5055702004
## 9749     Benthopelagic   20              black perch  3.8480929360
## 9750           Benthic   10  california scorpionfish  4.0473926484
## 9751          Midwater   22                kelp bass  3.4615932692
## 9752     Benthopelagic    1        rainbow surfperch  3.5400008802
## 9753          Midwater   24      squarespot rockfish  3.5252943466
## 9754     Benthopelagic   21        yellowfin croaker  3.7016037317
## 9755     Benthopelagic   11       vermilion rockfish  3.7616971480
## 9756     Benthopelagic   11         barred sand bass  3.6404713141
## 9757           Benthic   22  california scorpionfish  3.6580690556
## 9758     Benthopelagic    1                  opaleye  3.5137187106
## 9759     Benthopelagic   21          white surfperch  4.0759580415
## 9760          Midwater    4           striped mullet  3.5322909853
## 9761           Pelagic   21            chub mackerel  4.1664004962
## 9762     Benthopelagic   22       vermilion rockfish  3.5194226214
## 9763     Benthopelagic   13            white croaker  3.5712424421
## 9764           Benthic    8  california scorpionfish  3.7367374677
## 9765     Benthopelagic    5       vermilion rockfish  3.4632994455
## 9766     Benthopelagic    3        rainbow surfperch  3.3246349588
## 9767     Benthopelagic    9   greenblotched rockfish  3.5642664157
## 9768           Pelagic   21            chub mackerel  3.5313091808
## 9769     Benthopelagic    5            white croaker  3.6513251971
## 9770           Pelagic   21            chub mackerel  3.9398789751
## 9771           Pelagic    5          pacific sardine  3.2714865226
## 9772          Midwater   12                kelp bass  3.2550365071
## 9773     Benthopelagic   11         barred sand bass  3.3855454172
## 9774           Benthic    8         hornyhead turbot  3.7821882615
## 9775           Benthic    4           spotted turbot  3.3962691592
## 9776           Benthic    5  california scorpionfish  3.1293879081
## 9777          Midwater   21                kelp bass  3.3253903417
## 9778     Benthopelagic    1       california corbina  3.6355575961
## 9779           Pelagic   21            chub mackerel  3.3580476273
## 9780           Benthic    3           diamond turbot  3.7067037555
## 9781           Pelagic   11            chub mackerel  4.1224556316
## 9782     Benthopelagic    9   greenblotched rockfish  3.6474882019
## 9783     Benthopelagic    5            white croaker  3.3699864851
## 9784     Benthopelagic    4        yellowfin croaker  3.6266055835
## 9785          Midwater    7      squarespot rockfish  3.5411773870
## 9786     Benthopelagic   15        speckled rockfish  3.2889615862
## 9787     Benthopelagic   11          white surfperch  3.5693500300
## 9788     Benthopelagic   13       vermilion rockfish  3.4773154084
## 9789     Benthopelagic    2        spotted sand bass  3.3441905174
## 9790     Benthopelagic   15       vermilion rockfish  3.8091745101
## 9791     Benthopelagic   13            white croaker  3.2617837749
## 9792     Benthopelagic    1              black perch  3.6249470401
## 9793     Benthopelagic    8         barred sand bass  3.6667125978
## 9794           Pelagic   11            chub mackerel  3.4438681692
## 9795           Pelagic    6             market squid  3.7852125345
## 9796     Benthopelagic   10            white croaker  3.8115459146
## 9797           Benthic    4           spotted turbot  3.7174698313
## 9798          Midwater   11                kelp bass  3.3013856507
## 9799     Benthopelagic    1              black perch  3.9306016715
## 9800     Benthopelagic   21            white croaker  3.4989081484
## 9801     Benthopelagic   20       california corbina  3.2080096535
## 9802     Benthopelagic   11              black perch  3.5650467597
## 9803           Pelagic   21            chub mackerel  3.6813574505
## 9804     Benthopelagic    1        yellowfin croaker  3.8093097488
## 9805     Benthopelagic   10           brown rockfish  3.5998772272
## 9806           Pelagic   11            chub mackerel  3.4694295943
## 9807     Benthopelagic   11          gopher rockfish  3.6359652330
## 9808     Benthopelagic   21        spotted sand bass  3.5983501722
## 9809     Benthopelagic   23       vermilion rockfish  4.0540775014
## 9810           Pelagic    5            chub mackerel  3.7294274796
## 9811          Midwater    3         shiner surfperch  3.6276320936
## 9812          Midwater   11         shiner surfperch  3.3639771394
## 9813     Benthopelagic   20         barred surfperch  3.5775885055
## 9814     Benthopelagic    3         barred surfperch  3.3608114168
## 9815     Benthopelagic   21        yellowfin croaker  3.1453382200
## 9816     Benthopelagic    5       california corbina  3.5800435442
## 9817     Benthopelagic    5            white croaker  3.5809547361
## 9818           Pelagic    5             market squid  3.4088127408
## 9819     Benthopelagic   17            white croaker  3.4153131813
## 9820     Benthopelagic   20         barred sand bass  3.5088236438
## 9821     Benthopelagic    3              black perch  3.5625084322
## 9822     Benthopelagic   11            white croaker  3.6073992458
## 9823     Benthopelagic    5                  opaleye  3.1141612216
## 9824     Benthopelagic    5            white croaker  3.4183389294
## 9825          Midwater   21                kelp bass  3.6321888739
## 9826     Benthopelagic   23       vermilion rockfish  3.3412216941
## 9827     Benthopelagic    4       california corbina  3.5241058681
## 9828     Benthopelagic   11              black perch  3.7838452368
## 9829     Benthopelagic    5                  opaleye  3.6048390295
## 9830     Benthopelagic    5            white croaker  3.6351860423
## 9831     Benthopelagic   11        spotted sand bass  3.7168115433
## 9832           Pelagic   21            chub mackerel  3.7037925464
## 9833           Pelagic    5         northern anchovy  3.4283476678
## 9834     Benthopelagic    3        spotted sand bass  3.1895924869
## 9835     Benthopelagic   20           pile surfperch  3.4606568388
## 9836           Pelagic    5         northern anchovy  3.7976700369
## 9837           Benthic   11         hornyhead turbot  4.0073027420
## 9838     Benthopelagic   11            black croaker  3.2197600636
## 9839     Benthopelagic    1          white surfperch  3.7771266029
## 9840     Benthopelagic   11         barred sand bass  3.9684490839
## 9841     Benthopelagic   14            white croaker  3.3280546809
## 9842     Benthopelagic    3       california corbina  3.7113038683
## 9843           Pelagic    5            chub mackerel  3.6751862871
## 9844     Benthopelagic   12            white croaker  3.6803923394
## 9845     Benthopelagic    1        yellowfin croaker  3.4306108459
## 9846     Benthopelagic   22          starry rockfish  3.3565030706
## 9847     Benthopelagic    5                  opaleye  3.5663634636
## 9848           Pelagic   11            chub mackerel  3.5822739385
## 9849     Benthopelagic   22            white croaker  3.4546779319
## 9850     Benthopelagic   17        speckled rockfish  3.2046861189
## 9851     Benthopelagic   11         barred sand bass  3.7041450941
## 9852     Benthopelagic   21        spotted sand bass  3.7681040431
## 9853     Benthopelagic    1        spotted sand bass  3.7811096350
## 9854     Benthopelagic    4           pile surfperch  3.6141164986
## 9855     Benthopelagic    5                  opaleye  4.0151829205
## 9856          Midwater    2                kelp bass  3.6865604276
## 9857     Benthopelagic   10              black perch  3.5790105080
## 9858           Pelagic    5          pacific sardine  3.3800609343
## 9859          Midwater    1         shiner surfperch  3.3188451013
## 9860     Benthopelagic    1         barred surfperch  3.6034061017
## 9861     Benthopelagic    2            white croaker  3.5006178630
## 9862     Benthopelagic    1            white croaker  3.4538033334
## 9863     Benthopelagic    5         barred sand bass  3.2927648750
## 9864     Benthopelagic   24       vermilion rockfish  3.4911665388
## 9865          Midwater    3          canary rockfish  3.4225620547
## 9866     Benthopelagic   18            white croaker  3.5245147821
## 9867     Benthopelagic    7           brown rockfish  3.7605832681
## 9868          Midwater    5                queenfish  3.6332799266
## 9869           Benthic    1           diamond turbot  3.7353582196
## 9870     Benthopelagic    1            white croaker  2.9115648053
## 9871           Pelagic    5             market squid  3.3128710433
## 9872           Pelagic    5             market squid  3.5513423437
## 9873     Benthopelagic    3        spotted sand bass  3.4323924784
## 9874           Pelagic    5             market squid  3.3909845596
## 9875          Midwater   11                kelp bass  3.7498547512
## 9876           Benthic    5       california halibut  3.0170654063
## 9877           Benthic   19         hornyhead turbot  3.4998597194
## 9878           Pelagic    5         northern anchovy  3.3660759252
## 9879          Midwater   21                kelp bass  3.4697482705
## 9880           Pelagic   21            chub mackerel  3.7461176990
## 9881          Midwater    1                queenfish  3.7567467747
## 9882     Benthopelagic    3        spotted sand bass  3.6359022329
## 9883     Benthopelagic   14    greenspotted rockfish  3.6263292570
## 9884     Benthopelagic    5            white croaker  3.7475986684
## 9885     Benthopelagic   10   greenblotched rockfish  3.4451068973
## 9886     Benthopelagic    5                  opaleye  3.6407576898
## 9887     Benthopelagic    1            white croaker  3.4762286713
## 9888           Pelagic    5          pacific sardine  3.8144121677
## 9889          Midwater    1            blue rockfish  3.2143682291
## 9890          Midwater   21                kelp bass  3.4243155815
## 9891     Benthopelagic    3         barred sand bass  3.5731103539
## 9892           Pelagic   21            chub mackerel  3.4780560173
## 9893     Benthopelagic    4                  opaleye  3.5239913937
## 9894     Benthopelagic    1     california sheephead  3.5963851899
## 9895     Benthopelagic   11              black perch  3.5058331255
## 9896     Benthopelagic    1        yellowfin croaker  3.4973147016
## 9897     Benthopelagic   18              black perch  3.8890287697
## 9898     Benthopelagic    1        yellowfin croaker  3.3910917193
## 9899     Benthopelagic   21        spotted sand bass  3.3060826879
## 9900     Benthopelagic    5                  opaleye  3.4233093816
## 9901     Benthopelagic   12       vermilion rockfish  3.7278573243
## 9902     Benthopelagic   18       vermilion rockfish  3.4374379417
## 9903     Benthopelagic    3              black perch  3.4898074800
## 9904          Midwater    3                kelp bass  3.5809584724
## 9905     Benthopelagic   12            white croaker  3.3073832607
## 9906          Midwater   21                kelp bass  3.5882300874
## 9907          Midwater    4         shiner surfperch  3.7624923226
## 9908     Benthopelagic   11          gopher rockfish  3.9465636093
## 9909     Benthopelagic    3       vermilion rockfish  3.4122392562
## 9910     Benthopelagic   14         barred sand bass  3.4617565289
## 9911          Midwater   21                kelp bass  3.5758509714
## 9912          Midwater    1                queenfish  3.4963360493
## 9913     Benthopelagic   22          starry rockfish  3.5842926276
## 9914     Benthopelagic   20            white croaker  3.7883520493
## 9915     Benthopelagic    4       california corbina  3.4134326781
## 9916     Benthopelagic    8              black perch  3.3624413125
## 9917           Benthic   20         hornyhead turbot  3.6176189719
## 9918          Midwater   21                kelp bass  3.5562624490
## 9919     Benthopelagic    4              black perch  3.4632715965
## 9920     Benthopelagic    4            white croaker  4.0263612564
## 9921     Benthopelagic    4              black perch  3.3295490469
## 9922     Benthopelagic   21        yellowfin croaker  3.8379547661
## 9923     Benthopelagic    1                  opaleye  3.5224770286
## 9924           Benthic   21         hornyhead turbot  3.8014042011
## 9925     Benthopelagic    4         barred surfperch  3.7921564142
## 9926          Midwater   11                kelp bass  3.5469782078
## 9927           Pelagic    5             market squid  3.5826363671
## 9928           Benthic    1           diamond turbot  3.3438433690
## 9929     Benthopelagic    1            white croaker  3.8184816820
## 9930     Benthopelagic    4              black perch  3.5745687525
## 9931           Pelagic    6             market squid  3.6929211323
## 9932     Benthopelagic   11            white croaker  3.1201854794
## 9933     Benthopelagic    9            white croaker  3.4398901984
## 9934           Pelagic   21         northern anchovy  3.6835320450
## 9935     Benthopelagic   11           brown rockfish  3.5585139374
## 9936     Benthopelagic   11          ocean whitefish  3.4786259642
## 9937           Benthic   17         hornyhead turbot  3.4106867394
## 9938           Benthic   11  california scorpionfish  3.3816566889
## 9939           Benthic   20           diamond turbot  3.8031604112
## 9940     Benthopelagic    4        spotted sand bass  3.6738260855
## 9941          Midwater   11           olive rockfish  3.3821185963
## 9942     Benthopelagic    1              black perch  3.6831683247
## 9943     Benthopelagic    5            white croaker  3.6282983044
## 9944           Pelagic    5         northern anchovy  3.5473078971
## 9945     Benthopelagic   11        yellowfin croaker  3.4635364464
## 9946          Midwater   16                kelp bass  3.2959773449
## 9947     Benthopelagic   11            white croaker  3.2913736167
## 9948     Benthopelagic   11              black perch  3.8035014927
## 9949          Midwater   18                kelp bass  3.6046176836
## 9950     Benthopelagic    3              black perch  3.5681006295
## 9951          Midwater    1                kelp bass  3.3823434097
## 9952     Benthopelagic   15            white croaker  3.5601969910
## 9953     Benthopelagic   22         barred sand bass  3.5020407692
## 9954     Benthopelagic    1            white croaker  3.4017660579
## 9955     Benthopelagic   21        yellowfin croaker  3.6338078475
## 9956           Benthic    5  california scorpionfish  3.6609795884
## 9957           Pelagic   21            chub mackerel  3.5251046244
## 9958           Benthic    1           spotted turbot  3.4889402025
## 9959     Benthopelagic   11          gopher rockfish  3.6604276955
## 9960     Benthopelagic    1            white croaker  3.6886691055
## 9961     Benthopelagic    5       california corbina  3.4241384737
## 9962     Benthopelagic    1              black perch  3.4249991582
## 9963     Benthopelagic   11          spotfin croaker  3.4661413459
## 9964     Benthopelagic    8          copper rockfish  3.8216357892
## 9965     Benthopelagic    4        yellowfin croaker  3.6391030704
## 9966     Benthopelagic   12            white croaker  3.3264493894
## 9967          Midwater    8      yellowtail rockfish  3.2957561997
## 9968          Midwater    3                kelp bass  3.2561350177
## 9969     Benthopelagic    5          spotfin croaker  3.6018764599
## 9970           Pelagic    5          pacific sardine  3.9069239428
## 9971           Benthic    5  california scorpionfish  3.4185142594
## 9972     Benthopelagic    3         barred surfperch  3.4566547815
## 9973           Pelagic    6          pacific sardine  3.4709025207
## 9974     Benthopelagic   11       vermilion rockfish  3.8323222694
## 9975           Pelagic    5         northern anchovy  3.5990433291
## 9976           Pelagic   11            chub mackerel  3.3393814332
## 9977           Pelagic   21            chub mackerel  4.0383012275
## 9978          Midwater    5                top smelt  3.2898872323
## 9979          Midwater    2                queenfish  3.4958493896
## 9980     Benthopelagic    4            white croaker  3.7190632388
## 9981     Benthopelagic   18              black perch  3.7011695382
## 9982          Midwater   21                kelp bass  3.8046973786
## 9983     Benthopelagic    4          copper rockfish  3.5034594031
## 9984     Benthopelagic   20              black perch  3.8358661159
## 9985           Benthic    1         speckled sanddab  3.5251078702
## 9986     Benthopelagic   18            white croaker  3.6133901080
## 9987     Benthopelagic   11         barred sand bass  3.4720915455
## 9988     Benthopelagic   11          spotfin croaker  3.5589739679
## 9989           Pelagic   11            chub mackerel  3.5543005229
## 9990           Pelagic    5            chub mackerel  3.3263230952
## 9991           Benthic   18         hornyhead turbot  3.6323688471
## 9992           Benthic   12  california scorpionfish  3.4110811168
## 9993           Benthic    1             fantail sole  3.6786296395
## 9994          Midwater   21                kelp bass  3.8852390324
## 9995     Benthopelagic    3          white surfperch  3.5660046416
## 9996     Benthopelagic   13       vermilion rockfish  3.8996959081
## 9997     Benthopelagic   18            white croaker  3.5546109705
## 9998          Midwater    1         shiner surfperch  3.5283423881
## 9999     Benthopelagic   14            white croaker  3.9712416050
## 10000         Midwater   11                kelp bass  3.7314414778
## 10001          Benthic    5         speckled sanddab  3.3299216073
## 10002          Benthic   17  california scorpionfish  3.5013705687
## 10003    Benthopelagic   21       california corbina  3.5787412280
## 10004          Benthic   11  california scorpionfish  3.5748988898
## 10005          Benthic   17         hornyhead turbot  3.4638507883
## 10006    Benthopelagic   12              black perch  3.3897486430
## 10007    Benthopelagic    1            white croaker  3.4884687953
## 10008    Benthopelagic    5       california corbina  3.7180700178
## 10009    Benthopelagic    4              black perch  3.2386186936
## 10010    Benthopelagic    5            white croaker  3.5427425703
## 10011    Benthopelagic    1            white croaker  3.2672022816
## 10012          Benthic   14         hornyhead turbot  3.2015109351
## 10013          Benthic    4    shovelnose guitarfish  3.2657376381
## 10014         Midwater    1        walleye surfperch  3.3920377926
## 10015         Midwater   18                kelp bass  3.3112767651
## 10016    Benthopelagic    5            white croaker  3.1763725432
## 10017    Benthopelagic    5         barred sand bass  3.4785081790
## 10018         Midwater    2                kelp bass  3.7311100941
## 10019    Benthopelagic   21         barred sand bass  3.5226496234
## 10020    Benthopelagic   12       vermilion rockfish  3.4172291606
## 10021    Benthopelagic    2       quillback rockfish  3.6663460259
## 10022    Benthopelagic   21            white croaker  3.4752023239
## 10023    Benthopelagic   16       vermilion rockfish  3.4294706105
## 10024    Benthopelagic    3              black perch  3.7137934939
## 10025          Benthic    8  california scorpionfish  3.1825287409
## 10026          Pelagic    5          pacific sardine  3.7169099217
## 10027          Benthic    5  california scorpionfish  3.3673851121
## 10028    Benthopelagic    8          copper rockfish  3.4944783833
## 10029          Pelagic    5          pacific sardine  3.3440065757
## 10030    Benthopelagic    2            white croaker  3.6898984055
## 10031    Benthopelagic    1            white croaker  3.3478287954
## 10032    Benthopelagic   21            leopard shark  3.1767255726
## 10033    Benthopelagic   14              black perch  3.4875082631
## 10034    Benthopelagic   16       vermilion rockfish  3.7714538149
## 10035    Benthopelagic   10       vermilion rockfish  3.2303211389
## 10036         Midwater   21                kelp bass  3.4138695058
## 10037    Benthopelagic    1            rosy rockfish  3.3585666946
## 10038         Midwater    3         shiner surfperch  3.5890608286
## 10039    Benthopelagic   11            white croaker  3.2148018016
## 10040    Benthopelagic    1         barred surfperch  3.5462149009
## 10041         Midwater    1         shiner surfperch  3.7686051331
## 10042          Pelagic   21            chub mackerel  3.5430546780
## 10043    Benthopelagic   16       vermilion rockfish  3.4488007641
## 10044    Benthopelagic    7        speckled rockfish  3.3710774236
## 10045         Midwater    4         shiner surfperch  3.2351974678
## 10046    Benthopelagic   11       vermilion rockfish  3.5477382942
## 10047          Pelagic    5            chub mackerel  3.2275321332
## 10048         Midwater   14                kelp bass  3.3201925643
## 10049    Benthopelagic    3              black perch  3.4344502595
## 10050    Benthopelagic    5            black croaker  3.2240210970
## 10051         Midwater    5                top smelt  3.2113076789
## 10052         Midwater   11                top smelt  3.2809741459
## 10053          Benthic   10         hornyhead turbot  3.5897954352
## 10054          Pelagic    5             market squid  3.4514039859
## 10055    Benthopelagic   12              black perch  3.2686532418
## 10056    Benthopelagic    1       california corbina  3.4469153879
## 10057    Benthopelagic    3         barred surfperch  3.3449116627
## 10058    Benthopelagic   19       vermilion rockfish  3.5476330879
## 10059    Benthopelagic   15        speckled rockfish  3.7136711447
## 10060          Pelagic    5          pacific sardine  3.1665822686
## 10061    Benthopelagic    4         barred surfperch  3.5142850116
## 10062    Benthopelagic   11              black perch  3.1737749164
## 10063         Midwater   11                kelp bass  3.5039285131
## 10064    Benthopelagic   11         barred surfperch  3.5905212036
## 10065          Pelagic    5         northern anchovy  3.3332316418
## 10066          Pelagic    5          pacific sardine  3.6682300541
## 10067    Benthopelagic   11            white croaker  3.3980705106
## 10068    Benthopelagic   19            white croaker  3.5106931708
## 10069    Benthopelagic    3              black perch  3.3557573379
## 10070    Benthopelagic   19       vermilion rockfish  3.4954352193
## 10071    Benthopelagic   12           brown rockfish  3.2586034148
## 10072    Benthopelagic    6          copper rockfish  3.3949821389
## 10073          Pelagic    5             market squid  3.4053206514
## 10074    Benthopelagic   22              black perch  3.5100809161
## 10075          Benthic   20       california halibut  3.4347113238
## 10076    Benthopelagic    2        spotted sand bass  3.2664029221
## 10077          Benthic    1           diamond turbot  3.5669377592
## 10078          Benthic   23         hornyhead turbot  3.5934121060
## 10079    Benthopelagic    5         barred sand bass  3.4071126018
## 10080          Benthic    4    california lizardfish  3.5766466064
## 10081    Benthopelagic   11 brown smooth-hound shark  3.3880576191
## 10082    Benthopelagic   21            white croaker  3.4355640076
## 10083    Benthopelagic    4            flag rockfish  3.2233853448
## 10084          Benthic   12         hornyhead turbot  3.4409004964
## 10085          Benthic    4    shovelnose guitarfish  3.3358625699
## 10086    Benthopelagic   14            white croaker  3.4156185448
## 10087    Benthopelagic    5     california sheephead  3.2753634466
## 10088          Pelagic    5         northern anchovy  3.4025164434
## 10089    Benthopelagic   20       vermilion rockfish  3.2841170275
## 10090    Benthopelagic    2         barred surfperch  3.7620219648
## 10091         Midwater   17      squarespot rockfish  3.2888578172
## 10092    Benthopelagic   18       vermilion rockfish  3.2274847905
## 10093    Benthopelagic   11            white croaker  3.3156458016
## 10094    Benthopelagic    4         barred sand bass  3.5071449691
## 10095         Midwater    4                top smelt  3.4760797952
## 10096          Benthic   17         hornyhead turbot  3.4577189165
## 10097    Benthopelagic   11            white croaker  3.2775259823
## 10098    Benthopelagic   11         barred surfperch  3.6172597607
## 10099          Pelagic    5             market squid  3.3292740878
## 10100          Benthic   19  california scorpionfish  3.6345133852
## 10101          Pelagic    5             market squid  3.4257598891
## 10102    Benthopelagic   10         barred sand bass  3.0812361465
## 10103          Pelagic   11            chub mackerel  3.4886118228
## 10104    Benthopelagic   11              black perch  3.3028652862
## 10105    Benthopelagic   22              black perch  3.3883851871
## 10106    Benthopelagic   12            white croaker  3.2173119799
## 10107          Benthic    5    shovelnose guitarfish  3.6486478804
## 10108    Benthopelagic   20       california corbina  3.6191245754
## 10109    Benthopelagic    5                  opaleye  3.5741478594
## 10110    Benthopelagic   16       vermilion rockfish  3.6236905023
## 10111    Benthopelagic    1        spotted sand bass  3.3413594645
## 10112    Benthopelagic    3        rainbow surfperch  3.5037386399
## 10113    Benthopelagic   17            white croaker  3.2199754667
## 10114          Benthic   22  california scorpionfish  3.3090538528
## 10115         Midwater   21                kelp bass  3.7182932499
## 10116          Pelagic    5             market squid  3.4909654801
## 10117    Benthopelagic   21            white croaker  3.4145073603
## 10118    Benthopelagic    1        rainbow surfperch  3.4261481537
## 10119    Benthopelagic    4       california corbina  3.2678821978
## 10120          Pelagic   21            chub mackerel  3.4908300664
## 10121    Benthopelagic   20            white croaker  3.3606732495
## 10122          Pelagic    6          pacific sardine  3.3775558273
## 10123         Midwater    4           striped mullet  3.4957812795
## 10124          Pelagic   21            chub mackerel  3.2670625460
## 10125          Benthic    1         speckled sanddab  3.5088667784
## 10126    Benthopelagic   11            white croaker  3.3232560828
## 10127          Benthic    8         hornyhead turbot  3.2188968576
## 10128         Midwater    4         shiner surfperch  3.2536771722
## 10129    Benthopelagic   10       vermilion rockfish  3.3655011011
## 10130    Benthopelagic    1        rainbow surfperch  3.4814338020
## 10131         Midwater   11         shiner surfperch  3.3200217434
## 10132    Benthopelagic    5            leopard shark  3.2241357445
## 10133          Pelagic   21            chub mackerel  3.5944014380
## 10134    Benthopelagic   11              black perch  3.3628073910
## 10135         Midwater    4         shiner surfperch  3.4110363504
## 10136    Benthopelagic   14              black perch  3.5823355871
## 10137         Midwater   11                kelp bass  3.4759328730
## 10138    Benthopelagic   18            white croaker  3.6946081650
## 10139         Midwater    4                top smelt  3.1994237256
## 10140    Benthopelagic    5   gray smoothhound shark  3.2625986683
## 10141    Benthopelagic   23            white croaker  3.3918335024
## 10142          Pelagic   21           slough anchovy  3.3987019353
## 10143         Midwater    1                queenfish  3.2774693769
## 10144    Benthopelagic   21            white croaker  3.4025189255
## 10145         Midwater    1                kelp bass  3.3434919641
## 10146    Benthopelagic   24       vermilion rockfish  3.5628027175
## 10147          Pelagic   21            chub mackerel  3.1539033330
## 10148          Pelagic    5          pacific sardine  3.5379102834
## 10149    Benthopelagic    4       california corbina  3.3566099634
## 10150    Benthopelagic    3       california corbina  3.5752460696
## 10151    Benthopelagic   16              black perch  3.1135452966
## 10152          Pelagic    5          pacific sardine  3.3971637237
## 10153          Pelagic   21            chub mackerel  3.5698056504
## 10154    Benthopelagic   21         barred sand bass  3.5767693292
## 10155          Pelagic    6          pacific sardine  3.2243590098
## 10156    Benthopelagic    5        yellowfin croaker  3.5605164569
## 10157          Benthic    1  california scorpionfish  3.3708743117
## 10158         Midwater    4         shiner surfperch  3.2178988800
## 10159          Benthic    5  california scorpionfish  3.6357424334
## 10160    Benthopelagic    5       california corbina  3.1849849539
## 10161          Benthic   19         hornyhead turbot  3.3342742762
## 10162    Benthopelagic    2              black perch  3.6006781374
## 10163    Benthopelagic   21        spotted sand bass  3.4344620144
## 10164    Benthopelagic    7       vermilion rockfish  3.2898014087
## 10165    Benthopelagic    3              black perch  3.4676734781
## 10166          Pelagic   11            chub mackerel  3.3675851812
## 10167    Benthopelagic   22            white croaker  3.2114416582
## 10168         Midwater    2         shiner surfperch  3.5763689072
## 10169    Benthopelagic   11   gray smoothhound shark  3.3801197670
## 10170    Benthopelagic   19            white croaker  3.4860520251
## 10171    Benthopelagic   11            white croaker  3.5727732361
## 10172    Benthopelagic    5            white croaker  3.6523624663
## 10173    Benthopelagic   21          white surfperch  3.4056668864
## 10174         Midwater    5                 halfmoon  3.5973676882
## 10175         Midwater   10                kelp bass  3.7534825315
## 10176         Midwater    1                kelp bass  3.5574948497
## 10177         Midwater    3         shiner surfperch  3.4780712318
## 10178    Benthopelagic   10            white croaker  3.1993660898
## 10179         Midwater    5                queenfish  3.2512877736
## 10180    Benthopelagic    1            white croaker  3.5812090448
## 10181    Benthopelagic    4              black perch  3.5363944005
## 10182    Benthopelagic    1         barred sand bass  3.1160030343
## 10183         Midwater    5                kelp bass  3.6586047484
## 10184          Pelagic    5          pacific sardine  3.5936821587
## 10185    Benthopelagic   21         barred sand bass  3.4702513236
## 10186    Benthopelagic    4           pile surfperch  3.5448114000
## 10187         Midwater   14                kelp bass  3.6386913344
## 10188    Benthopelagic   16          copper rockfish  3.4108521440
## 10189    Benthopelagic    3        spotted sand bass  3.4675623977
## 10190         Midwater   16                kelp bass  3.7099801111
## 10191         Midwater    4                kelp bass  3.3499012245
## 10192    Benthopelagic   14              black perch  3.5585641904
## 10193          Pelagic    6          pacific sardine  3.3212547778
## 10194    Benthopelagic   11              black perch  3.1857200138
## 10195    Benthopelagic    4           pile surfperch  3.7368031264
## 10196    Benthopelagic    5        yellowfin croaker  3.6410487890
## 10197          Benthic   14         hornyhead turbot  3.5952316460
## 10198          Pelagic    5          pacific sardine  3.4762205167
## 10199          Pelagic   21            chub mackerel  3.7824409134
## 10200         Midwater   21                kelp bass  3.4656456616
## 10201    Benthopelagic   10              black perch  3.5945216760
## 10202         Midwater   21                kelp bass  3.3875993964
## 10203          Pelagic    5          pacific sardine  3.5386863881
## 10204         Midwater    3         shiner surfperch  3.4053157634
## 10205    Benthopelagic    8         barred sand bass  3.4830363203
## 10206    Benthopelagic   11         barred sand bass  3.4016406774
## 10207         Midwater    1        walleye surfperch  3.6026806368
## 10208          Benthic   20  california scorpionfish  3.5070276750
## 10209          Benthic   23         hornyhead turbot  3.6051437883
## 10210          Benthic   19  california scorpionfish  3.3465814100
## 10211    Benthopelagic   12           brown rockfish  3.3318454798
## 10212    Benthopelagic   11          white surfperch  3.3798127872
## 10213    Benthopelagic    5       california corbina  3.6347169018
## 10214    Benthopelagic    4              black perch  3.5367442020
## 10215    Benthopelagic    5            white croaker  3.3330155215
## 10216    Benthopelagic    3        spotted sand bass  3.5031321324
## 10217    Benthopelagic   20            white croaker  3.3310782640
## 10218         Midwater    1         shiner surfperch  3.2196992104
## 10219          Benthic   20         hornyhead turbot  3.5720876898
## 10220          Benthic    1           spotted turbot  3.5687266694
## 10221          Benthic   23         hornyhead turbot  3.3378735569
## 10222    Benthopelagic   14       vermilion rockfish  3.3971541678
## 10223          Pelagic    5             market squid  3.6021170751
## 10224    Benthopelagic    8            white croaker  3.3563752471
## 10225          Pelagic    5             market squid  3.3838265526
## 10226    Benthopelagic    5       vermilion rockfish  3.4269209253
## 10227    Benthopelagic   11            white croaker  3.6491096091
## 10228          Benthic    3           diamond turbot  3.4544103726
## 10229          Pelagic   21         northern anchovy  3.5197671295
## 10230          Benthic    8         hornyhead turbot  3.5215247874
## 10231    Benthopelagic    4         barred sand bass  3.3987954890
## 10232         Midwater    3                jacksmelt  3.4687906842
## 10233         Midwater   21                kelp bass  3.4615698123
## 10234    Benthopelagic   11        yellowfin croaker  3.4821365804
## 10235         Midwater    8                kelp bass  3.6194125340
## 10236    Benthopelagic    9       vermilion rockfish  3.2875145093
## 10237         Midwater   21                kelp bass  3.3181147755
## 10238    Benthopelagic    1         barred surfperch  3.2970034944
## 10239         Midwater   11                top smelt  3.5885663413
## 10240    Benthopelagic    5            white croaker  3.1714026731
## 10241    Benthopelagic    4         barred surfperch  3.4707879126
## 10242    Benthopelagic   21        yellowfin croaker  3.5361240402
## 10243    Benthopelagic    5         barred sand bass  3.1363585771
## 10244          Pelagic   21            chub mackerel  2.9984372219
## 10245         Midwater   21                kelp bass  3.4959883137
## 10246    Benthopelagic    8            white croaker  3.5676935496
## 10247          Pelagic   21            chub mackerel  3.2067183861
## 10248    Benthopelagic   16        speckled rockfish  3.5439444744
## 10249    Benthopelagic    5         barred sand bass  3.4162186030
## 10250          Pelagic   21           slough anchovy  3.2679646966
## 10251    Benthopelagic   11            rosy rockfish  3.3518005934
## 10252          Benthic    4           diamond turbot  3.3787398547
## 10253          Benthic   16  california scorpionfish  3.5665548900
## 10254    Benthopelagic   20       vermilion rockfish  3.5508738441
## 10255         Midwater   20                kelp bass  3.4357758362
## 10256         Midwater   21                kelp bass  3.6041204762
## 10257          Benthic   13         hornyhead turbot  3.1888566522
## 10258          Pelagic   21            chub mackerel  3.2810002452
## 10259    Benthopelagic   14       vermilion rockfish  3.5210023551
## 10260         Midwater    5                kelp bass  3.3490747444
## 10261          Benthic   10  california scorpionfish  3.2867218532
## 10262    Benthopelagic    5         barred sand bass  3.3580120932
## 10263         Midwater    4                kelp bass  3.5317551077
## 10264    Benthopelagic    1        yellowfin croaker  3.4066210404
## 10265    Benthopelagic   10           brown rockfish  3.3605689251
## 10266          Benthic    5          longfin sanddab  3.3407633175
## 10267    Benthopelagic    3        yellowfin croaker  3.3156989012
## 10268    Benthopelagic   11            white croaker  3.5101836083
## 10269         Midwater   20                kelp bass  3.4558115476
## 10270          Benthic    5       california halibut  3.0699590274
## 10271          Pelagic    5          pacific sardine  3.3214037940
## 10272         Midwater   21                kelp bass  3.4369910030
## 10273    Benthopelagic    8            white croaker  3.6030767678
## 10274    Benthopelagic    3       california corbina  3.1930239262
## 10275    Benthopelagic    4        spotted sand bass  3.1436655631
## 10276          Benthic   10  california scorpionfish  3.7652272481
## 10277          Benthic    5  california scorpionfish  3.3179343352
## 10278         Midwater   11                top smelt  3.6820492710
## 10279    Benthopelagic   17            white croaker  3.4177796091
## 10280    Benthopelagic    5            white croaker  3.5341442046
## 10281          Pelagic   21         northern anchovy  3.4464565369
## 10282          Pelagic    5          pacific sardine  3.5454888490
## 10283    Benthopelagic    1       california corbina  3.3303325016
## 10284         Midwater    5                kelp bass  3.2627354555
## 10285    Benthopelagic   20            white croaker  3.4172362541
## 10286    Benthopelagic    3            rosy rockfish  3.4884421296
## 10287    Benthopelagic   21        yellowfin croaker  3.0778569088
## 10288    Benthopelagic    1         barred surfperch  3.3434022196
## 10289    Benthopelagic   14         barred sand bass  3.2378463051
## 10290    Benthopelagic    5       vermilion rockfish  3.3802445030
## 10291         Midwater   21                kelp bass  3.4464054723
## 10292    Benthopelagic    3           pile surfperch  3.7684417548
## 10293    Benthopelagic   19       vermilion rockfish  3.2098655525
## 10294          Pelagic    5            chub mackerel  3.3940146774
## 10295         Midwater   21                kelp bass  3.3286585462
## 10296         Midwater    5                queenfish  3.4747035790
## 10297    Benthopelagic   11            white croaker  3.6692939806
## 10298          Benthic    1           diamond turbot  3.5005182359
## 10299          Benthic   22         hornyhead turbot  3.4282893871
## 10300         Midwater    5                kelp bass  3.4636789274
## 10301    Benthopelagic   21          spotfin croaker  3.3017536517
## 10302          Pelagic    5            chub mackerel  3.6003428652
## 10303    Benthopelagic    5       vermilion rockfish  3.5821180304
## 10304    Benthopelagic    1         barred surfperch  3.3616306266
## 10305    Benthopelagic   11            white croaker  3.4384501905
## 10306    Benthopelagic    4         barred sand bass  3.4553879200
## 10307    Benthopelagic   17       vermilion rockfish  3.4231847050
## 10308    Benthopelagic   11          white surfperch  3.4106852563
## 10309    Benthopelagic    8          copper rockfish  3.3131341333
## 10310         Midwater   11            kelp rockfish  3.2112815680
## 10311    Benthopelagic    5            white croaker  3.3244691112
## 10312    Benthopelagic    4         barred surfperch  3.4873125978
## 10313    Benthopelagic    4       california corbina  2.9950863716
## 10314          Benthic   20       california halibut  3.1869797866
## 10315          Benthic    3           diamond turbot  3.6657998628
## 10316    Benthopelagic   12         barred sand bass  3.6270764638
## 10317         Midwater    1                 halfmoon  3.4624118999
## 10318    Benthopelagic   13       vermilion rockfish  3.4971434160
## 10319          Pelagic    5        pacific barracuda  3.6089335110
## 10320    Benthopelagic    3              black perch  3.3950438235
## 10321          Pelagic   21            chub mackerel  3.6120244742
## 10322    Benthopelagic   14            white croaker  3.1739790679
## 10323    Benthopelagic   24       vermilion rockfish  3.2433139894
## 10324    Benthopelagic   20       california corbina  3.1501972911
## 10325    Benthopelagic   21         barred sand bass  3.5314457429
## 10326    Benthopelagic   11            white croaker  3.5005692374
## 10327         Midwater   21                kelp bass  3.6277489809
## 10328         Midwater    1         shiner surfperch  3.3738672450
## 10329         Midwater    5         shiner surfperch  3.4399078228
## 10330    Benthopelagic   11           brown rockfish  3.4102402653
## 10331    Benthopelagic    5         barred sand bass  3.2871337618
## 10332          Pelagic    5          pacific sardine  3.6540818059
## 10333          Benthic   16         hornyhead turbot  3.3949889072
## 10334         Midwater    1         shiner surfperch  3.3973212315
## 10335    Benthopelagic    5                  opaleye  3.7064011517
## 10336    Benthopelagic   20            white croaker  3.1470689984
## 10337    Benthopelagic   21            white croaker  3.4002137552
## 10338    Benthopelagic   11          spotfin croaker  3.3153303938
## 10339          Benthic   22  california scorpionfish  3.6823741194
## 10340          Pelagic    5          pacific sardine  3.8408270806
## 10341    Benthopelagic    1                  opaleye  3.4908406490
## 10342         Midwater    1         shiner surfperch  3.3549530484
## 10343    Benthopelagic   11         barred surfperch  3.5038882590
## 10344         Midwater   11         shiner surfperch  3.4183458795
## 10345    Benthopelagic   12            white croaker  3.5634001733
## 10346         Midwater   21                queenfish  3.5656686978
## 10347          Benthic    4    shovelnose guitarfish  3.3357779473
## 10348    Benthopelagic   21         barred sand bass  3.5312215338
## 10349    Benthopelagic   10            white croaker  3.3582140958
## 10350    Benthopelagic    1       california corbina  3.5907614455
## 10351    Benthopelagic   11            white croaker  3.3443513847
## 10352         Midwater   11                kelp bass  3.3910269375
## 10353    Benthopelagic    3        spotted sand bass  3.5649603753
## 10354    Benthopelagic    3          copper rockfish  3.5483078059
## 10355          Pelagic   11            chub mackerel  3.4963894520
## 10356          Pelagic    5             market squid  3.5134468446
## 10357          Pelagic   11            chub mackerel  3.3287648278
## 10358          Pelagic   21            chub mackerel  3.3901664947
## 10359          Benthic   22  california scorpionfish  3.2715106673
## 10360         Midwater    4         shiner surfperch  3.2487954198
## 10361          Benthic   18  california scorpionfish  3.5200870563
## 10362    Benthopelagic    5                  opaleye  3.3035253176
## 10363         Midwater   21                queenfish  3.6402598765
## 10364    Benthopelagic    5          copper rockfish  3.5318017899
## 10365    Benthopelagic   11         barred sand bass  3.2884945663
## 10366    Benthopelagic   21        spotted sand bass  3.5736645692
## 10367    Benthopelagic   22            white croaker  3.5433170735
## 10368          Pelagic    5         northern anchovy  3.6096463283
## 10369    Benthopelagic   21            leopard shark  3.2838658104
## 10370         Midwater   11         shiner surfperch  3.4331935223
## 10371    Benthopelagic   21            white croaker  3.7612386297
## 10372          Benthic    5       california halibut  3.3011967344
## 10373         Midwater   11                kelp bass  3.5552996534
## 10374         Midwater   18                kelp bass  3.6288625100
## 10375    Benthopelagic    5            white croaker  3.5595066100
## 10376    Benthopelagic    1         barred surfperch  3.3623262160
## 10377    Benthopelagic   20            white croaker  3.4834831138
## 10378    Benthopelagic    4 brown smooth-hound shark  3.2802449047
## 10379    Benthopelagic   11         barred sand bass  3.6031270671
## 10380          Benthic   15         hornyhead turbot  3.4630948022
## 10381          Benthic    5  california scorpionfish  3.4249956208
## 10382    Benthopelagic   14       vermilion rockfish  3.5841523937
## 10383          Pelagic    5             market squid  3.4966779930
## 10384    Benthopelagic    5            black croaker  3.2667160003
## 10385    Benthopelagic    1         barred surfperch  3.4801904904
## 10386         Midwater    2        walleye surfperch  3.4042420343
## 10387    Benthopelagic   16       vermilion rockfish  3.3776908034
## 10388          Pelagic    4            chub mackerel  3.4448647035
## 10389    Benthopelagic    1        yellowfin croaker  3.1786720668
## 10390         Midwater    5                kelp bass  3.5005490126
## 10391    Benthopelagic    6          copper rockfish  3.3684821678
## 10392          Benthic    9         hornyhead turbot  3.7550661191
## 10393    Benthopelagic   13           brown rockfish  3.5985742182
## 10394    Benthopelagic    4            white croaker  3.2499438779
## 10395    Benthopelagic   21        spotted sand bass  3.2686662982
## 10396          Pelagic    6             market squid  3.4438305791
## 10397    Benthopelagic   11            white croaker  3.6092265689
## 10398    Benthopelagic   16       vermilion rockfish  3.6997000578
## 10399          Benthic    5           diamond turbot  3.2519394914
## 10400         Midwater    5                kelp bass  3.6153990458
## 10401    Benthopelagic    3        rainbow surfperch  3.3731716261
## 10402          Benthic   21       california halibut  3.1594703390
## 10403    Benthopelagic   21            white croaker  3.4435465793
## 10404    Benthopelagic   11          white surfperch  3.3836031356
## 10405    Benthopelagic    4        yellowfin croaker  3.2296139741
## 10406          Pelagic    5         northern anchovy  3.3417733560
## 10407          Pelagic   21         northern anchovy  3.4483524960
## 10408    Benthopelagic   21        yellowfin croaker  3.3577380720
## 10409    Benthopelagic   13       vermilion rockfish  3.2639161485
## 10410    Benthopelagic   11         barred sand bass  3.4487920083
## 10411    Benthopelagic    1       california corbina  3.1239783967
## 10412    Benthopelagic    5       vermilion rockfish  3.2565725779
## 10413         Midwater    1                 halfmoon  3.3964252507
## 10414    Benthopelagic   23          starry rockfish  3.1585544472
## 10415    Benthopelagic    9          copper rockfish  3.3635544284
## 10416    Benthopelagic    5            white croaker  3.3892315842
## 10417    Benthopelagic   12         barred sand bass  3.3334577128
## 10418    Benthopelagic   23            white croaker  3.3570094035
## 10419          Pelagic    5            chub mackerel  3.2027353511
## 10420         Midwater    4                kelp bass  3.6164328111
## 10421          Pelagic    5         northern anchovy  3.4626603960
## 10422    Benthopelagic    1        spotted sand bass  3.1195142013
## 10423          Benthic   16         hornyhead turbot  3.2985057263
## 10424         Midwater   11                kelp bass  3.3790671268
## 10425          Pelagic   21            chub mackerel  3.2136397521
## 10426    Benthopelagic    1          ocean whitefish  3.2686980274
## 10427    Benthopelagic    1       california corbina  3.1834387506
## 10428    Benthopelagic   21        spotted sand bass  3.3465621033
## 10429          Pelagic    5          pacific sardine  3.2543543385
## 10430    Benthopelagic    4                  opaleye  3.3925306595
## 10431          Pelagic    6          pacific sardine  3.3429598131
## 10432          Pelagic   11            chub mackerel  3.4690163918
## 10433         Midwater   21                kelp bass  3.1600250733
## 10434    Benthopelagic    1     california sheephead  3.6000945568
## 10435         Midwater   10                kelp bass  3.2820443326
## 10436    Benthopelagic   13            white croaker  3.4416088821
## 10437          Pelagic    5            chub mackerel  3.3625138491
## 10438          Benthic   15         hornyhead turbot  3.0149404422
## 10439    Benthopelagic   24          starry rockfish  2.9366991932
## 10440    Benthopelagic   14       vermilion rockfish  3.3564308458
## 10441    Benthopelagic   22            white croaker  3.3311442755
## 10442          Benthic    5    shovelnose guitarfish  3.2802593045
## 10443          Benthic   12  california scorpionfish  3.2778927002
## 10444    Benthopelagic   11   gray smoothhound shark  3.4799090810
## 10445    Benthopelagic    3        rainbow surfperch  3.3915046790
## 10446    Benthopelagic    1                  opaleye  3.5010172471
## 10447          Pelagic    5             market squid  3.4342713035
## 10448          Pelagic    4            chub mackerel  3.4291661002
## 10449          Pelagic    5          pacific sardine  3.4009568167
## 10450    Benthopelagic   15            white croaker  3.2016016568
## 10451          Pelagic    5             market squid  3.3975580391
## 10452          Pelagic   21            chub mackerel  3.1787566931
## 10453    Benthopelagic   11           brown rockfish  3.2318105726
## 10454    Benthopelagic   20        yellowfin croaker  3.3957807292
## 10455    Benthopelagic   22         barred sand bass  3.3048604678
## 10456          Pelagic    5          pacific sardine  3.4725370055
## 10457          Benthic   13         hornyhead turbot  3.3830014636
## 10458         Midwater   12                kelp bass  3.2903595626
## 10459    Benthopelagic   22            white croaker  3.2006423271
## 10460          Pelagic    6             market squid  3.3563845270
## 10461          Pelagic    5          pacific sardine  3.1695666703
## 10462    Benthopelagic    4       california corbina  3.2154318275
## 10463    Benthopelagic   21        spotted sand bass  3.1469081870
## 10464    Benthopelagic    6    greenspotted rockfish  3.1338698138
## 10465          Pelagic    5             market squid  3.6103461555
## 10466    Benthopelagic    4            white croaker  3.4100538970
## 10467    Benthopelagic    1       california corbina  3.2425473019
## 10468         Midwater    4         shiner surfperch  3.1064809342
## 10469    Benthopelagic   23       vermilion rockfish  3.3042991246
## 10470    Benthopelagic   20       california corbina  3.2657253871
## 10471          Pelagic    5            chub mackerel  3.4621074561
## 10472    Benthopelagic   21         barred sand bass  3.5045842972
## 10473          Benthic    5  california scorpionfish  3.4931583899
## 10474          Pelagic    5             market squid  3.2571060973
## 10475    Benthopelagic   21        yellowfin croaker  3.2896341058
## 10476          Benthic    5          longfin sanddab  3.5210170110
## 10477    Benthopelagic    5       vermilion rockfish  3.3876327857
## 10478         Midwater   13     chilipepper rockfish  3.1551412556
## 10479    Benthopelagic    4        yellowfin croaker  3.1911928058
## 10480    Benthopelagic   21        yellowfin croaker  3.4339305343
## 10481    Benthopelagic    1        yellowfin croaker  3.3519471883
## 10482    Benthopelagic    3                  opaleye  3.1096920515
## 10483    Benthopelagic   11        yellowfin croaker  3.3299459679
## 10484          Benthic   15         hornyhead turbot  3.2471914079
## 10485         Midwater    3         shiner surfperch  3.3687881273
## 10486    Benthopelagic    3        spotted sand bass  3.3093971100
## 10487          Benthic   13         hornyhead turbot  3.3374870280
## 10488    Benthopelagic    7       vermilion rockfish  3.2526964669
## 10489         Midwater    3                kelp bass  3.3312537721
## 10490    Benthopelagic   22       vermilion rockfish  3.4654655536
## 10491    Benthopelagic   11          gopher rockfish  3.3492710689
## 10492    Benthopelagic    4         barred sand bass  3.4891746865
## 10493    Benthopelagic    5         barred sand bass  3.3429087525
## 10494         Midwater   10                kelp bass  3.2804509571
## 10495          Benthic    4    california lizardfish  3.3253830851
## 10496    Benthopelagic    8            white croaker  3.4685223117
## 10497         Midwater   11         shiner surfperch  3.0968089211
## 10498    Benthopelagic    1     california sheephead  3.2924383927
## 10499    Benthopelagic    5            white croaker  3.3389706739
## 10500    Benthopelagic   11            white croaker  3.2340309258
## 10501          Benthic    1           diamond turbot  3.3678014423
## 10502    Benthopelagic    6       vermilion rockfish  3.4430220586
## 10503          Pelagic   21            chub mackerel  3.4864078876
## 10504         Midwater    4           striped mullet  3.2077793218
## 10505          Benthic   19  california scorpionfish  3.2003328111
## 10506         Midwater    1         shiner surfperch  3.5778278108
## 10507    Benthopelagic   11         barred surfperch  3.0675264127
## 10508    Benthopelagic   11        spotted sand bass  3.3530460383
## 10509          Pelagic    5            chub mackerel  3.4491408694
## 10510          Pelagic    5            chub mackerel  3.5345481291
## 10511    Benthopelagic   11            white croaker  3.2809766843
## 10512    Benthopelagic    5           brown rockfish  3.3165297073
## 10513         Midwater    4           striped mullet  3.2545580884
## 10514         Midwater   21                kelp bass  3.3261039216
## 10515    Benthopelagic   21        yellowfin croaker  3.4403762827
## 10516    Benthopelagic    1         barred surfperch  3.2341358774
## 10517    Benthopelagic   14          starry rockfish  3.0125353289
## 10518    Benthopelagic   11 brown smooth-hound shark  3.3963026940
## 10519    Benthopelagic   11           brown rockfish  3.4554688425
## 10520         Midwater    1        walleye surfperch  3.2799197469
## 10521    Benthopelagic   20              black perch  3.2317710454
## 10522          Benthic   10  california scorpionfish  3.3690980163
## 10523         Midwater   22                kelp bass  3.5371172241
## 10524    Benthopelagic    1        rainbow surfperch  3.3748221884
## 10525         Midwater   24      squarespot rockfish  3.6175409676
## 10526    Benthopelagic   21        yellowfin croaker  3.4910672241
## 10527    Benthopelagic   11       vermilion rockfish  3.2442086492
## 10528    Benthopelagic   11         barred sand bass  3.3892428283
## 10529          Benthic   22  california scorpionfish  2.9296813949
## 10530    Benthopelagic    1                  opaleye  3.3773669344
## 10531    Benthopelagic   21          white surfperch  3.2246674087
## 10532         Midwater    4           striped mullet  3.3958253549
## 10533          Pelagic   21            chub mackerel  3.3561222604
## 10534    Benthopelagic   22       vermilion rockfish  3.5625146805
## 10535    Benthopelagic   13            white croaker  3.3907391195
## 10536          Benthic    8  california scorpionfish  3.4886044591
## 10537    Benthopelagic    5       vermilion rockfish  3.1772357720
## 10538    Benthopelagic    3        rainbow surfperch  3.2691722240
## 10539    Benthopelagic    9   greenblotched rockfish  3.1500733559
## 10540          Pelagic   21            chub mackerel  3.4148770961
## 10541    Benthopelagic    5            white croaker  3.3423415281
## 10542          Pelagic   21            chub mackerel  3.3226595232
## 10543          Pelagic    5          pacific sardine  3.3773297855
## 10544         Midwater   12                kelp bass  3.3387918535
## 10545    Benthopelagic   11         barred sand bass  3.3444052506
## 10546          Benthic    8         hornyhead turbot  3.3094199475
## 10547          Benthic    4           spotted turbot  3.1982736984
## 10548          Benthic    5  california scorpionfish  3.4084625475
## 10549         Midwater   21                kelp bass  3.0999488117
## 10550    Benthopelagic    1       california corbina  3.2834086943
## 10551          Pelagic   21            chub mackerel  3.4134801016
## 10552          Benthic    3           diamond turbot  3.2530807662
## 10553          Pelagic   11            chub mackerel  3.4664363914
## 10554    Benthopelagic    9   greenblotched rockfish  3.3294321564
## 10555    Benthopelagic    5            white croaker  3.0843805091
## 10556    Benthopelagic    4        yellowfin croaker  3.1224341731
## 10557         Midwater    7      squarespot rockfish  3.2566701825
## 10558    Benthopelagic   15        speckled rockfish  3.3742752257
## 10559    Benthopelagic   11          white surfperch  2.9505392990
## 10560    Benthopelagic   13       vermilion rockfish  3.1983756079
## 10561    Benthopelagic    2        spotted sand bass  3.2806717301
## 10562    Benthopelagic   15       vermilion rockfish  3.4445993933
## 10563    Benthopelagic   13            white croaker  3.3145067943
## 10564    Benthopelagic    1              black perch  3.0694772255
## 10565    Benthopelagic    8         barred sand bass  3.1886241548
## 10566          Pelagic   11            chub mackerel  3.4080668613
## 10567          Pelagic    6             market squid  3.2165690256
## 10568    Benthopelagic   10            white croaker  3.2911119083
## 10569          Benthic    4           spotted turbot  3.3562653976
## 10570         Midwater   11                kelp bass  3.2239819899
## 10571    Benthopelagic    1              black perch  3.3368587928
## 10572    Benthopelagic   21            white croaker  3.4194523286
## 10573    Benthopelagic   20       california corbina  3.3377651403
## 10574    Benthopelagic   11              black perch  3.1566456283
## 10575          Pelagic   21            chub mackerel  3.4363736628
## 10576    Benthopelagic    1        yellowfin croaker  3.4193082862
## 10577    Benthopelagic   10           brown rockfish  3.1518294513
## 10578          Pelagic   11            chub mackerel  3.2793780576
## 10579    Benthopelagic   11          gopher rockfish  3.3126260296
## 10580    Benthopelagic   21        spotted sand bass  3.3104252477
## 10581    Benthopelagic   23       vermilion rockfish  3.0264999608
## 10582          Pelagic    5            chub mackerel  3.2913343024
## 10583         Midwater    3         shiner surfperch  3.1944241906
## 10584         Midwater   11         shiner surfperch  3.4422699918
## 10585    Benthopelagic   20         barred surfperch  3.2565710185
## 10586    Benthopelagic    3         barred surfperch  3.3151169493
## 10587    Benthopelagic   21        yellowfin croaker  3.3333810345
## 10588    Benthopelagic    5       california corbina  3.2720136339
## 10589    Benthopelagic    5            white croaker  3.3696232104
## 10590          Pelagic    5             market squid  3.3695559913
## 10591    Benthopelagic   17            white croaker  3.2643427633
## 10592    Benthopelagic   20         barred sand bass  3.3115941676
## 10593    Benthopelagic    3              black perch  3.3323307507
## 10594    Benthopelagic   11            white croaker  3.3137918948
## 10595    Benthopelagic    5                  opaleye  3.3111333162
## 10596    Benthopelagic    5            white croaker  3.2095833190
## 10597         Midwater   21                kelp bass  3.2678636716
## 10598    Benthopelagic   23       vermilion rockfish  3.4291686406
## 10599    Benthopelagic    4       california corbina  3.2210324872
## 10600    Benthopelagic   11              black perch  3.3402516224
## 10601    Benthopelagic    5                  opaleye  3.4721305822
## 10602    Benthopelagic    5            white croaker  3.2147049872
## 10603    Benthopelagic   11        spotted sand bass  3.1910959147
## 10604          Pelagic   21            chub mackerel  3.3598252317
## 10605          Pelagic    5         northern anchovy  3.1899589351
## 10606    Benthopelagic    3        spotted sand bass  3.3104757030
## 10607    Benthopelagic   20           pile surfperch  3.5289321897
## 10608          Pelagic    5         northern anchovy  3.5605117197
## 10609          Benthic   11         hornyhead turbot  3.4421194870
## 10610    Benthopelagic   11            black croaker  3.1881797538
## 10611    Benthopelagic    1          white surfperch  3.3178924211
## 10612    Benthopelagic   11         barred sand bass  3.4296058546
## 10613    Benthopelagic   14            white croaker  3.2915893816
## 10614    Benthopelagic    3       california corbina  3.6510097976
## 10615          Pelagic    5            chub mackerel  3.4945205379
## 10616    Benthopelagic   12            white croaker  3.5756556283
## 10617    Benthopelagic    1        yellowfin croaker  3.3728636521
## 10618    Benthopelagic   22          starry rockfish  3.2304247248
## 10619    Benthopelagic    5                  opaleye  3.2590600853
## 10620          Pelagic   11            chub mackerel  3.3128614581
## 10621    Benthopelagic   22            white croaker  3.2626412567
## 10622    Benthopelagic   17        speckled rockfish  3.2880428889
## 10623    Benthopelagic   11         barred sand bass  3.3960598025
## 10624    Benthopelagic   21        spotted sand bass  3.4195513715
## 10625    Benthopelagic    1        spotted sand bass  3.2022282388
## 10626    Benthopelagic    4           pile surfperch  3.4530081276
## 10627    Benthopelagic    5                  opaleye  3.3047685866
## 10628         Midwater    2                kelp bass  3.3376973707
## 10629    Benthopelagic   10              black perch  3.6276593979
## 10630          Pelagic    5          pacific sardine  3.3233770304
## 10631         Midwater    1         shiner surfperch  3.2954478879
## 10632    Benthopelagic    1         barred surfperch  3.2533900162
## 10633    Benthopelagic    2            white croaker  3.5124608487
## 10634    Benthopelagic    1            white croaker  3.3468626769
## 10635    Benthopelagic    5         barred sand bass  3.5478170826
## 10636    Benthopelagic   24       vermilion rockfish  3.1826986408
## 10637         Midwater    3          canary rockfish  3.2257984427
## 10638    Benthopelagic   18            white croaker  3.4768095979
## 10639    Benthopelagic    7           brown rockfish  3.2565813946
## 10640         Midwater    5                queenfish  3.2179765398
## 10641          Benthic    1           diamond turbot  3.5395483534
## 10642    Benthopelagic    1            white croaker  3.2850392821
## 10643          Pelagic    5             market squid  3.2859064607
## 10644          Pelagic    5             market squid  3.2096493329
## 10645    Benthopelagic    3        spotted sand bass  3.3006230151
## 10646          Pelagic    5             market squid  3.4132003283
## 10647         Midwater   11                kelp bass  3.2504480600
## 10648          Benthic    5       california halibut  3.2725357770
## 10649          Benthic   19         hornyhead turbot  3.3086107106
## 10650          Pelagic    5         northern anchovy  3.3721010040
## 10651         Midwater   21                kelp bass  3.4092523441
## 10652          Pelagic   21            chub mackerel  3.4433752460
## 10653         Midwater    1                queenfish  3.3769750440
## 10654    Benthopelagic    3        spotted sand bass  3.3568766922
## 10655    Benthopelagic   14    greenspotted rockfish  3.3631149081
## 10656    Benthopelagic    5            white croaker  3.5165318025
## 10657    Benthopelagic   10   greenblotched rockfish  3.4601233855
## 10658    Benthopelagic    5                  opaleye  3.1010385839
## 10659    Benthopelagic    1            white croaker  3.2053004497
## 10660          Pelagic    5          pacific sardine  3.1462263533
## 10661         Midwater    1            blue rockfish  3.2065142036
## 10662         Midwater   21                kelp bass  3.2226354090
## 10663    Benthopelagic    3         barred sand bass  3.2753221478
## 10664          Pelagic   21            chub mackerel  3.2105727154
## 10665    Benthopelagic    4                  opaleye  3.3981612400
## 10666    Benthopelagic    1     california sheephead  3.3973930415
## 10667    Benthopelagic   11              black perch  3.5577916784
## 10668    Benthopelagic    1        yellowfin croaker  3.3633233957
## 10669    Benthopelagic   18              black perch  3.3460363421
## 10670    Benthopelagic    1        yellowfin croaker  3.2307093018
## 10671    Benthopelagic   21        spotted sand bass  3.3841156056
## 10672    Benthopelagic    5                  opaleye  3.1185156733
## 10673    Benthopelagic   12       vermilion rockfish  3.4088466551
## 10674    Benthopelagic   18       vermilion rockfish  3.1621894195
## 10675    Benthopelagic    3              black perch  3.5503154742
## 10676         Midwater    3                kelp bass  3.1667292753
## 10677    Benthopelagic   12            white croaker  3.3885732493
## 10678         Midwater   21                kelp bass  3.4097992569
## 10679         Midwater    4         shiner surfperch  3.3857867604
## 10680    Benthopelagic   11          gopher rockfish  3.4205066585
## 10681    Benthopelagic    3       vermilion rockfish  3.5790610004
## 10682    Benthopelagic   14         barred sand bass  3.4183659344
## 10683         Midwater   21                kelp bass  3.0572304660
## 10684         Midwater    1                queenfish  3.1314301114
## 10685    Benthopelagic   22          starry rockfish  3.3122672134
## 10686    Benthopelagic   20            white croaker  3.4038703077
## 10687    Benthopelagic    4       california corbina  3.3255895634
## 10688    Benthopelagic    8              black perch  3.2870660329
## 10689          Benthic   20         hornyhead turbot  3.5356479469
## 10690         Midwater   21                kelp bass  3.3102374223
## 10691    Benthopelagic    4              black perch  3.3182005900
## 10692    Benthopelagic    4            white croaker  3.5709552714
## 10693    Benthopelagic    4              black perch  3.5163587136
## 10694    Benthopelagic   21        yellowfin croaker  3.4501723545
## 10695    Benthopelagic    1                  opaleye  3.3497154823
## 10696          Benthic   21         hornyhead turbot  3.6887939991
## 10697    Benthopelagic    4         barred surfperch  3.3630128283
## 10698         Midwater   11                kelp bass  3.1570429553
## 10699          Pelagic    5             market squid  3.1714837108
## 10700          Benthic    1           diamond turbot  3.2807725155
## 10701    Benthopelagic    1            white croaker  3.2098987939
## 10702    Benthopelagic    4              black perch  3.5022936949
## 10703          Pelagic    6             market squid  3.2596474121
## 10704    Benthopelagic   11            white croaker  3.3234473647
## 10705    Benthopelagic    9            white croaker  3.5456806767
## 10706          Pelagic   21         northern anchovy  3.3292808116
## 10707    Benthopelagic   11           brown rockfish  3.1815000422
## 10708    Benthopelagic   11          ocean whitefish  3.3336601006
## 10709          Benthic   17         hornyhead turbot  3.5113508608
## 10710          Benthic   11  california scorpionfish  3.2819748522
## 10711          Benthic   20           diamond turbot  3.4356052632
## 10712    Benthopelagic    4        spotted sand bass  3.4740342627
## 10713         Midwater   11           olive rockfish  3.3136397376
## 10714    Benthopelagic    1              black perch  3.5532934251
## 10715    Benthopelagic    5            white croaker  3.4065077088
## 10716          Pelagic    5         northern anchovy  3.1463214883
## 10717    Benthopelagic   11        yellowfin croaker  3.3290053841
## 10718         Midwater   16                kelp bass  3.5595988726
## 10719    Benthopelagic   11            white croaker  3.2380103356
## 10720    Benthopelagic   11              black perch  3.3958090470
## 10721         Midwater   18                kelp bass  3.5173469261
## 10722    Benthopelagic    3              black perch  3.3345149543
## 10723         Midwater    1                kelp bass  3.5193750232
## 10724    Benthopelagic   15            white croaker  3.1035120679
## 10725    Benthopelagic   22         barred sand bass  2.9573499821
## 10726    Benthopelagic    1            white croaker  3.2787156735
## 10727    Benthopelagic   21        yellowfin croaker  3.2891438520
## 10728          Benthic    5  california scorpionfish  3.4034082111
## 10729          Pelagic   21            chub mackerel  3.3672712869
## 10730          Benthic    1           spotted turbot  3.2503696273
## 10731    Benthopelagic   11          gopher rockfish  3.3549230070
## 10732    Benthopelagic    1            white croaker  3.3709052233
## 10733    Benthopelagic    5       california corbina  3.4155475217
## 10734    Benthopelagic    1              black perch  3.2879913295
## 10735    Benthopelagic   11          spotfin croaker  3.2547381369
## 10736    Benthopelagic    8          copper rockfish  3.2709554072
## 10737    Benthopelagic    4        yellowfin croaker  3.1737350962
## 10738    Benthopelagic   12            white croaker  3.2221870926
## 10739         Midwater    8      yellowtail rockfish  3.2621233971
## 10740         Midwater    3                kelp bass  3.4319214832
## 10741    Benthopelagic    5          spotfin croaker  3.3499672454
## 10742          Pelagic    5          pacific sardine  3.1209267982
## 10743          Benthic    5  california scorpionfish  3.3476825799
## 10744    Benthopelagic    3         barred surfperch  3.3660841466
## 10745          Pelagic    6          pacific sardine  3.1218556922
## 10746    Benthopelagic   11       vermilion rockfish  3.1623168194
## 10747          Pelagic    5         northern anchovy  3.4482655770
## 10748          Pelagic   11            chub mackerel  3.4007290374
## 10749          Pelagic   21            chub mackerel  3.2040905816
## 10750         Midwater    5                top smelt  3.2480132446
## 10751         Midwater    2                queenfish  3.2711285410
## 10752    Benthopelagic    4            white croaker  3.5616936919
## 10753    Benthopelagic   18              black perch  3.5072591187
## 10754         Midwater   21                kelp bass  3.2334518146
## 10755    Benthopelagic    4          copper rockfish  3.2515430204
## 10756    Benthopelagic   20              black perch  3.4280162153
## 10757          Benthic    1         speckled sanddab  3.2781489011
## 10758    Benthopelagic   18            white croaker  3.5096488681
## 10759    Benthopelagic   11         barred sand bass  3.2461544503
## 10760    Benthopelagic   11          spotfin croaker  3.3232861893
## 10761          Pelagic   11            chub mackerel  3.2809762253
## 10762          Pelagic    5            chub mackerel  3.4576154032
## 10763          Benthic   18         hornyhead turbot  3.4486447651
## 10764          Benthic   12  california scorpionfish  3.2862731424
## 10765          Benthic    1             fantail sole  3.3078763544
## 10766         Midwater   21                kelp bass  3.3626453336
## 10767    Benthopelagic    3          white surfperch  3.2237079826
## 10768    Benthopelagic   13       vermilion rockfish  3.3835432245
## 10769    Benthopelagic   18            white croaker  3.3270940000
## 10770         Midwater    1         shiner surfperch  3.2638337858
## 10771    Benthopelagic   14            white croaker  3.5913303337
## 10772         Midwater   11                kelp bass  3.5786068487
## 10773          Benthic    5         speckled sanddab  3.2533237216
## 10774          Benthic   17  california scorpionfish  3.5538963685
## 10775    Benthopelagic   21       california corbina  3.2768845856
## 10776          Benthic   11  california scorpionfish  3.1282708640
## 10777          Benthic   17         hornyhead turbot  3.2195479351
## 10778    Benthopelagic   12              black perch  3.3951176889
## 10779    Benthopelagic    1            white croaker  3.0496313277
## 10780    Benthopelagic    5       california corbina  3.3037541060
## 10781    Benthopelagic    4              black perch  3.3981047383
## 10782    Benthopelagic    5            white croaker  3.3717730897
## 10783    Benthopelagic    1            white croaker  3.3979466274
## 10784          Benthic   14         hornyhead turbot  3.4254154814
## 10785          Benthic    4    shovelnose guitarfish  3.1728073388
## 10786         Midwater    1        walleye surfperch  3.3194697545
## 10787         Midwater   18                kelp bass  3.2800793100
## 10788    Benthopelagic    5            white croaker  3.3159554923
## 10789    Benthopelagic    5         barred sand bass  3.2812824980
## 10790         Midwater    2                kelp bass  3.3228765995
## 10791    Benthopelagic   21         barred sand bass  3.1333488269
## 10792    Benthopelagic   12       vermilion rockfish  3.4698961923
## 10793    Benthopelagic    2       quillback rockfish  3.2948092182
## 10794    Benthopelagic   21            white croaker  3.3573481773
## 10795    Benthopelagic   16       vermilion rockfish  3.3613482429
## 10796    Benthopelagic    3              black perch  3.5090427890
## 10797          Benthic    8  california scorpionfish  3.3655794974
## 10798          Pelagic    5          pacific sardine  3.4301124918
## 10799          Benthic    5  california scorpionfish  3.4013409581
## 10800    Benthopelagic    8          copper rockfish  3.4012279594
## 10801          Pelagic    5          pacific sardine  4.2806184917
## 10802    Benthopelagic    2            white croaker  3.7880637413
## 10803    Benthopelagic    1            white croaker  4.0986821695
## 10804    Benthopelagic   21            leopard shark  4.1814939647
## 10805    Benthopelagic   14              black perch  4.1452520495
## 10806    Benthopelagic   16       vermilion rockfish  3.7603263398
## 10807    Benthopelagic   10       vermilion rockfish  4.1704371130
## 10808         Midwater   21                kelp bass  4.0578595015
## 10809    Benthopelagic    1            rosy rockfish  4.1161163784
## 10810         Midwater    3         shiner surfperch  4.0588035647
## 10811    Benthopelagic   11            white croaker  3.5844820672
## 10812    Benthopelagic    1         barred surfperch  4.3009900660
## 10813         Midwater    1         shiner surfperch  3.9606842973
## 10814          Pelagic   21            chub mackerel  3.7699869664
## 10815    Benthopelagic   16       vermilion rockfish  3.9723437004
## 10816    Benthopelagic    7        speckled rockfish  4.1288870470
## 10817         Midwater    4         shiner surfperch  4.1567155843
## 10818    Benthopelagic   11       vermilion rockfish  4.4418280858
## 10819          Pelagic    5            chub mackerel  4.1137583922
## 10820         Midwater   14                kelp bass  3.9686216254
## 10821    Benthopelagic    3              black perch  4.4339142992
## 10822    Benthopelagic    5            black croaker  3.8049796139
## 10823         Midwater    5                top smelt  3.9586998494
## 10824         Midwater   11                top smelt  3.9290701899
## 10825          Benthic   10         hornyhead turbot  4.2061683300
## 10826          Pelagic    5             market squid  4.1261267221
## 10827    Benthopelagic   12              black perch  4.1328229569
## 10828    Benthopelagic    1       california corbina  3.8807852419
## 10829    Benthopelagic    3         barred surfperch  4.1537045904
## 10830    Benthopelagic   19       vermilion rockfish  4.2222135456
## 10831    Benthopelagic   15        speckled rockfish  3.7053085280
## 10832          Pelagic    5          pacific sardine  3.9656468398
## 10833    Benthopelagic    4         barred surfperch  4.5859416270
## 10834    Benthopelagic   11              black perch  3.8692772000
## 10835         Midwater   11                kelp bass  3.9001635438
## 10836    Benthopelagic   11         barred surfperch  4.1865784939
## 10837          Pelagic    5         northern anchovy  4.2048355972
## 10838          Pelagic    5          pacific sardine  4.1903512627
## 10839    Benthopelagic   11            white croaker  4.5265159495
## 10840    Benthopelagic   19            white croaker  4.1845506160
## 10841    Benthopelagic    3              black perch  3.9535985986
## 10842    Benthopelagic   19       vermilion rockfish  3.9477803352
## 10843    Benthopelagic   12           brown rockfish  4.0135339744
## 10844    Benthopelagic    6          copper rockfish  3.9324255939
## 10845          Pelagic    5             market squid  4.2048897781
## 10846    Benthopelagic   22              black perch  3.9014873963
## 10847          Benthic   20       california halibut  4.6386979874
## 10848    Benthopelagic    2        spotted sand bass  4.2039002843
## 10849          Benthic    1           diamond turbot  3.9543282626
## 10850          Benthic   23         hornyhead turbot  3.7157976791
## 10851    Benthopelagic    5         barred sand bass  3.6755388526
## 10852          Benthic    4    california lizardfish  3.9893906271
## 10853    Benthopelagic   11 brown smooth-hound shark  3.7206385668
## 10854    Benthopelagic   21            white croaker  3.7458026704
## 10855    Benthopelagic    4            flag rockfish  4.0716106277
## 10856          Benthic   12         hornyhead turbot  3.6947831005
## 10857          Benthic    4    shovelnose guitarfish  4.0130261598
## 10858    Benthopelagic   14            white croaker  4.0895694030
## 10859    Benthopelagic    5     california sheephead  4.0889637006
## 10860          Pelagic    5         northern anchovy  4.1391922487
## 10861    Benthopelagic   20       vermilion rockfish  4.2004195199
## 10862    Benthopelagic    2         barred surfperch  3.9648715953
## 10863         Midwater   17      squarespot rockfish  3.9276235052
## 10864    Benthopelagic   18       vermilion rockfish  4.3906619714
## 10865    Benthopelagic   11            white croaker  3.9408406078
## 10866    Benthopelagic    4         barred sand bass  4.2494783151
## 10867         Midwater    4                top smelt  3.9346459685
## 10868          Benthic   17         hornyhead turbot  3.9532035055
## 10869    Benthopelagic   11            white croaker  3.8550407043
## 10870    Benthopelagic   11         barred surfperch  4.3126280166
## 10871          Pelagic    5             market squid  4.0451720814
## 10872          Benthic   19  california scorpionfish  4.1952378328
## 10873          Pelagic    5             market squid  3.6681902235
## 10874    Benthopelagic   10         barred sand bass  3.8593392073
## 10875          Pelagic   11            chub mackerel  3.9072333540
## 10876    Benthopelagic   11              black perch  3.9386112724
## 10877    Benthopelagic   22              black perch  3.9587491561
## 10878    Benthopelagic   12            white croaker  4.0468118390
## 10879          Benthic    5    shovelnose guitarfish  4.1971447132
## 10880    Benthopelagic   20       california corbina  4.1742125916
## 10881    Benthopelagic    5                  opaleye  4.2254897889
## 10882    Benthopelagic   16       vermilion rockfish  4.4188130046
## 10883    Benthopelagic    1        spotted sand bass  3.9190333010
## 10884    Benthopelagic    3        rainbow surfperch  4.3268551101
## 10885    Benthopelagic   17            white croaker  3.9877003631
## 10886          Benthic   22  california scorpionfish  4.0459224916
## 10887         Midwater   21                kelp bass  3.9767979255
## 10888          Pelagic    5             market squid  4.3040633799
## 10889    Benthopelagic   21            white croaker  3.9771898883
## 10890    Benthopelagic    1        rainbow surfperch  4.3877706008
## 10891    Benthopelagic    4       california corbina  4.0445489438
## 10892          Pelagic   21            chub mackerel  3.8329286946
## 10893    Benthopelagic   20            white croaker  3.6557946415
## 10894          Pelagic    6          pacific sardine  4.2473575141
## 10895         Midwater    4           striped mullet  4.0721034215
## 10896          Pelagic   21            chub mackerel  4.0843568655
## 10897          Benthic    1         speckled sanddab  4.3410219020
## 10898    Benthopelagic   11            white croaker  4.3339273289
## 10899          Benthic    8         hornyhead turbot  4.2197452144
## 10900         Midwater    4         shiner surfperch  4.2246623745
## 10901    Benthopelagic   10       vermilion rockfish  4.0885068200
## 10902    Benthopelagic    1        rainbow surfperch  3.9249047593
## 10903         Midwater   11         shiner surfperch  3.9580508172
## 10904    Benthopelagic    5            leopard shark  4.0219374061
## 10905          Pelagic   21            chub mackerel  4.0614698794
## 10906    Benthopelagic   11              black perch  3.8407406325
## 10907         Midwater    4         shiner surfperch  3.9641822072
## 10908    Benthopelagic   14              black perch  3.8455624623
## 10909         Midwater   11                kelp bass  3.5792174533
## 10910    Benthopelagic   18            white croaker  4.1920738159
## 10911         Midwater    4                top smelt  3.8155482596
## 10912    Benthopelagic    5   gray smoothhound shark  4.0856346147
## 10913    Benthopelagic   23            white croaker  4.1450677744
## 10914          Pelagic   21           slough anchovy  4.2765630511
## 10915         Midwater    1                queenfish  3.9601927062
## 10916    Benthopelagic   21            white croaker  4.3932231856
## 10917         Midwater    1                kelp bass  4.3192185659
## 10918    Benthopelagic   24       vermilion rockfish  3.8962868348
## 10919          Pelagic   21            chub mackerel  4.0535790669
## 10920          Pelagic    5          pacific sardine  4.2517319182
## 10921    Benthopelagic    4       california corbina  4.1117682915
## 10922    Benthopelagic    3       california corbina  4.2154060183
## 10923    Benthopelagic   16              black perch  3.8546183706
## 10924          Pelagic    5          pacific sardine  4.1300622759
## 10925          Pelagic   21            chub mackerel  4.1478418137
## 10926    Benthopelagic   21         barred sand bass  3.7762654067
## 10927          Pelagic    6          pacific sardine  4.1217096176
## 10928    Benthopelagic    5        yellowfin croaker  3.9782797482
## 10929          Benthic    1  california scorpionfish  4.0354287584
## 10930         Midwater    4         shiner surfperch  4.2205223455
## 10931          Benthic    5  california scorpionfish  4.0145862963
## 10932    Benthopelagic    5       california corbina  4.2032352362
## 10933          Benthic   19         hornyhead turbot  4.2478707733
## 10934    Benthopelagic    2              black perch  3.8655715580
## 10935    Benthopelagic   21        spotted sand bass  3.9533338993
## 10936    Benthopelagic    7       vermilion rockfish  4.2554849667
## 10937    Benthopelagic    3              black perch  3.7801258350
## 10938          Pelagic   11            chub mackerel  4.3015784281
## 10939    Benthopelagic   22            white croaker  4.0824589875
## 10940         Midwater    2         shiner surfperch  3.9276985910
## 10941    Benthopelagic   11   gray smoothhound shark  3.6484191478
## 10942    Benthopelagic   19            white croaker  3.9877874002
## 10943    Benthopelagic   11            white croaker  3.8769983978
## 10944    Benthopelagic    5            white croaker  4.3156085182
## 10945    Benthopelagic   21          white surfperch  4.0045425970
## 10946         Midwater    5                 halfmoon  4.1096866601
## 10947         Midwater   10                kelp bass  4.4849344814
## 10948         Midwater    1                kelp bass  4.0586668969
## 10949         Midwater    3         shiner surfperch  4.3566178273
## 10950    Benthopelagic   10            white croaker  4.5503473454
## 10951         Midwater    5                queenfish  3.9578769242
## 10952    Benthopelagic    1            white croaker  3.9906371788
## 10953    Benthopelagic    4              black perch  3.9695779687
## 10954    Benthopelagic    1         barred sand bass  4.1214577839
## 10955         Midwater    5                kelp bass  4.2367683478
## 10956          Pelagic    5          pacific sardine  4.0757959658
## 10957    Benthopelagic   21         barred sand bass  4.1268559635
## 10958    Benthopelagic    4           pile surfperch  4.0200117219
## 10959         Midwater   14                kelp bass  4.6120745525
## 10960    Benthopelagic   16          copper rockfish  4.0298448359
## 10961    Benthopelagic    3        spotted sand bass  4.6974339536
## 10962         Midwater   16                kelp bass  4.1093512890
## 10963         Midwater    4                kelp bass  4.0663342077
## 10964    Benthopelagic   14              black perch  4.1949435347
## 10965          Pelagic    6          pacific sardine  4.0402050345
## 10966    Benthopelagic   11              black perch  3.8131411833
## 10967    Benthopelagic    4           pile surfperch  4.0779396098
## 10968    Benthopelagic    5        yellowfin croaker  4.0502066882
## 10969          Benthic   14         hornyhead turbot  4.1168681952
## 10970          Pelagic    5          pacific sardine  4.3885068114
## 10971          Pelagic   21            chub mackerel  3.7415143760
## 10972         Midwater   21                kelp bass  3.6685712129
## 10973    Benthopelagic   10              black perch  3.8884362540
## 10974         Midwater   21                kelp bass  4.2658199244
## 10975          Pelagic    5          pacific sardine  3.7981483670
## 10976         Midwater    3         shiner surfperch  3.6291841977
## 10977    Benthopelagic    8         barred sand bass  3.7892368819
## 10978    Benthopelagic   11         barred sand bass  4.0845773002
## 10979         Midwater    1        walleye surfperch  3.8199767811
## 10980          Benthic   20  california scorpionfish  4.1395873435
## 10981          Benthic   23         hornyhead turbot  4.6668201801
## 10982          Benthic   19  california scorpionfish  4.0428646194
## 10983    Benthopelagic   12           brown rockfish  3.8660225167
## 10984    Benthopelagic   11          white surfperch  4.1183789111
## 10985    Benthopelagic    5       california corbina  4.0649052651
## 10986    Benthopelagic    4              black perch  3.7429432285
## 10987    Benthopelagic    5            white croaker  4.0689003450
## 10988    Benthopelagic    3        spotted sand bass  4.0048857803
## 10989    Benthopelagic   20            white croaker  3.7651990453
## 10990         Midwater    1         shiner surfperch  4.3213553549
## 10991          Benthic   20         hornyhead turbot  3.7440807351
## 10992          Benthic    1           spotted turbot  4.0484420326
## 10993          Benthic   23         hornyhead turbot  4.2424717842
## 10994    Benthopelagic   14       vermilion rockfish  3.9615898340
## 10995          Pelagic    5             market squid  4.2406582174
## 10996    Benthopelagic    8            white croaker  4.3458713239
## 10997          Pelagic    5             market squid  4.2067716642
## 10998    Benthopelagic    5       vermilion rockfish  3.7249404277
## 10999    Benthopelagic   11            white croaker  4.4037508641
## 11000          Benthic    3           diamond turbot  3.9982489755
## 11001          Pelagic   21         northern anchovy  3.6454733829
## 11002          Benthic    8         hornyhead turbot  4.0751002989
## 11003    Benthopelagic    4         barred sand bass  4.1967332740
## 11004         Midwater    3                jacksmelt  4.3041472976
## 11005         Midwater   21                kelp bass  4.1344563752
## 11006    Benthopelagic   11        yellowfin croaker  3.9489555831
## 11007         Midwater    8                kelp bass  4.0820484145
## 11008    Benthopelagic    9       vermilion rockfish  4.1191142861
## 11009         Midwater   21                kelp bass  4.5401859785
## 11010    Benthopelagic    1         barred surfperch  4.2492120175
## 11011         Midwater   11                top smelt  4.0926049047
## 11012    Benthopelagic    5            white croaker  3.8645913144
## 11013    Benthopelagic    4         barred surfperch  4.0614076666
## 11014    Benthopelagic   21        yellowfin croaker  3.9308589208
## 11015    Benthopelagic    5         barred sand bass  3.5898166989
## 11016          Pelagic   21            chub mackerel  3.9889354600
## 11017         Midwater   21                kelp bass  4.1470501644
## 11018    Benthopelagic    8            white croaker  3.8553764053
## 11019          Pelagic   21            chub mackerel  3.9206433971
## 11020    Benthopelagic   16        speckled rockfish  4.1126496350
## 11021    Benthopelagic    5         barred sand bass  4.0238039355
## 11022          Pelagic   21           slough anchovy  4.1658598083
## 11023    Benthopelagic   11            rosy rockfish  3.5062836891
## 11024          Benthic    4           diamond turbot  3.8851151470
## 11025          Benthic   16  california scorpionfish  4.1309234007
## 11026    Benthopelagic   20       vermilion rockfish  3.8957010217
## 11027         Midwater   20                kelp bass  3.9904848115
## 11028         Midwater   21                kelp bass  4.2049401868
## 11029          Benthic   13         hornyhead turbot  4.0850673823
## 11030          Pelagic   21            chub mackerel  4.2419977650
## 11031    Benthopelagic   14       vermilion rockfish  4.1250970371
## 11032         Midwater    5                kelp bass  4.1848688493
## 11033          Benthic   10  california scorpionfish  3.9263823355
## 11034    Benthopelagic    5         barred sand bass  3.6597060988
## 11035         Midwater    4                kelp bass  4.0196785171
## 11036    Benthopelagic    1        yellowfin croaker  4.3108082073
## 11037    Benthopelagic   10           brown rockfish  4.4461606203
## 11038          Benthic    5          longfin sanddab  3.6479034203
## 11039    Benthopelagic    3        yellowfin croaker  4.2450552561
## 11040    Benthopelagic   11            white croaker  4.3748787197
## 11041         Midwater   20                kelp bass  3.7286421914
## 11042          Benthic    5       california halibut  4.2244718079
## 11043          Pelagic    5          pacific sardine  4.0865605132
## 11044         Midwater   21                kelp bass  4.1773313045
## 11045    Benthopelagic    8            white croaker  3.8840801377
## 11046    Benthopelagic    3       california corbina  3.8662104852
## 11047    Benthopelagic    4        spotted sand bass  4.1289341470
## 11048          Benthic   10  california scorpionfish  4.1318288846
## 11049          Benthic    5  california scorpionfish  3.8735147801
## 11050         Midwater   11                top smelt  3.7408842284
## 11051    Benthopelagic   17            white croaker  4.2639261677
## 11052    Benthopelagic    5            white croaker  4.2353985962
## 11053          Pelagic   21         northern anchovy  4.2441851205
## 11054          Pelagic    5          pacific sardine  4.0271112753
## 11055    Benthopelagic    1       california corbina  4.5178885388
## 11056         Midwater    5                kelp bass  4.1369452666
## 11057    Benthopelagic   20            white croaker  4.0894853457
## 11058    Benthopelagic    3            rosy rockfish  3.8427778493
## 11059    Benthopelagic   21        yellowfin croaker  3.8270349946
## 11060    Benthopelagic    1         barred surfperch  4.0574504035
## 11061    Benthopelagic   14         barred sand bass  4.0569901711
## 11062    Benthopelagic    5       vermilion rockfish  3.9536291368
## 11063         Midwater   21                kelp bass  3.7604347633
## 11064    Benthopelagic    3           pile surfperch  4.0556454714
## 11065    Benthopelagic   19       vermilion rockfish  3.9428018788
## 11066          Pelagic    5            chub mackerel  4.0192795351
## 11067         Midwater   21                kelp bass  4.1890104760
## 11068         Midwater    5                queenfish  4.1873473974
## 11069    Benthopelagic   11            white croaker  4.2209719776
## 11070          Benthic    1           diamond turbot  3.3457772676
## 11071          Benthic   22         hornyhead turbot  3.8518110934
## 11072         Midwater    5                kelp bass  4.0664795816
## 11073    Benthopelagic   21          spotfin croaker  3.8245954129
## 11074          Pelagic    5            chub mackerel  3.9606889842
## 11075    Benthopelagic    5       vermilion rockfish  4.2136710550
## 11076    Benthopelagic    1         barred surfperch  3.4159021849
## 11077    Benthopelagic   11            white croaker  3.9195893655
## 11078    Benthopelagic    4         barred sand bass  3.9032726512
## 11079    Benthopelagic   17       vermilion rockfish  3.9329910107
## 11080    Benthopelagic   11          white surfperch  4.2318188646
## 11081    Benthopelagic    8          copper rockfish  4.2542470608
## 11082         Midwater   11            kelp rockfish  4.1738653227
## 11083    Benthopelagic    5            white croaker  4.0872261509
## 11084    Benthopelagic    4         barred surfperch  4.2699644734
## 11085    Benthopelagic    4       california corbina  3.8751405396
## 11086          Benthic   20       california halibut  4.2056372527
## 11087          Benthic    3           diamond turbot  4.0178906004
## 11088    Benthopelagic   12         barred sand bass  4.2365039009
## 11089         Midwater    1                 halfmoon  3.6891739036
## 11090    Benthopelagic   13       vermilion rockfish  3.8441692782
## 11091          Pelagic    5        pacific barracuda  4.1062688331
## 11092    Benthopelagic    3              black perch  3.8604149458
## 11093          Pelagic   21            chub mackerel  4.0814837758
## 11094    Benthopelagic   14            white croaker  4.0769463909
## 11095    Benthopelagic   24       vermilion rockfish  3.9457004695
## 11096    Benthopelagic   20       california corbina  3.9530261269
## 11097    Benthopelagic   21         barred sand bass  4.3788638250
## 11098    Benthopelagic   11            white croaker  3.8660820154
## 11099         Midwater   21                kelp bass  3.7751805110
## 11100         Midwater    1         shiner surfperch  3.8685139052
## 11101         Midwater    5         shiner surfperch  4.2337527276
## 11102    Benthopelagic   11           brown rockfish  3.9818304111
## 11103    Benthopelagic    5         barred sand bass  4.0400903795
## 11104          Pelagic    5          pacific sardine  4.0806931499
## 11105          Benthic   16         hornyhead turbot  3.7699802152
## 11106         Midwater    1         shiner surfperch  4.0460149946
## 11107    Benthopelagic    5                  opaleye  4.2168298432
## 11108    Benthopelagic   20            white croaker  4.5008457403
## 11109    Benthopelagic   21            white croaker  3.8275667826
## 11110    Benthopelagic   11          spotfin croaker  3.9427126146
## 11111          Benthic   22  california scorpionfish  4.0077819629
## 11112          Pelagic    5          pacific sardine  4.0235024638
## 11113    Benthopelagic    1                  opaleye  4.0992498503
## 11114         Midwater    1         shiner surfperch  4.2387234053
## 11115    Benthopelagic   11         barred surfperch  3.8536414542
## 11116         Midwater   11         shiner surfperch  3.8581914900
## 11117    Benthopelagic   12            white croaker  4.0945225665
## 11118         Midwater   21                queenfish  4.0520855702
## 11119          Benthic    4    shovelnose guitarfish  3.9772879538
## 11120    Benthopelagic   21         barred sand bass  4.4202314205
## 11121    Benthopelagic   10            white croaker  3.7921471864
## 11122    Benthopelagic    1       california corbina  4.3258912270
## 11123    Benthopelagic   11            white croaker  3.9918321041
## 11124         Midwater   11                kelp bass  4.1854875202
## 11125    Benthopelagic    3        spotted sand bass  4.3342899800
## 11126    Benthopelagic    3          copper rockfish  4.0199310070
## 11127          Pelagic   11            chub mackerel  4.0507811742
## 11128          Pelagic    5             market squid  3.7891134817
## 11129          Pelagic   11            chub mackerel  4.3229375582
## 11130          Pelagic   21            chub mackerel  4.0491638129
## 11131          Benthic   22  california scorpionfish  4.1843743080
## 11132         Midwater    4         shiner surfperch  3.6447869925
## 11133          Benthic   18  california scorpionfish  3.9443620700
## 11134    Benthopelagic    5                  opaleye  4.0453991789
## 11135         Midwater   21                queenfish  4.0454899956
## 11136    Benthopelagic    5          copper rockfish  4.0128641576
## 11137    Benthopelagic   11         barred sand bass  3.9436416752
## 11138    Benthopelagic   21        spotted sand bass  3.7903350672
## 11139    Benthopelagic   22            white croaker  4.3101413452
## 11140          Pelagic    5         northern anchovy  4.1812843875
## 11141    Benthopelagic   21            leopard shark  3.9367308645
## 11142         Midwater   11         shiner surfperch  4.2160320205
## 11143    Benthopelagic   21            white croaker  4.1097773377
## 11144          Benthic    5       california halibut  4.0256948689
## 11145         Midwater   11                kelp bass  3.9485404776
## 11146         Midwater   18                kelp bass  3.7788774004
## 11147    Benthopelagic    5            white croaker  3.8053001168
## 11148    Benthopelagic    1         barred surfperch  4.2950237853
## 11149    Benthopelagic   20            white croaker  4.0426498804
## 11150    Benthopelagic    4 brown smooth-hound shark  3.9720460083
## 11151    Benthopelagic   11         barred sand bass  3.8828174653
## 11152          Benthic   15         hornyhead turbot  4.1454245944
## 11153          Benthic    5  california scorpionfish  4.0516930246
## 11154    Benthopelagic   14       vermilion rockfish  3.8979638249
## 11155          Pelagic    5             market squid  4.0401827665
## 11156    Benthopelagic    5            black croaker  4.1946851432
## 11157    Benthopelagic    1         barred surfperch  4.0377986809
## 11158         Midwater    2        walleye surfperch  3.9709435418
## 11159    Benthopelagic   16       vermilion rockfish  4.0635376984
## 11160          Pelagic    4            chub mackerel  4.1124168505
## 11161    Benthopelagic    1        yellowfin croaker  3.9403528768
## 11162         Midwater    5                kelp bass  3.8920654054
## 11163    Benthopelagic    6          copper rockfish  3.9669091358
## 11164          Benthic    9         hornyhead turbot  4.2486569088
## 11165    Benthopelagic   13           brown rockfish  4.0609032209
## 11166    Benthopelagic    4            white croaker  3.7956920949
## 11167    Benthopelagic   21        spotted sand bass  3.8072493526
## 11168          Pelagic    6             market squid  3.7735520684
## 11169    Benthopelagic   11            white croaker  4.0286255958
## 11170    Benthopelagic   16       vermilion rockfish  4.3867988272
## 11171          Benthic    5           diamond turbot  3.9779350559
## 11172         Midwater    5                kelp bass  3.9901164142
## 11173    Benthopelagic    3        rainbow surfperch  3.9823979816
## 11174          Benthic   21       california halibut  4.3611786447
## 11175    Benthopelagic   21            white croaker  4.0323279837
## 11176    Benthopelagic   11          white surfperch  3.7883885372
## 11177    Benthopelagic    4        yellowfin croaker  4.6448335437
## 11178          Pelagic    5         northern anchovy  3.7513693335
## 11179          Pelagic   21         northern anchovy  3.9900259567
## 11180    Benthopelagic   21        yellowfin croaker  4.1601498561
## 11181    Benthopelagic   13       vermilion rockfish  4.1731423647
## 11182    Benthopelagic   11         barred sand bass  4.2064466080
## 11183    Benthopelagic    1       california corbina  3.9970045233
## 11184    Benthopelagic    5       vermilion rockfish  4.2651922127
## 11185         Midwater    1                 halfmoon  3.9862005122
## 11186    Benthopelagic   23          starry rockfish  4.0579502525
## 11187    Benthopelagic    9          copper rockfish  3.8977115959
## 11188    Benthopelagic    5            white croaker  3.9772997175
## 11189    Benthopelagic   12         barred sand bass  4.0034081076
## 11190    Benthopelagic   23            white croaker  3.7478665961
## 11191          Pelagic    5            chub mackerel  4.1410508802
## 11192         Midwater    4                kelp bass  3.9002897033
## 11193          Pelagic    5         northern anchovy  4.1385632516
## 11194    Benthopelagic    1        spotted sand bass  4.3533717976
## 11195          Benthic   16         hornyhead turbot  3.9475612351
## 11196         Midwater   11                kelp bass  4.3796449598
## 11197          Pelagic   21            chub mackerel  4.0557047009
## 11198    Benthopelagic    1          ocean whitefish  3.9657946562
## 11199    Benthopelagic    1       california corbina  4.5637033323
## 11200    Benthopelagic   21        spotted sand bass  4.2752399641
## 11201          Pelagic    5          pacific sardine  2.9003933231
## 11202    Benthopelagic    4                  opaleye  3.1159378026
## 11203          Pelagic    6          pacific sardine  3.0922067332
## 11204          Pelagic   11            chub mackerel  3.2329930943
## 11205         Midwater   21                kelp bass  2.9033996635
## 11206    Benthopelagic    1     california sheephead  2.8684703168
## 11207         Midwater   10                kelp bass  3.0602212501
## 11208    Benthopelagic   13            white croaker  2.8106522791
## 11209          Pelagic    5            chub mackerel  3.5279347858
## 11210          Benthic   15         hornyhead turbot  3.0858064694
## 11211    Benthopelagic   24          starry rockfish  3.0101806268
## 11212    Benthopelagic   14       vermilion rockfish  3.1345538584
## 11213    Benthopelagic   22            white croaker  3.1083539787
## 11214          Benthic    5    shovelnose guitarfish  3.0122667005
## 11215          Benthic   12  california scorpionfish  2.3579267266
## 11216    Benthopelagic   11   gray smoothhound shark  2.6370256127
## 11217    Benthopelagic    3        rainbow surfperch  3.1255673012
## 11218    Benthopelagic    1                  opaleye  2.7381207575
## 11219          Pelagic    5             market squid  3.3711547420
## 11220          Pelagic    4            chub mackerel  3.2467522519
## 11221          Pelagic    5          pacific sardine  3.3945477495
## 11222    Benthopelagic   15            white croaker  2.9145505296
## 11223          Pelagic    5             market squid  3.3618633197
## 11224          Pelagic   21            chub mackerel  3.0440743395
## 11225    Benthopelagic   11           brown rockfish  2.8658015540
## 11226    Benthopelagic   20        yellowfin croaker  3.2607179474
## 11227    Benthopelagic   22         barred sand bass  3.0983326080
## 11228          Pelagic    5          pacific sardine  2.5207495607
## 11229          Benthic   13         hornyhead turbot  2.9525245036
## 11230         Midwater   12                kelp bass  3.3494527951
## 11231    Benthopelagic   22            white croaker  3.4996540831
## 11232          Pelagic    6             market squid  3.3283026726
## 11233          Pelagic    5          pacific sardine  2.8196023633
## 11234    Benthopelagic    4       california corbina  3.4277506357
## 11235    Benthopelagic   21        spotted sand bass  3.7034094780
## 11236    Benthopelagic    6    greenspotted rockfish  2.8774570394
## 11237          Pelagic    5             market squid  3.5049313017
## 11238    Benthopelagic    4            white croaker  3.0239806979
## 11239    Benthopelagic    1       california corbina  2.8940329695
## 11240         Midwater    4         shiner surfperch  3.4798863254
## 11241    Benthopelagic   23       vermilion rockfish  3.0073744281
## 11242    Benthopelagic   20       california corbina  3.2831386194
## 11243          Pelagic    5            chub mackerel  3.3319532857
## 11244    Benthopelagic   21         barred sand bass  2.9781355920
## 11245          Benthic    5  california scorpionfish  3.4761339006
## 11246          Pelagic    5             market squid  3.1523187790
## 11247    Benthopelagic   21        yellowfin croaker  3.2092658243
## 11248          Benthic    5          longfin sanddab  2.6470621459
## 11249    Benthopelagic    5       vermilion rockfish  2.8805734806
## 11250         Midwater   13     chilipepper rockfish  3.3357550968
## 11251    Benthopelagic    4        yellowfin croaker  3.2669363066
## 11252    Benthopelagic   21        yellowfin croaker  3.2911257765
## 11253    Benthopelagic    1        yellowfin croaker  2.9842086562
## 11254    Benthopelagic    3                  opaleye  3.5748678208
## 11255    Benthopelagic   11        yellowfin croaker  3.1849126739
## 11256          Benthic   15         hornyhead turbot  3.1229514707
## 11257         Midwater    3         shiner surfperch  3.0849249357
## 11258    Benthopelagic    3        spotted sand bass  3.5920303549
## 11259          Benthic   13         hornyhead turbot  2.8186845622
## 11260    Benthopelagic    7       vermilion rockfish  3.5056306725
## 11261         Midwater    3                kelp bass  3.1327728899
## 11262    Benthopelagic   22       vermilion rockfish  2.8594343041
## 11263    Benthopelagic   11          gopher rockfish  2.5610017130
## 11264    Benthopelagic    4         barred sand bass  3.1026563153
## 11265    Benthopelagic    5         barred sand bass  2.7161100593
## 11266         Midwater   10                kelp bass  3.2839737363
## 11267          Benthic    4    california lizardfish  2.9590860422
## 11268    Benthopelagic    8            white croaker  2.6113015014
## 11269         Midwater   11         shiner surfperch  3.3564636488
## 11270    Benthopelagic    1     california sheephead  3.1675890161
## 11271    Benthopelagic    5            white croaker  3.6865022058
## 11272    Benthopelagic   11            white croaker  2.7546474187
## 11273          Benthic    1           diamond turbot  3.0501218546
## 11274    Benthopelagic    6       vermilion rockfish  3.3960539071
## 11275          Pelagic   21            chub mackerel  2.9718723135
## 11276         Midwater    4           striped mullet  2.6268456919
## 11277          Benthic   19  california scorpionfish  3.2788250579
## 11278         Midwater    1         shiner surfperch  2.7210275045
## 11279    Benthopelagic   11         barred surfperch  3.0621928730
## 11280    Benthopelagic   11        spotted sand bass  3.0797524691
## 11281          Pelagic    5            chub mackerel  3.5103406702
## 11282          Pelagic    5            chub mackerel  3.0702999106
## 11283    Benthopelagic   11            white croaker  3.2156710439
## 11284    Benthopelagic    5           brown rockfish  3.0638140326
## 11285         Midwater    4           striped mullet  3.0301400577
## 11286         Midwater   21                kelp bass  3.0666049926
## 11287    Benthopelagic   21        yellowfin croaker  3.6232745775
## 11288    Benthopelagic    1         barred surfperch  2.9692970000
## 11289    Benthopelagic   14          starry rockfish  2.4591509298
## 11290    Benthopelagic   11 brown smooth-hound shark  3.5208403255
## 11291    Benthopelagic   11           brown rockfish  3.1254146947
## 11292         Midwater    1        walleye surfperch  3.1220098592
## 11293    Benthopelagic   20              black perch  2.9496512570
## 11294          Benthic   10  california scorpionfish  2.8234834796
## 11295         Midwater   22                kelp bass  3.2036935385
## 11296    Benthopelagic    1        rainbow surfperch  3.0473444431
## 11297         Midwater   24      squarespot rockfish  3.3154489224
## 11298    Benthopelagic   21        yellowfin croaker  3.3183999007
## 11299    Benthopelagic   11       vermilion rockfish  3.1752105497
## 11300    Benthopelagic   11         barred sand bass  3.6537462153
## 11301          Benthic   22  california scorpionfish  2.9752464731
## 11302    Benthopelagic    1                  opaleye  3.0662837581
## 11303    Benthopelagic   21          white surfperch  3.2119933629
## 11304         Midwater    4           striped mullet  3.7675290619
## 11305          Pelagic   21            chub mackerel  3.0397092605
## 11306    Benthopelagic   22       vermilion rockfish  3.1525039481
## 11307    Benthopelagic   13            white croaker  2.7210476611
## 11308          Benthic    8  california scorpionfish  3.2397088562
## 11309    Benthopelagic    5       vermilion rockfish  3.4717128053
## 11310    Benthopelagic    3        rainbow surfperch  3.4359610041
## 11311    Benthopelagic    9   greenblotched rockfish  3.0009104677
## 11312          Pelagic   21            chub mackerel  3.0815610819
## 11313    Benthopelagic    5            white croaker  3.0308421415
## 11314          Pelagic   21            chub mackerel  3.2217023706
## 11315          Pelagic    5          pacific sardine  3.1555830599
## 11316         Midwater   12                kelp bass  3.0341536519
## 11317    Benthopelagic   11         barred sand bass  2.9904037598
## 11318          Benthic    8         hornyhead turbot  3.0341565683
## 11319          Benthic    4           spotted turbot  3.1313536926
## 11320          Benthic    5  california scorpionfish  3.1953643710
## 11321         Midwater   21                kelp bass  2.7677061204
## 11322    Benthopelagic    1       california corbina  2.8603439437
## 11323          Pelagic   21            chub mackerel  3.3437362727
## 11324          Benthic    3           diamond turbot  3.0168204265
## 11325          Pelagic   11            chub mackerel  3.4157658422
## 11326    Benthopelagic    9   greenblotched rockfish  2.8947589730
## 11327    Benthopelagic    5            white croaker  3.1188288533
## 11328    Benthopelagic    4        yellowfin croaker  3.1213878093
## 11329         Midwater    7      squarespot rockfish  3.2101527406
## 11330    Benthopelagic   15        speckled rockfish  2.8826384071
## 11331    Benthopelagic   11          white surfperch  2.9320142774
## 11332    Benthopelagic   13       vermilion rockfish  3.1610601971
## 11333    Benthopelagic    2        spotted sand bass  3.1324619417
## 11334    Benthopelagic   15       vermilion rockfish  3.4324094373
## 11335    Benthopelagic   13            white croaker  3.4578872820
## 11336    Benthopelagic    1              black perch  3.0673189121
## 11337    Benthopelagic    8         barred sand bass  3.1789115670
## 11338          Pelagic   11            chub mackerel  3.2547388076
## 11339          Pelagic    6             market squid  3.4950522798
## 11340    Benthopelagic   10            white croaker  3.0319082339
## 11341          Benthic    4           spotted turbot  3.1713465521
## 11342         Midwater   11                kelp bass  3.1322710406
## 11343    Benthopelagic    1              black perch  3.0855095287
## 11344    Benthopelagic   21            white croaker  2.7067135655
## 11345    Benthopelagic   20       california corbina  2.9185409843
## 11346    Benthopelagic   11              black perch  2.8104389380
## 11347          Pelagic   21            chub mackerel  2.9860623237
## 11348    Benthopelagic    1        yellowfin croaker  3.0517032641
## 11349    Benthopelagic   10           brown rockfish  2.8235446507
## 11350          Pelagic   11            chub mackerel  3.8574049450
## 11351    Benthopelagic   11          gopher rockfish  3.3055731613
## 11352    Benthopelagic   21        spotted sand bass  3.1925293848
## 11353    Benthopelagic   23       vermilion rockfish  3.4552071334
## 11354          Pelagic    5            chub mackerel  3.0918089882
## 11355         Midwater    3         shiner surfperch  2.9734082843
## 11356         Midwater   11         shiner surfperch  2.9586704879
## 11357    Benthopelagic   20         barred surfperch  3.2034745509
## 11358    Benthopelagic    3         barred surfperch  3.6686652414
## 11359    Benthopelagic   21        yellowfin croaker  3.4901367191
## 11360    Benthopelagic    5       california corbina  3.2328085127
## 11361    Benthopelagic    5            white croaker  2.8762167623
## 11362          Pelagic    5             market squid  2.8379230520
## 11363    Benthopelagic   17            white croaker  2.8966801264
## 11364    Benthopelagic   20         barred sand bass  3.3471194110
## 11365    Benthopelagic    3              black perch  3.4715680716
## 11366    Benthopelagic   11            white croaker  3.1823697318
## 11367    Benthopelagic    5                  opaleye  2.8989286999
## 11368    Benthopelagic    5            white croaker  2.9580475615
## 11369         Midwater   21                kelp bass  3.3160029595
## 11370    Benthopelagic   23       vermilion rockfish  3.0936209153
## 11371    Benthopelagic    4       california corbina  2.8818416927
## 11372    Benthopelagic   11              black perch  3.2334342584
## 11373    Benthopelagic    5                  opaleye  3.3899621779
## 11374    Benthopelagic    5            white croaker  3.4952401801
## 11375    Benthopelagic   11        spotted sand bass  3.0073442393
## 11376          Pelagic   21            chub mackerel  2.6574883924
## 11377          Pelagic    5         northern anchovy  2.9246876403
## 11378    Benthopelagic    3        spotted sand bass  3.2462008055
## 11379    Benthopelagic   20           pile surfperch  3.0055023155
## 11380          Pelagic    5         northern anchovy  3.5012395076
## 11381          Benthic   11         hornyhead turbot  3.2221243414
## 11382    Benthopelagic   11            black croaker  2.9220848327
## 11383    Benthopelagic    1          white surfperch  3.1354766400
## 11384    Benthopelagic   11         barred sand bass  3.4222874517
## 11385    Benthopelagic   14            white croaker  3.0774224978
## 11386    Benthopelagic    3       california corbina  2.7102875120
## 11387          Pelagic    5            chub mackerel  3.2637317166
## 11388    Benthopelagic   12            white croaker  2.9493283356
## 11389    Benthopelagic    1        yellowfin croaker  3.3675955067
## 11390    Benthopelagic   22          starry rockfish  2.9533572664
## 11391    Benthopelagic    5                  opaleye  2.9740470897
## 11392          Pelagic   11            chub mackerel  3.1069973771
## 11393    Benthopelagic   22            white croaker  2.6504253560
## 11394    Benthopelagic   17        speckled rockfish  3.4280866454
## 11395    Benthopelagic   11         barred sand bass  3.2820937285
## 11396    Benthopelagic   21        spotted sand bass  2.7294920689
## 11397    Benthopelagic    1        spotted sand bass  2.9371960473
## 11398    Benthopelagic    4           pile surfperch  3.3486377476
## 11399    Benthopelagic    5                  opaleye  3.5184099775
## 11400         Midwater    2                kelp bass  3.1487538720
## 11401    Benthopelagic   10              black perch  3.1086733682
## 11402          Pelagic    5          pacific sardine  2.8824063287
## 11403         Midwater    1         shiner surfperch  3.1412022886
## 11404    Benthopelagic    1         barred surfperch  3.1548803066
## 11405    Benthopelagic    2            white croaker  3.1905157402
## 11406    Benthopelagic    1            white croaker  3.0079632896
## 11407    Benthopelagic    5         barred sand bass  3.3767926940
## 11408    Benthopelagic   24       vermilion rockfish  2.9243211436
## 11409         Midwater    3          canary rockfish  2.6589255748
## 11410    Benthopelagic   18            white croaker  2.6073800386
## 11411    Benthopelagic    7           brown rockfish  2.6883448597
## 11412         Midwater    5                queenfish  3.4220824816
## 11413          Benthic    1           diamond turbot  3.2632110762
## 11414    Benthopelagic    1            white croaker  3.3136494450
## 11415          Pelagic    5             market squid  2.9625449585
## 11416          Pelagic    5             market squid  3.1869435916
## 11417    Benthopelagic    3        spotted sand bass  2.8372832233
## 11418          Pelagic    5             market squid  3.1276518363
## 11419         Midwater   11                kelp bass  3.0282246003
## 11420          Benthic    5       california halibut  3.4206260357
## 11421          Benthic   19         hornyhead turbot  3.0034675335
## 11422          Pelagic    5         northern anchovy  3.4116750631
## 11423         Midwater   21                kelp bass  2.3034676099
## 11424          Pelagic   21            chub mackerel  2.8254912205
## 11425         Midwater    1                queenfish  2.9072897117
## 11426    Benthopelagic    3        spotted sand bass  2.8575805925
## 11427    Benthopelagic   14    greenspotted rockfish  3.1226040194
## 11428    Benthopelagic    5            white croaker  2.9133002843
## 11429    Benthopelagic   10   greenblotched rockfish  2.9581595028
## 11430    Benthopelagic    5                  opaleye  3.3950367300
## 11431    Benthopelagic    1            white croaker  3.4788818356
## 11432          Pelagic    5          pacific sardine  2.9160076282
## 11433         Midwater    1            blue rockfish  3.4149968373
## 11434         Midwater   21                kelp bass  3.6923253562
## 11435    Benthopelagic    3         barred sand bass  3.3458349188
## 11436          Pelagic   21            chub mackerel  2.9745165861
## 11437    Benthopelagic    4                  opaleye  3.0440762808
## 11438    Benthopelagic    1     california sheephead  3.2692965260
## 11439    Benthopelagic   11              black perch  2.7491322721
## 11440    Benthopelagic    1        yellowfin croaker  3.1989961332
## 11441    Benthopelagic   18              black perch  3.2124050903
## 11442    Benthopelagic    1        yellowfin croaker  3.3144415260
## 11443    Benthopelagic   21        spotted sand bass  2.8404658509
## 11444    Benthopelagic    5                  opaleye  3.0810063301
## 11445    Benthopelagic   12       vermilion rockfish  2.9876944410
## 11446    Benthopelagic   18       vermilion rockfish  2.7869458609
## 11447    Benthopelagic    3              black perch  2.8922792351
## 11448         Midwater    3                kelp bass  3.2126797287
## 11449    Benthopelagic   12            white croaker  3.0015394640
## 11450         Midwater   21                kelp bass  3.0580939112
## 11451         Midwater    4         shiner surfperch  2.8332943426
## 11452    Benthopelagic   11          gopher rockfish  3.0989579816
## 11453    Benthopelagic    3       vermilion rockfish  3.0368587111
## 11454    Benthopelagic   14         barred sand bass  3.5775322351
## 11455         Midwater   21                kelp bass  3.2283459847
## 11456         Midwater    1                queenfish  2.8241988311
## 11457    Benthopelagic   22          starry rockfish  2.8718231331
## 11458    Benthopelagic   20            white croaker  3.4108524468
## 11459    Benthopelagic    4       california corbina  2.8452479071
## 11460    Benthopelagic    8              black perch  3.2084229421
## 11461          Benthic   20         hornyhead turbot  2.7499675879
## 11462         Midwater   21                kelp bass  2.8824636943
## 11463    Benthopelagic    4              black perch  3.2484877667
## 11464    Benthopelagic    4            white croaker  3.3657258450
## 11465    Benthopelagic    4              black perch  2.8559295467
## 11466    Benthopelagic   21        yellowfin croaker  2.3817285893
## 11467    Benthopelagic    1                  opaleye  3.9559986209
## 11468          Benthic   21         hornyhead turbot  3.1790080447
## 11469    Benthopelagic    4         barred surfperch  2.8170196295
## 11470         Midwater   11                kelp bass  3.5087652133
## 11471          Pelagic    5             market squid  2.7482881855
## 11472          Benthic    1           diamond turbot  3.1987381731
## 11473    Benthopelagic    1            white croaker  2.8384026950
## 11474    Benthopelagic    4              black perch  3.4632381214
## 11475          Pelagic    6             market squid  3.1974758121
## 11476    Benthopelagic   11            white croaker  2.8872089290
## 11477    Benthopelagic    9            white croaker  3.2673983996
## 11478          Pelagic   21         northern anchovy  2.9423750074
## 11479    Benthopelagic   11           brown rockfish  3.2459181617
## 11480    Benthopelagic   11          ocean whitefish  2.6963521138
## 11481          Benthic   17         hornyhead turbot  3.2724523547
## 11482          Benthic   11  california scorpionfish  2.8445219552
## 11483          Benthic   20           diamond turbot  2.5428110475
## 11484    Benthopelagic    4        spotted sand bass  3.0137017989
## 11485         Midwater   11           olive rockfish  3.1575622666
## 11486    Benthopelagic    1              black perch  3.4400174842
## 11487    Benthopelagic    5            white croaker  3.0587679897
## 11488          Pelagic    5         northern anchovy  3.0361324608
## 11489    Benthopelagic   11        yellowfin croaker  2.6689613535
## 11490         Midwater   16                kelp bass  3.5569008021
## 11491    Benthopelagic   11            white croaker  3.6994459114
## 11492    Benthopelagic   11              black perch  3.2564157076
## 11493         Midwater   18                kelp bass  2.7986395438
## 11494    Benthopelagic    3              black perch  3.1004547143
## 11495         Midwater    1                kelp bass  2.7856130765
## 11496    Benthopelagic   15            white croaker  2.9715261201
## 11497    Benthopelagic   22         barred sand bass  3.1177818279
## 11498    Benthopelagic    1            white croaker  3.7257026865
## 11499    Benthopelagic   21        yellowfin croaker  2.9534179810
## 11500          Benthic    5  california scorpionfish  2.9571969436
## 11501          Pelagic   21            chub mackerel  2.9542510706
## 11502          Benthic    1           spotted turbot  3.0564951429
## 11503    Benthopelagic   11          gopher rockfish  3.0312053465
## 11504    Benthopelagic    1            white croaker  3.1072421391
## 11505    Benthopelagic    5       california corbina  3.2059812364
## 11506    Benthopelagic    1              black perch  3.0333778391
## 11507    Benthopelagic   11          spotfin croaker  3.3357791441
## 11508    Benthopelagic    8          copper rockfish  3.5544422065
## 11509    Benthopelagic    4        yellowfin croaker  2.9002392751
## 11510    Benthopelagic   12            white croaker  3.4367971600
## 11511         Midwater    8      yellowtail rockfish  2.8629520687
## 11512         Midwater    3                kelp bass  3.3283589920
## 11513    Benthopelagic    5          spotfin croaker  2.6755080521
## 11514          Pelagic    5          pacific sardine  3.2760692941
## 11515          Benthic    5  california scorpionfish  3.2480678461
## 11516    Benthopelagic    3         barred surfperch  3.2526899574
## 11517          Pelagic    6          pacific sardine  3.0198666877
## 11518    Benthopelagic   11       vermilion rockfish  3.1948163005
## 11519          Pelagic    5         northern anchovy  2.7340164957
## 11520          Pelagic   11            chub mackerel  3.4247608732
## 11521          Pelagic   21            chub mackerel  3.0478813843
## 11522         Midwater    5                top smelt  3.3574767001
## 11523         Midwater    2                queenfish  2.6041232650
## 11524    Benthopelagic    4            white croaker  3.2998390254
## 11525    Benthopelagic   18              black perch  3.1595531502
## 11526         Midwater   21                kelp bass  3.5976752210
## 11527    Benthopelagic    4          copper rockfish  2.9081932844
## 11528    Benthopelagic   20              black perch  2.8395800120
## 11529          Benthic    1         speckled sanddab  3.0232711905
## 11530    Benthopelagic   18            white croaker  3.3340184744
## 11531    Benthopelagic   11         barred sand bass  3.6151119338
## 11532    Benthopelagic   11          spotfin croaker  3.2510884755
## 11533          Pelagic   11            chub mackerel  2.9491878828
## 11534          Pelagic    5            chub mackerel  3.0676861650
## 11535          Benthic   18         hornyhead turbot  3.1838018200
## 11536          Benthic   12  california scorpionfish  3.0249935233
## 11537          Benthic    1             fantail sole  3.2245412897
## 11538         Midwater   21                kelp bass  3.2163115338
## 11539    Benthopelagic    3          white surfperch  3.0037278553
## 11540    Benthopelagic   13       vermilion rockfish  2.8065337099
## 11541    Benthopelagic   18            white croaker  3.4878909080
## 11542         Midwater    1         shiner surfperch  3.5370561291
## 11543    Benthopelagic   14            white croaker  3.0446530103
## 11544         Midwater   11                kelp bass  3.0822920108
## 11545          Benthic    5         speckled sanddab  2.3610569801
## 11546          Benthic   17  california scorpionfish  2.9096590371
## 11547    Benthopelagic   21       california corbina  3.0626789914
## 11548          Benthic   11  california scorpionfish  3.0466978967
## 11549          Benthic   17         hornyhead turbot  3.3881432170
## 11550    Benthopelagic   12              black perch  3.3694479072
## 11551    Benthopelagic    1            white croaker  3.2849026191
## 11552    Benthopelagic    5       california corbina  3.1375284768
## 11553    Benthopelagic    4              black perch  3.0173983112
## 11554    Benthopelagic    5            white croaker  2.9188374612
## 11555    Benthopelagic    1            white croaker  2.7912767854
## 11556          Benthic   14         hornyhead turbot  3.1448953708
## 11557          Benthic    4    shovelnose guitarfish  3.6410653009
## 11558         Midwater    1        walleye surfperch  2.6646058259
## 11559         Midwater   18                kelp bass  3.1746318563
## 11560    Benthopelagic    5            white croaker  3.0042228242
## 11561    Benthopelagic    5         barred sand bass  2.8614351689
## 11562         Midwater    2                kelp bass  3.6894962348
## 11563    Benthopelagic   21         barred sand bass  3.1819922247
## 11564    Benthopelagic   12       vermilion rockfish  3.1244478059
## 11565    Benthopelagic    2       quillback rockfish  3.2962955162
## 11566    Benthopelagic   21            white croaker  3.3337976952
## 11567    Benthopelagic   16       vermilion rockfish  3.4417281172
## 11568    Benthopelagic    3              black perch  3.2559042563
## 11569          Benthic    8  california scorpionfish  3.2945814481
## 11570          Pelagic    5          pacific sardine  3.0868544159
## 11571          Benthic    5  california scorpionfish  3.3083105951
## 11572    Benthopelagic    8          copper rockfish  2.7738782816
## 11573          Pelagic    5          pacific sardine  3.3190396399
## 11574    Benthopelagic    2            white croaker  3.0414871788
## 11575    Benthopelagic    1            white croaker  3.0981407081
## 11576    Benthopelagic   21            leopard shark  2.9183719474
## 11577    Benthopelagic   14              black perch  2.8978159919
## 11578    Benthopelagic   16       vermilion rockfish  3.0412042031
## 11579    Benthopelagic   10       vermilion rockfish  2.9097615607
## 11580         Midwater   21                kelp bass  3.6227153940
## 11581    Benthopelagic    1            rosy rockfish  3.4521855391
## 11582         Midwater    3         shiner surfperch  3.1462015809
## 11583    Benthopelagic   11            white croaker  2.9613685928
## 11584    Benthopelagic    1         barred surfperch  2.9750100423
## 11585         Midwater    1         shiner surfperch  2.7768245052
## 11586          Pelagic   21            chub mackerel  2.7391376745
## 11587    Benthopelagic   16       vermilion rockfish  2.8138386725
## 11588    Benthopelagic    7        speckled rockfish  2.8072873065
## 11589         Midwater    4         shiner surfperch  3.1042320128
## 11590    Benthopelagic   11       vermilion rockfish  3.1490308601
## 11591          Pelagic    5            chub mackerel  2.6852576415
## 11592         Midwater   14                kelp bass  2.8773573425
## 11593    Benthopelagic    3              black perch  2.7479364454
## 11594    Benthopelagic    5            black croaker  2.6825627222
## 11595         Midwater    5                top smelt  3.7064227695
## 11596         Midwater   11                top smelt  3.0596168434
## 11597          Benthic   10         hornyhead turbot  3.0556485445
## 11598          Pelagic    5             market squid  2.9591396966
## 11599    Benthopelagic   12              black perch  2.7164359711
## 11600    Benthopelagic    1       california corbina  3.1448874747
## 11601    Benthopelagic    3         barred surfperch  2.8900605905
## 11602    Benthopelagic   19       vermilion rockfish  3.1115503796
## 11603    Benthopelagic   15        speckled rockfish  3.0945286639
## 11604          Pelagic    5          pacific sardine  2.9163390478
## 11605    Benthopelagic    4         barred surfperch  3.2569611977
## 11606    Benthopelagic   11              black perch  3.2935807574
## 11607         Midwater   11                kelp bass  2.7333289649
## 11608    Benthopelagic   11         barred surfperch  2.9156096390
## 11609          Pelagic    5         northern anchovy  3.4641487732
## 11610          Pelagic    5          pacific sardine  2.9426541059
## 11611    Benthopelagic   11            white croaker  2.8317562311
## 11612    Benthopelagic   19            white croaker  2.8799176470
## 11613    Benthopelagic    3              black perch  3.0810845394
## 11614    Benthopelagic   19       vermilion rockfish  3.2814227422
## 11615    Benthopelagic   12           brown rockfish  3.1871946531
## 11616    Benthopelagic    6          copper rockfish  3.0578472047
## 11617          Pelagic    5             market squid  2.8998227217
## 11618    Benthopelagic   22              black perch  2.9781638502
## 11619          Benthic   20       california halibut  2.8271747644
## 11620    Benthopelagic    2        spotted sand bass  2.3524990240
## 11621          Benthic    1           diamond turbot  2.9044388585
## 11622          Benthic   23         hornyhead turbot  2.9587975095
## 11623    Benthopelagic    5         barred sand bass  3.0225063369
## 11624          Benthic    4    california lizardfish  3.0564695435
## 11625    Benthopelagic   11 brown smooth-hound shark  3.0663504069
## 11626    Benthopelagic   21            white croaker  3.2057331717
## 11627    Benthopelagic    4            flag rockfish  3.1582152062
## 11628          Benthic   12         hornyhead turbot  3.1271410503
## 11629          Benthic    4    shovelnose guitarfish  3.3172756272
## 11630    Benthopelagic   14            white croaker  3.1729282753
## 11631    Benthopelagic    5     california sheephead  2.9457575237
## 11632          Pelagic    5         northern anchovy  2.9977598002
## 11633    Benthopelagic   20       vermilion rockfish  3.1475628062
## 11634    Benthopelagic    2         barred surfperch  3.0015295368
## 11635         Midwater   17      squarespot rockfish  3.0471016331
## 11636    Benthopelagic   18       vermilion rockfish  3.0020436485
## 11637    Benthopelagic   11            white croaker  2.8569053262
## 11638    Benthopelagic    4         barred sand bass  3.1901723692
## 11639         Midwater    4                top smelt  3.2340248911
## 11640          Benthic   17         hornyhead turbot  3.1018861183
## 11641    Benthopelagic   11            white croaker  3.0226910273
## 11642    Benthopelagic   11         barred surfperch  3.0064404142
## 11643          Pelagic    5             market squid  2.7360114726
## 11644          Benthic   19  california scorpionfish  3.0462537706
## 11645          Pelagic    5             market squid  2.5667344729
## 11646    Benthopelagic   10         barred sand bass  2.8565313297
## 11647          Pelagic   11            chub mackerel  2.9479207880
## 11648    Benthopelagic   11              black perch  2.9613906051
## 11649    Benthopelagic   22              black perch  3.1535324221
## 11650    Benthopelagic   12            white croaker  2.9755927553
## 11651          Benthic    5    shovelnose guitarfish  2.7088686027
## 11652    Benthopelagic   20       california corbina  2.7091107360
## 11653    Benthopelagic    5                  opaleye  2.9756694539
## 11654    Benthopelagic   16       vermilion rockfish  2.8715536481
## 11655    Benthopelagic    1        spotted sand bass  2.9562507741
## 11656    Benthopelagic    3        rainbow surfperch  2.9246424812
## 11657    Benthopelagic   17            white croaker  3.2189216565
## 11658          Benthic   22  california scorpionfish  2.9795740633
## 11659         Midwater   21                kelp bass  3.0546474597
## 11660          Pelagic    5             market squid  3.0031907238
## 11661    Benthopelagic   21            white croaker  3.4950670566
## 11662    Benthopelagic    1        rainbow surfperch  2.9045968274
## 11663    Benthopelagic    4       california corbina  2.9623451497
## 11664          Pelagic   21            chub mackerel  2.7122497511
## 11665    Benthopelagic   20            white croaker  3.0951945301
## 11666          Pelagic    6          pacific sardine  2.8175623811
## 11667         Midwater    4           striped mullet  3.2381205685
## 11668          Pelagic   21            chub mackerel  3.1382646463
## 11669          Benthic    1         speckled sanddab  2.7153050212
## 11670    Benthopelagic   11            white croaker  2.6245612563
## 11671          Benthic    8         hornyhead turbot  2.9554896726
## 11672         Midwater    4         shiner surfperch  2.7282095320
## 11673    Benthopelagic   10       vermilion rockfish  3.0970740117
## 11674    Benthopelagic    1        rainbow surfperch  2.8900057996
## 11675         Midwater   11         shiner surfperch  3.0621911591
## 11676    Benthopelagic    5            leopard shark  2.7652412561
## 11677          Pelagic   21            chub mackerel  2.8401622332
## 11678    Benthopelagic   11              black perch  2.9533043013
## 11679         Midwater    4         shiner surfperch  2.7862286821
## 11680    Benthopelagic   14              black perch  2.5141733867
## 11681         Midwater   11                kelp bass  3.0277362596
## 11682    Benthopelagic   18            white croaker  3.0363192594
## 11683         Midwater    4                top smelt  3.0321660265
## 11684    Benthopelagic    5   gray smoothhound shark  2.8625266900
## 11685    Benthopelagic   23            white croaker  2.8502695053
## 11686          Pelagic   21           slough anchovy  3.2877321196
## 11687         Midwater    1                queenfish  3.1679835592
## 11688    Benthopelagic   21            white croaker  3.0089927501
## 11689         Midwater    1                kelp bass  3.3275408493
## 11690    Benthopelagic   24       vermilion rockfish  2.9677062608
## 11691          Pelagic   21            chub mackerel  3.1556457282
## 11692          Pelagic    5          pacific sardine  2.7758854787
## 11693    Benthopelagic    4       california corbina  3.0441312031
## 11694    Benthopelagic    3       california corbina  3.1519232834
## 11695    Benthopelagic   16              black perch  3.0759809698
## 11696          Pelagic    5          pacific sardine  2.8870830467
## 11697          Pelagic   21            chub mackerel  2.6693745939
## 11698    Benthopelagic   21         barred sand bass  3.1838646853
## 11699          Pelagic    6          pacific sardine  3.4573316866
## 11700    Benthopelagic    5        yellowfin croaker  2.9622757188
## 11701          Benthic    1  california scorpionfish  2.6447396134
## 11702         Midwater    4         shiner surfperch  3.3842800970
## 11703          Benthic    5  california scorpionfish  2.9840288213
## 11704    Benthopelagic    5       california corbina  2.9750310235
## 11705          Benthic   19         hornyhead turbot  3.1385441124
## 11706    Benthopelagic    2              black perch  2.8962160897
## 11707    Benthopelagic   21        spotted sand bass  2.7718651322
## 11708    Benthopelagic    7       vermilion rockfish  2.9640932959
## 11709    Benthopelagic    3              black perch  2.9924904821
## 11710          Pelagic   11            chub mackerel  3.0943453434
## 11711    Benthopelagic   22            white croaker  2.8479717489
## 11712         Midwater    2         shiner surfperch  2.9923111645
## 11713    Benthopelagic   11   gray smoothhound shark  3.1712579313
## 11714    Benthopelagic   19            white croaker  3.0228551617
## 11715    Benthopelagic   11            white croaker  3.1265210732
## 11716    Benthopelagic    5            white croaker  3.1565260207
## 11717    Benthopelagic   21          white surfperch  3.5026998226
## 11718         Midwater    5                 halfmoon  2.6677806339
## 11719         Midwater   10                kelp bass  2.8810828682
## 11720         Midwater    1                kelp bass  2.7691456124
## 11721         Midwater    3         shiner surfperch  3.1020994637
## 11722    Benthopelagic   10            white croaker  3.0681271891
## 11723         Midwater    5                queenfish  3.1106154399
## 11724    Benthopelagic    1            white croaker  2.5419983136
## 11725    Benthopelagic    4              black perch  3.0701903301
## 11726    Benthopelagic    1         barred sand bass  3.2674893578
## 11727         Midwater    5                kelp bass  2.8649062291
## 11728          Pelagic    5          pacific sardine  3.0477665936
## 11729    Benthopelagic   21         barred sand bass  3.0778693267
## 11730    Benthopelagic    4           pile surfperch  2.8676278725
## 11731         Midwater   14                kelp bass  3.4008122856
## 11732    Benthopelagic   16          copper rockfish  3.7126267196
## 11733    Benthopelagic    3        spotted sand bass  3.2720413843
## 11734         Midwater   16                kelp bass  3.2204880730
## 11735         Midwater    4                kelp bass  2.9867640692
## 11736    Benthopelagic   14              black perch  2.7867271754
## 11737          Pelagic    6          pacific sardine  3.0039348133
## 11738    Benthopelagic   11              black perch  3.1500131833
## 11739    Benthopelagic    4           pile surfperch  3.1903099168
## 11740    Benthopelagic    5        yellowfin croaker  3.0821261570
## 11741          Benthic   14         hornyhead turbot  3.3676693145
## 11742          Pelagic    5          pacific sardine  2.9938511326
## 11743          Pelagic   21            chub mackerel  2.6106164024
## 11744         Midwater   21                kelp bass  2.9615764489
## 11745    Benthopelagic   10              black perch  2.7604337537
## 11746         Midwater   21                kelp bass  3.1838747368
## 11747          Pelagic    5          pacific sardine  2.7262090404
## 11748         Midwater    3         shiner surfperch  3.1088635613
## 11749    Benthopelagic    8         barred sand bass  2.8952487546
## 11750    Benthopelagic   11         barred sand bass  3.0754086413
## 11751         Midwater    1        walleye surfperch  2.8834498410
## 11752          Benthic   20  california scorpionfish  3.0616843553
## 11753          Benthic   23         hornyhead turbot  2.8363279320
## 11754          Benthic   19  california scorpionfish  2.8897764449
## 11755    Benthopelagic   12           brown rockfish  3.0545703163
## 11756    Benthopelagic   11          white surfperch  2.9149992403
## 11757    Benthopelagic    5       california corbina  3.3067533916
## 11758    Benthopelagic    4              black perch  3.0451620511
## 11759    Benthopelagic    5            white croaker  2.6749604832
## 11760    Benthopelagic    3        spotted sand bass  2.7401068344
## 11761    Benthopelagic   20            white croaker  3.0799493208
## 11762         Midwater    1         shiner surfperch  3.2860197793
## 11763          Benthic   20         hornyhead turbot  2.9791195711
## 11764          Benthic    1           spotted turbot  3.1007939038
## 11765          Benthic   23         hornyhead turbot  2.9143102834
## 11766    Benthopelagic   14       vermilion rockfish  2.9520877303
## 11767          Pelagic    5             market squid  3.2880834630
## 11768    Benthopelagic    8            white croaker  3.1299626760
## 11769          Pelagic    5             market squid  3.1042982226
## 11770    Benthopelagic    5       vermilion rockfish  3.1129016649
## 11771    Benthopelagic   11            white croaker  3.2539053522
## 11772          Benthic    3           diamond turbot  2.8036320030
## 11773          Pelagic   21         northern anchovy  3.2048883352
## 11774          Benthic    8         hornyhead turbot  2.5717616696
## 11775    Benthopelagic    4         barred sand bass  3.0035192135
## 11776         Midwater    3                jacksmelt  3.0916337081
## 11777         Midwater   21                kelp bass  2.8139960490
## 11778    Benthopelagic   11        yellowfin croaker  3.0055676166
## 11779         Midwater    8                kelp bass  3.1703698335
## 11780    Benthopelagic    9       vermilion rockfish  3.2874155070
## 11781         Midwater   21                kelp bass  3.1715554510
## 11782    Benthopelagic    1         barred surfperch  2.9383389466
## 11783         Midwater   11                top smelt  2.5388316095
## 11784    Benthopelagic    5            white croaker  2.8036773811
## 11785    Benthopelagic    4         barred surfperch  2.8216437916
## 11786    Benthopelagic   21        yellowfin croaker  3.3884453828
## 11787    Benthopelagic    5         barred sand bass  2.8791511226
## 11788          Pelagic   21            chub mackerel  2.7942670444
## 11789         Midwater   21                kelp bass  2.8672621789
## 11790    Benthopelagic    8            white croaker  3.0379887291
## 11791          Pelagic   21            chub mackerel  2.9896995463
## 11792    Benthopelagic   16        speckled rockfish  3.4396329658
## 11793    Benthopelagic    5         barred sand bass  3.0431513293
## 11794          Pelagic   21           slough anchovy  2.6953485578
## 11795    Benthopelagic   11            rosy rockfish  3.0350334427
## 11796          Benthic    4           diamond turbot  2.9949948092
## 11797          Benthic   16  california scorpionfish  3.2122211945
## 11798    Benthopelagic   20       vermilion rockfish  3.0869788919
## 11799         Midwater   20                kelp bass  2.9312192818
## 11800         Midwater   21                kelp bass  2.8866371994
## 11801          Benthic   13         hornyhead turbot  2.7486520810
## 11802          Pelagic   21            chub mackerel  3.1641360163
## 11803    Benthopelagic   14       vermilion rockfish  2.9089689315
## 11804         Midwater    5                kelp bass  3.0275075002
## 11805          Benthic   10  california scorpionfish  2.5186222139
## 11806    Benthopelagic    5         barred sand bass  3.5120576044
## 11807         Midwater    4                kelp bass  2.4787175335
## 11808    Benthopelagic    1        yellowfin croaker  2.7923267777
## 11809    Benthopelagic   10           brown rockfish  2.8465145026
## 11810          Benthic    5          longfin sanddab  2.8986893314
## 11811    Benthopelagic    3        yellowfin croaker  3.0765619851
## 11812    Benthopelagic   11            white croaker  2.6719648079
## 11813         Midwater   20                kelp bass  3.3022149271
## 11814          Benthic    5       california halibut  2.9922535304
## 11815          Pelagic    5          pacific sardine  2.8271267178
## 11816         Midwater   21                kelp bass  2.9073919143
## 11817    Benthopelagic    8            white croaker  2.9158161987
## 11818    Benthopelagic    3       california corbina  3.2977300486
## 11819    Benthopelagic    4        spotted sand bass  3.0071519029
## 11820          Benthic   10  california scorpionfish  2.9145125081
## 11821          Benthic    5  california scorpionfish  3.1703308835
## 11822         Midwater   11                top smelt  2.9517181814
## 11823    Benthopelagic   17            white croaker  2.9516341643
## 11824    Benthopelagic    5            white croaker  3.0905630924
## 11825          Pelagic   21         northern anchovy  3.1275716425
## 11826          Pelagic    5          pacific sardine  3.1102493364
## 11827    Benthopelagic    1       california corbina  2.7383605524
## 11828         Midwater    5                kelp bass  3.2223846768
## 11829    Benthopelagic   20            white croaker  2.8104148782
## 11830    Benthopelagic    3            rosy rockfish  2.8324157603
## 11831    Benthopelagic   21        yellowfin croaker  3.3069639968
## 11832    Benthopelagic    1         barred surfperch  2.8963400157
## 11833    Benthopelagic   14         barred sand bass  2.9701985696
## 11834    Benthopelagic    5       vermilion rockfish  2.7878985765
## 11835         Midwater   21                kelp bass  2.8735489007
## 11836    Benthopelagic    3           pile surfperch  2.9081293332
## 11837    Benthopelagic   19       vermilion rockfish  2.9802828432
## 11838          Pelagic    5            chub mackerel  2.8330449407
## 11839         Midwater   21                kelp bass  2.8472686740
## 11840         Midwater    5                queenfish  3.1741350567
## 11841    Benthopelagic   11            white croaker  3.0628148055
## 11842          Benthic    1           diamond turbot  2.7649352269
## 11843          Benthic   22         hornyhead turbot  3.0684738248
## 11844         Midwater    5                kelp bass  2.8965371103
## 11845    Benthopelagic   21          spotfin croaker  3.0833107094
## 11846          Pelagic    5            chub mackerel  2.8023018774
## 11847    Benthopelagic    5       vermilion rockfish  2.7323853312
## 11848    Benthopelagic    1         barred surfperch  3.1281901741
## 11849    Benthopelagic   11            white croaker  2.6474258510
## 11850    Benthopelagic    4         barred sand bass  2.9945363639
## 11851    Benthopelagic   17       vermilion rockfish  3.5860583327
## 11852    Benthopelagic   11          white surfperch  2.8835737298
## 11853    Benthopelagic    8          copper rockfish  3.0917505143
## 11854         Midwater   11            kelp rockfish  2.9640208266
## 11855    Benthopelagic    5            white croaker  2.9397701875
## 11856    Benthopelagic    4         barred surfperch  2.9576156237
## 11857    Benthopelagic    4       california corbina  2.9217984687
## 11858          Benthic   20       california halibut  3.0527392325
## 11859          Benthic    3           diamond turbot  3.4522048428
## 11860    Benthopelagic   12         barred sand bass  3.0191552390
## 11861         Midwater    1                 halfmoon  3.0118767008
## 11862    Benthopelagic   13       vermilion rockfish  3.2895540829
## 11863          Pelagic    5        pacific barracuda  3.0209117178
## 11864    Benthopelagic    3              black perch  2.9207361138
## 11865          Pelagic   21            chub mackerel  2.7545671428
## 11866    Benthopelagic   14            white croaker  3.0962089046
## 11867    Benthopelagic   24       vermilion rockfish  2.9937420756
## 11868    Benthopelagic   20       california corbina  2.8034299338
## 11869    Benthopelagic   21         barred sand bass  3.1467562400
## 11870    Benthopelagic   11            white croaker  3.0214202551
## 11871         Midwater   21                kelp bass  2.9922751035
## 11872         Midwater    1         shiner surfperch  3.3167515367
## 11873         Midwater    5         shiner surfperch  3.1241760624
## 11874    Benthopelagic   11           brown rockfish  2.9931943083
## 11875    Benthopelagic    5         barred sand bass  2.8432294546
## 11876          Pelagic    5          pacific sardine  3.1574056019
## 11877          Benthic   16         hornyhead turbot  3.0384033469
## 11878         Midwater    1         shiner surfperch  3.3419680164
## 11879    Benthopelagic    5                  opaleye  3.1704347532
## 11880    Benthopelagic   20            white croaker  2.8706016622
## 11881    Benthopelagic   21            white croaker  3.0076367882
## 11882    Benthopelagic   11          spotfin croaker  3.1271398631
## 11883          Benthic   22  california scorpionfish  3.1050415864
## 11884          Pelagic    5          pacific sardine  3.1516075577
## 11885    Benthopelagic    1                  opaleye  3.0622454315
## 11886         Midwater    1         shiner surfperch  2.5072399479
## 11887    Benthopelagic   11         barred surfperch  2.6242891269
## 11888         Midwater   11         shiner surfperch  2.7370888903
## 11889    Benthopelagic   12            white croaker  3.4403613828
## 11890         Midwater   21                queenfish  2.7944654697
## 11891          Benthic    4    shovelnose guitarfish  2.9221644935
## 11892    Benthopelagic   21         barred sand bass  3.0741597551
## 11893    Benthopelagic   10            white croaker  2.9097340951
## 11894    Benthopelagic    1       california corbina  2.9688546355
## 11895    Benthopelagic   11            white croaker  2.8954046320
## 11896         Midwater   11                kelp bass  3.0547712414
## 11897    Benthopelagic    3        spotted sand bass  3.0216760044
## 11898    Benthopelagic    3          copper rockfish  3.2350613486
## 11899          Pelagic   11            chub mackerel  3.3988791425
## 11900          Pelagic    5             market squid  2.8109609991
## 11901          Pelagic   11            chub mackerel  3.1045514656
## 11902          Pelagic   21            chub mackerel  2.9999153555
## 11903          Benthic   22  california scorpionfish  3.0002046882
## 11904         Midwater    4         shiner surfperch  2.6295931768
## 11905          Benthic   18  california scorpionfish  2.9503175756
## 11906    Benthopelagic    5                  opaleye  3.0886804945
## 11907         Midwater   21                queenfish  2.6424079807
## 11908    Benthopelagic    5          copper rockfish  3.4744887803
## 11909    Benthopelagic   11         barred sand bass  2.8630172982
## 11910    Benthopelagic   21        spotted sand bass  3.2036484657
## 11911    Benthopelagic   22            white croaker  3.0460803471
## 11912          Pelagic    5         northern anchovy  3.0775665433
## 11913    Benthopelagic   21            leopard shark  3.2749300805
## 11914         Midwater   11         shiner surfperch  2.8649187716
## 11915    Benthopelagic   21            white croaker  3.0022109122
## 11916          Benthic    5       california halibut  2.7827443409
## 11917         Midwater   11                kelp bass  2.9217169266
## 11918         Midwater   18                kelp bass  3.0725159808
## 11919    Benthopelagic    5            white croaker  2.8183459796
## 11920    Benthopelagic    1         barred surfperch  3.0779391066
## 11921    Benthopelagic   20            white croaker  3.2953550908
## 11922    Benthopelagic    4 brown smooth-hound shark  3.3599446424
## 11923    Benthopelagic   11         barred sand bass  2.9494578573
## 11924          Benthic   15         hornyhead turbot  2.8680790961
## 11925          Benthic    5  california scorpionfish  3.1771978684
## 11926    Benthopelagic   14       vermilion rockfish  3.1107836774
## 11927          Pelagic    5             market squid  2.9125898457
## 11928    Benthopelagic    5            black croaker  2.8576558751
## 11929    Benthopelagic    1         barred surfperch  2.9009047416
## 11930         Midwater    2        walleye surfperch  3.3042228875
## 11931    Benthopelagic   16       vermilion rockfish  3.2355205318
## 11932          Pelagic    4            chub mackerel  3.0238865059
## 11933    Benthopelagic    1        yellowfin croaker  2.9723639069
## 11934         Midwater    5                kelp bass  3.1929227102
## 11935    Benthopelagic    6          copper rockfish  2.9433682055
## 11936          Benthic    9         hornyhead turbot  2.9374239017
## 11937    Benthopelagic   13           brown rockfish  2.8054759432
## 11938    Benthopelagic    4            white croaker  2.9638076382
## 11939    Benthopelagic   21        spotted sand bass  2.5919169191
## 11940          Pelagic    6             market squid  2.9289851862
## 11941    Benthopelagic   11            white croaker  3.3657755138
## 11942    Benthopelagic   16       vermilion rockfish  2.6360971316
## 11943          Benthic    5           diamond turbot  3.3239720731
## 11944         Midwater    5                kelp bass  2.9188957178
## 11945    Benthopelagic    3        rainbow surfperch  3.2083340105
## 11946          Benthic   21       california halibut  3.1226398276
## 11947    Benthopelagic   21            white croaker  2.8873109495
## 11948    Benthopelagic   11          white surfperch  2.6791325505
## 11949    Benthopelagic    4        yellowfin croaker  3.0310770337
## 11950          Pelagic    5         northern anchovy  3.3584866697
## 11951          Pelagic   21         northern anchovy  3.1691061662
## 11952    Benthopelagic   21        yellowfin croaker  2.9588731992
## 11953    Benthopelagic   13       vermilion rockfish  2.9529830265
## 11954    Benthopelagic   11         barred sand bass  3.4064217919
## 11955    Benthopelagic    1       california corbina  2.7376775262
## 11956    Benthopelagic    5       vermilion rockfish  2.5833123539
## 11957         Midwater    1                 halfmoon  2.9308857438
## 11958    Benthopelagic   23          starry rockfish  2.9350108624
## 11959    Benthopelagic    9          copper rockfish  2.7625631533
## 11960    Benthopelagic    5            white croaker  3.1378025309
## 11961    Benthopelagic   12         barred sand bass  3.2081324270
## 11962    Benthopelagic   23            white croaker  2.7061949229
## 11963          Pelagic    5            chub mackerel  3.0392125296
## 11964         Midwater    4                kelp bass  2.8788045915
## 11965          Pelagic    5         northern anchovy  3.1871291599
## 11966    Benthopelagic    1        spotted sand bass  3.1813014918
## 11967          Benthic   16         hornyhead turbot  3.0914031227
## 11968         Midwater   11                kelp bass  3.0075438110
## 11969          Pelagic   21            chub mackerel  3.0022204926
## 11970    Benthopelagic    1          ocean whitefish  3.1401156781
## 11971    Benthopelagic    1       california corbina  3.0781759369
## 11972    Benthopelagic   21        spotted sand bass  3.2136481808
## 11973          Pelagic    5          pacific sardine  3.0529640266
## 11974    Benthopelagic    4                  opaleye  3.6099640287
## 11975          Pelagic    6          pacific sardine  2.5090274433
## 11976          Pelagic   11            chub mackerel  2.9880220360
## 11977         Midwater   21                kelp bass  3.2033504864
## 11978    Benthopelagic    1     california sheephead  2.8057342098
## 11979         Midwater   10                kelp bass  3.0713555992
## 11980    Benthopelagic   13            white croaker  3.1586964197
## 11981          Pelagic    5            chub mackerel  2.9654294332
## 11982          Benthic   15         hornyhead turbot  3.0500073666
## 11983    Benthopelagic   24          starry rockfish  3.2355680409
## 11984    Benthopelagic   14       vermilion rockfish  3.0313756475
## 11985    Benthopelagic   22            white croaker  2.8527603054
## 11986          Benthic    5    shovelnose guitarfish  3.2218547796
## 11987          Benthic   12  california scorpionfish  2.9954135376
## 11988    Benthopelagic   11   gray smoothhound shark  3.3406482808
## 11989    Benthopelagic    3        rainbow surfperch  3.0688628099
## 11990    Benthopelagic    1                  opaleye  2.8203320974
## 11991          Pelagic    5             market squid  2.8898261892
## 11992          Pelagic    4            chub mackerel  3.0366765935
## 11993          Pelagic    5          pacific sardine  3.1326272086
## 11994    Benthopelagic   15            white croaker  2.7938921159
## 11995          Pelagic    5             market squid  3.1033497761
## 11996          Pelagic   21            chub mackerel  3.1945364594
## 11997    Benthopelagic   11           brown rockfish  2.8538094115
## 11998    Benthopelagic   20        yellowfin croaker  2.6557041911
## 11999    Benthopelagic   22         barred sand bass  3.1456982645
## 12000          Pelagic    5          pacific sardine  3.1053609538
## 12001          Benthic   13         hornyhead turbot  4.7452145424
## 12002         Midwater   12                kelp bass  4.4762691341
## 12003    Benthopelagic   22            white croaker  4.4705577843
## 12004          Pelagic    6             market squid  4.4754745386
## 12005          Pelagic    5          pacific sardine  4.4841554748
## 12006    Benthopelagic    4       california corbina  4.5600767436
## 12007    Benthopelagic   21        spotted sand bass  4.3110204066
## 12008    Benthopelagic    6    greenspotted rockfish  4.6430257331
## 12009          Pelagic    5             market squid  4.5852269937
## 12010    Benthopelagic    4            white croaker  4.5381635815
## 12011    Benthopelagic    1       california corbina  4.7447949859
## 12012         Midwater    4         shiner surfperch  4.4513910409
## 12013    Benthopelagic   23       vermilion rockfish  4.4800053776
## 12014    Benthopelagic   20       california corbina  4.6571392904
## 12015          Pelagic    5            chub mackerel  4.5461036210
## 12016    Benthopelagic   21         barred sand bass  4.4773336743
## 12017          Benthic    5  california scorpionfish  4.5214604062
## 12018          Pelagic    5             market squid  4.6899738088
## 12019    Benthopelagic   21        yellowfin croaker  4.5701542632
## 12020          Benthic    5          longfin sanddab  4.4783854879
## 12021    Benthopelagic    5       vermilion rockfish  4.5906256711
## 12022         Midwater   13     chilipepper rockfish  4.7420929669
## 12023    Benthopelagic    4        yellowfin croaker  4.5914890985
## 12024    Benthopelagic   21        yellowfin croaker  4.5152771986
## 12025    Benthopelagic    1        yellowfin croaker  4.5465446431
## 12026    Benthopelagic    3                  opaleye  4.3766554027
## 12027    Benthopelagic   11        yellowfin croaker  4.6813603309
## 12028          Benthic   15         hornyhead turbot  4.4950312526
## 12029         Midwater    3         shiner surfperch  4.2968303724
## 12030    Benthopelagic    3        spotted sand bass  4.5479999578
## 12031          Benthic   13         hornyhead turbot  4.5248161515
## 12032    Benthopelagic    7       vermilion rockfish  4.5048564811
## 12033         Midwater    3                kelp bass  4.3728553658
## 12034    Benthopelagic   22       vermilion rockfish  4.7117897181
## 12035    Benthopelagic   11          gopher rockfish  4.5879278273
## 12036    Benthopelagic    4         barred sand bass  4.5386421480
## 12037    Benthopelagic    5         barred sand bass  4.5836664349
## 12038         Midwater   10                kelp bass  4.5475920381
## 12039          Benthic    4    california lizardfish  4.5199425195
## 12040    Benthopelagic    8            white croaker  4.7177769666
## 12041         Midwater   11         shiner surfperch  4.4376016585
## 12042    Benthopelagic    1     california sheephead  4.4882087142
## 12043    Benthopelagic    5            white croaker  4.5383452873
## 12044    Benthopelagic   11            white croaker  4.5339115163
## 12045          Benthic    1           diamond turbot  4.7260102613
## 12046    Benthopelagic    6       vermilion rockfish  4.3870438934
## 12047          Pelagic   21            chub mackerel  4.6250215603
## 12048         Midwater    4           striped mullet  4.4395569415
## 12049          Benthic   19  california scorpionfish  4.5157779570
## 12050         Midwater    1         shiner surfperch  4.6246905505
## 12051    Benthopelagic   11         barred surfperch  4.5565717903
## 12052    Benthopelagic   11        spotted sand bass  4.5309563969
## 12053          Pelagic    5            chub mackerel  4.3568899292
## 12054          Pelagic    5            chub mackerel  4.5800330638
## 12055    Benthopelagic   11            white croaker  4.5822224383
## 12056    Benthopelagic    5           brown rockfish  4.4980127483
## 12057         Midwater    4           striped mullet  4.6518941199
## 12058         Midwater   21                kelp bass  4.3621563753
## 12059    Benthopelagic   21        yellowfin croaker  4.5497219018
## 12060    Benthopelagic    1         barred surfperch  4.3405000872
## 12061    Benthopelagic   14          starry rockfish  4.6464321246
## 12062    Benthopelagic   11 brown smooth-hound shark  4.5678789016
## 12063    Benthopelagic   11           brown rockfish  4.5350068973
## 12064         Midwater    1        walleye surfperch  4.3765778812
## 12065    Benthopelagic   20              black perch  4.4432061830
## 12066          Benthic   10  california scorpionfish  4.6917772639
## 12067         Midwater   22                kelp bass  4.5269128487
## 12068    Benthopelagic    1        rainbow surfperch  4.4748804290
## 12069         Midwater   24      squarespot rockfish  4.4707033144
## 12070    Benthopelagic   21        yellowfin croaker  4.4912255395
## 12071    Benthopelagic   11       vermilion rockfish  4.6192023658
## 12072    Benthopelagic   11         barred sand bass  4.5134248447
## 12073          Benthic   22  california scorpionfish  4.5305756421
## 12074    Benthopelagic    1                  opaleye  4.4917445526
## 12075    Benthopelagic   21          white surfperch  4.4332827988
## 12076         Midwater    4           striped mullet  4.7617549322
## 12077          Pelagic   21            chub mackerel  4.5710284320
## 12078    Benthopelagic   22       vermilion rockfish  4.4638695372
## 12079    Benthopelagic   13            white croaker  4.5605083298
## 12080          Benthic    8  california scorpionfish  4.5494782968
## 12081    Benthopelagic    5       vermilion rockfish  4.5954240896
## 12082    Benthopelagic    3        rainbow surfperch  4.4233576520
## 12083    Benthopelagic    9   greenblotched rockfish  4.6148109265
## 12084          Pelagic   21            chub mackerel  4.4166294940
## 12085    Benthopelagic    5            white croaker  4.5029593973
## 12086          Pelagic   21            chub mackerel  4.4142224980
## 12087          Pelagic    5          pacific sardine  4.5114213129
## 12088         Midwater   12                kelp bass  4.5288815651
## 12089    Benthopelagic   11         barred sand bass  4.4336849131
## 12090          Benthic    8         hornyhead turbot  4.5341056474
## 12091          Benthic    4           spotted turbot  4.5764751875
## 12092          Benthic    5  california scorpionfish  4.5853090516
## 12093         Midwater   21                kelp bass  4.6996271144
## 12094    Benthopelagic    1       california corbina  4.5740782046
## 12095          Pelagic   21            chub mackerel  4.5477444740
## 12096          Benthic    3           diamond turbot  4.5399118910
## 12097          Pelagic   11            chub mackerel  4.7368507356
## 12098    Benthopelagic    9   greenblotched rockfish  4.5863771351
## 12099    Benthopelagic    5            white croaker  4.5893630411
## 12100    Benthopelagic    4        yellowfin croaker  4.5326184739
## 12101         Midwater    7      squarespot rockfish  4.4875426524
## 12102    Benthopelagic   15        speckled rockfish  4.6187333237
## 12103    Benthopelagic   11          white surfperch  4.8587568421
## 12104    Benthopelagic   13       vermilion rockfish  4.7934044104
## 12105    Benthopelagic    2        spotted sand bass  4.5145056643
## 12106    Benthopelagic   15       vermilion rockfish  4.4955518672
## 12107    Benthopelagic   13            white croaker  4.6417050724
## 12108    Benthopelagic    1              black perch  4.5970906989
## 12109    Benthopelagic    8         barred sand bass  4.6235640681
## 12110          Pelagic   11            chub mackerel  4.5355018280
## 12111          Pelagic    6             market squid  4.5024360865
## 12112    Benthopelagic   10            white croaker  4.8156979054
## 12113          Benthic    4           spotted turbot  4.3936510147
## 12114         Midwater   11                kelp bass  4.6481128468
## 12115    Benthopelagic    1              black perch  4.4733443854
## 12116    Benthopelagic   21            white croaker  4.6154854190
## 12117    Benthopelagic   20       california corbina  4.5912747596
## 12118    Benthopelagic   11              black perch  4.5163827729
## 12119          Pelagic   21            chub mackerel  4.4873162368
## 12120    Benthopelagic    1        yellowfin croaker  4.5211530191
## 12121    Benthopelagic   10           brown rockfish  4.3410916610
## 12122          Pelagic   11            chub mackerel  4.5709011321
## 12123    Benthopelagic   11          gopher rockfish  4.6309723375
## 12124    Benthopelagic   21        spotted sand bass  4.4950745349
## 12125    Benthopelagic   23       vermilion rockfish  4.3390122653
## 12126          Pelagic    5            chub mackerel  4.5955794253
## 12127         Midwater    3         shiner surfperch  4.3318307268
## 12128         Midwater   11         shiner surfperch  4.6315877183
## 12129    Benthopelagic   20         barred surfperch  4.4741628886
## 12130    Benthopelagic    3         barred surfperch  4.4657887432
## 12131    Benthopelagic   21        yellowfin croaker  4.3440003421
## 12132    Benthopelagic    5       california corbina  4.5281617847
## 12133    Benthopelagic    5            white croaker  4.5659771086
## 12134          Pelagic    5             market squid  4.3138213643
## 12135    Benthopelagic   17            white croaker  4.6461527253
## 12136    Benthopelagic   20         barred sand bass  4.5524242930
## 12137    Benthopelagic    3              black perch  4.5348076992
## 12138    Benthopelagic   11            white croaker  4.4734183238
## 12139    Benthopelagic    5                  opaleye  4.5747368971
## 12140    Benthopelagic    5            white croaker  4.6183184717
## 12141         Midwater   21                kelp bass  4.5751443874
## 12142    Benthopelagic   23       vermilion rockfish  4.7328794979
## 12143    Benthopelagic    4       california corbina  4.5181635756
## 12144    Benthopelagic   11              black perch  4.4884151632
## 12145    Benthopelagic    5                  opaleye  4.6080684526
## 12146    Benthopelagic    5            white croaker  4.5301524393
## 12147    Benthopelagic   11        spotted sand bass  4.5707066878
## 12148          Pelagic   21            chub mackerel  4.3943783342
## 12149          Pelagic    5         northern anchovy  4.4948082902
## 12150    Benthopelagic    3        spotted sand bass  4.4331778553
## 12151    Benthopelagic   20           pile surfperch  4.5614941391
## 12152          Pelagic    5         northern anchovy  4.4441229443
## 12153          Benthic   11         hornyhead turbot  4.5340903577
## 12154    Benthopelagic   11            black croaker  4.1721031647
## 12155    Benthopelagic    1          white surfperch  4.7387573404
## 12156    Benthopelagic   11         barred sand bass  4.6353586321
## 12157    Benthopelagic   14            white croaker  4.5760530928
## 12158    Benthopelagic    3       california corbina  4.4425885791
## 12159          Pelagic    5            chub mackerel  4.4815603394
## 12160    Benthopelagic   12            white croaker  4.5391510212
## 12161    Benthopelagic    1        yellowfin croaker  4.3605120014
## 12162    Benthopelagic   22          starry rockfish  4.4509668828
## 12163    Benthopelagic    5                  opaleye  4.7879427621
## 12164          Pelagic   11            chub mackerel  4.5339849597
## 12165    Benthopelagic   22            white croaker  4.2904142538
## 12166    Benthopelagic   17        speckled rockfish  4.6738999522
## 12167    Benthopelagic   11         barred sand bass  4.4390542155
## 12168    Benthopelagic   21        spotted sand bass  4.6563358721
## 12169    Benthopelagic    1        spotted sand bass  4.6324918963
## 12170    Benthopelagic    4           pile surfperch  4.6213383394
## 12171    Benthopelagic    5                  opaleye  4.4656873521
## 12172         Midwater    2                kelp bass  4.4294184777
## 12173    Benthopelagic   10              black perch  4.4563028028
## 12174          Pelagic    5          pacific sardine  4.3989659546
## 12175         Midwater    1         shiner surfperch  4.6285526569
## 12176    Benthopelagic    1         barred surfperch  4.4972511359
## 12177    Benthopelagic    2            white croaker  4.5821009429
## 12178    Benthopelagic    1            white croaker  4.7572991211
## 12179    Benthopelagic    5         barred sand bass  4.5103438286
## 12180    Benthopelagic   24       vermilion rockfish  4.5614633251
## 12181         Midwater    3          canary rockfish  4.4439876058
## 12182    Benthopelagic   18            white croaker  4.6593170795
## 12183    Benthopelagic    7           brown rockfish  4.5317670384
## 12184         Midwater    5                queenfish  4.4501773591
## 12185          Benthic    1           diamond turbot  4.4360117620
## 12186    Benthopelagic    1            white croaker  4.6845204717
## 12187          Pelagic    5             market squid  4.6296575869
## 12188          Pelagic    5             market squid  4.5620887512
## 12189    Benthopelagic    3        spotted sand bass  4.5448816831
## 12190          Pelagic    5             market squid  4.6249023768
## 12191         Midwater   11                kelp bass  4.5781701400
## 12192          Benthic    5       california halibut  4.8148768852
## 12193          Benthic   19         hornyhead turbot  4.5234068522
## 12194          Pelagic    5         northern anchovy  4.4957311281
## 12195         Midwater   21                kelp bass  4.6384816872
## 12196          Pelagic   21            chub mackerel  4.5427256600
## 12197         Midwater    1                queenfish  4.5350110355
## 12198    Benthopelagic    3        spotted sand bass  4.6810480892
## 12199    Benthopelagic   14    greenspotted rockfish  4.5294690959
## 12200    Benthopelagic    5            white croaker  4.5673305047
## 12201    Benthopelagic   10   greenblotched rockfish  4.7539060362
## 12202    Benthopelagic    5                  opaleye  4.5546874308
## 12203    Benthopelagic    1            white croaker  4.4230133657
## 12204          Pelagic    5          pacific sardine  4.4622100832
## 12205         Midwater    1            blue rockfish  4.6410362590
## 12206         Midwater   21                kelp bass  4.3740078628
## 12207    Benthopelagic    3         barred sand bass  4.6170263091
## 12208          Pelagic   21            chub mackerel  4.5817231770
## 12209    Benthopelagic    4                  opaleye  4.5557817631
## 12210    Benthopelagic    1     california sheephead  4.6550618627
## 12211    Benthopelagic   11              black perch  4.6414236554
## 12212    Benthopelagic    1        yellowfin croaker  4.4017238730
## 12213    Benthopelagic   18              black perch  4.6477905276
## 12214    Benthopelagic    1        yellowfin croaker  4.5108242544
## 12215    Benthopelagic   21        spotted sand bass  4.5311272127
## 12216    Benthopelagic    5                  opaleye  4.7233240389
## 12217    Benthopelagic   12       vermilion rockfish  4.4737781075
## 12218    Benthopelagic   18       vermilion rockfish  4.4847683715
## 12219    Benthopelagic    3              black perch  4.4927232590
## 12220         Midwater    3                kelp bass  4.2978446590
## 12221    Benthopelagic   12            white croaker  4.5129522955
## 12222         Midwater   21                kelp bass  4.6529961166
## 12223         Midwater    4         shiner surfperch  4.7661669824
## 12224    Benthopelagic   11          gopher rockfish  4.8956349978
## 12225    Benthopelagic    3       vermilion rockfish  4.6944253025
## 12226    Benthopelagic   14         barred sand bass  4.5664996299
## 12227         Midwater   21                kelp bass  4.4816762028
## 12228         Midwater    1                queenfish  4.5426628657
## 12229    Benthopelagic   22          starry rockfish  4.5366430188
## 12230    Benthopelagic   20            white croaker  4.4893206003
## 12231    Benthopelagic    4       california corbina  4.4479548074
## 12232    Benthopelagic    8              black perch  4.6758890428
## 12233          Benthic   20         hornyhead turbot  4.4100759957
## 12234         Midwater   21                kelp bass  4.4547981489
## 12235    Benthopelagic    4              black perch  4.3725785700
## 12236    Benthopelagic    4            white croaker  4.7156153109
## 12237    Benthopelagic    4              black perch  4.6640869672
## 12238    Benthopelagic   21        yellowfin croaker  4.5393911347
## 12239    Benthopelagic    1                  opaleye  4.7199050436
## 12240          Benthic   21         hornyhead turbot  4.4476041493
## 12241    Benthopelagic    4         barred surfperch  4.4947883687
## 12242         Midwater   11                kelp bass  4.6477826029
## 12243          Pelagic    5             market squid  4.4249813468
## 12244          Benthic    1           diamond turbot  4.5784647919
## 12245    Benthopelagic    1            white croaker  4.3680058443
## 12246    Benthopelagic    4              black perch  4.6319924316
## 12247          Pelagic    6             market squid  4.5969954603
## 12248    Benthopelagic   11            white croaker  4.4623006529
## 12249    Benthopelagic    9            white croaker  4.7039058591
## 12250          Pelagic   21         northern anchovy  4.4690036155
## 12251    Benthopelagic   11           brown rockfish  4.6238611123
## 12252    Benthopelagic   11          ocean whitefish  4.4522853694
## 12253          Benthic   17         hornyhead turbot  4.6633630580
## 12254          Benthic   11  california scorpionfish  4.4733565539
## 12255          Benthic   20           diamond turbot  4.6535443454
## 12256    Benthopelagic    4        spotted sand bass  4.4705833999
## 12257         Midwater   11           olive rockfish  4.6507658541
## 12258    Benthopelagic    1              black perch  4.5929147826
## 12259    Benthopelagic    5            white croaker  4.5368620476
## 12260          Pelagic    5         northern anchovy  4.5147637112
## 12261    Benthopelagic   11        yellowfin croaker  4.5109047555
## 12262         Midwater   16                kelp bass  4.5781777619
## 12263    Benthopelagic   11            white croaker  4.5560995755
## 12264    Benthopelagic   11              black perch  4.4964900863
## 12265         Midwater   18                kelp bass  4.4192768646
## 12266    Benthopelagic    3              black perch  4.5532182463
## 12267         Midwater    1                kelp bass  4.5054450510
## 12268    Benthopelagic   15            white croaker  4.5558933298
## 12269    Benthopelagic   22         barred sand bass  4.5909330226
## 12270    Benthopelagic    1            white croaker  4.6095958540
## 12271    Benthopelagic   21        yellowfin croaker  4.4336801022
## 12272          Benthic    5  california scorpionfish  4.6061996959
## 12273          Pelagic   21            chub mackerel  4.5555184069
## 12274          Benthic    1           spotted turbot  4.4659447276
## 12275    Benthopelagic   11          gopher rockfish  4.5690480123
## 12276    Benthopelagic    1            white croaker  4.6550978322
## 12277    Benthopelagic    5       california corbina  4.5339694549
## 12278    Benthopelagic    1              black perch  4.4829882215
## 12279    Benthopelagic   11          spotfin croaker  4.6372587523
## 12280    Benthopelagic    8          copper rockfish  4.5459853416
## 12281    Benthopelagic    4        yellowfin croaker  4.4730206443
## 12282    Benthopelagic   12            white croaker  4.4274762689
## 12283         Midwater    8      yellowtail rockfish  4.6390885129
## 12284         Midwater    3                kelp bass  4.4630746559
## 12285    Benthopelagic    5          spotfin croaker  4.7770348336
## 12286          Pelagic    5          pacific sardine  4.7296206287
## 12287          Benthic    5  california scorpionfish  4.2346151623
## 12288    Benthopelagic    3         barred surfperch  4.5292538892
## 12289          Pelagic    6          pacific sardine  4.4966185145
## 12290    Benthopelagic   11       vermilion rockfish  4.5708665466
## 12291          Pelagic    5         northern anchovy  4.3961274816
## 12292          Pelagic   11            chub mackerel  4.4642300045
## 12293          Pelagic   21            chub mackerel  4.5412070818
## 12294         Midwater    5                top smelt  4.5223688900
## 12295         Midwater    2                queenfish  4.5061628468
## 12296    Benthopelagic    4            white croaker  4.4566318717
## 12297    Benthopelagic   18              black perch  4.5558713215
## 12298         Midwater   21                kelp bass  4.4305899005
## 12299    Benthopelagic    4          copper rockfish  4.4474065866
## 12300    Benthopelagic   20              black perch  4.6098166971
## 12301          Benthic    1         speckled sanddab  4.5150348731
## 12302    Benthopelagic   18            white croaker  4.4713401096
## 12303    Benthopelagic   11         barred sand bass  4.4882020536
## 12304    Benthopelagic   11          spotfin croaker  4.6190275035
## 12305          Pelagic   11            chub mackerel  4.5437337273
## 12306          Pelagic    5            chub mackerel  4.6916477293
## 12307          Benthic   18         hornyhead turbot  4.6723238295
## 12308          Benthic   12  california scorpionfish  4.3704287192
## 12309          Benthic    1             fantail sole  4.5471875552
## 12310         Midwater   21                kelp bass  4.6892684825
## 12311    Benthopelagic    3          white surfperch  4.2638911345
## 12312    Benthopelagic   13       vermilion rockfish  4.5680430210
## 12313    Benthopelagic   18            white croaker  4.5425415270
## 12314         Midwater    1         shiner surfperch  4.4597875284
## 12315    Benthopelagic   14            white croaker  4.5970934364
## 12316         Midwater   11                kelp bass  4.7150246827
## 12317          Benthic    5         speckled sanddab  4.6081841487
## 12318          Benthic   17  california scorpionfish  4.6300469099
## 12319    Benthopelagic   21       california corbina  4.4445094198
## 12320          Benthic   11  california scorpionfish  4.6949833698
## 12321          Benthic   17         hornyhead turbot  4.4622676467
## 12322    Benthopelagic   12              black perch  4.5677874342
## 12323    Benthopelagic    1            white croaker  4.4453229447
## 12324    Benthopelagic    5       california corbina  4.6015680748
## 12325    Benthopelagic    4              black perch  4.4499925920
## 12326    Benthopelagic    5            white croaker  4.8427979933
## 12327    Benthopelagic    1            white croaker  4.6784395822
## 12328          Benthic   14         hornyhead turbot  4.3573105849
## 12329          Benthic    4    shovelnose guitarfish  4.3830235870
## 12330         Midwater    1        walleye surfperch  4.6491126128
## 12331         Midwater   18                kelp bass  4.5313278113
## 12332    Benthopelagic    5            white croaker  4.3173476868
## 12333    Benthopelagic    5         barred sand bass  4.4771131047
## 12334         Midwater    2                kelp bass  4.6351280529
## 12335    Benthopelagic   21         barred sand bass  4.5052325088
## 12336    Benthopelagic   12       vermilion rockfish  4.7780316737
## 12337    Benthopelagic    2       quillback rockfish  4.4432312728
## 12338    Benthopelagic   21            white croaker  4.5354816096
## 12339    Benthopelagic   16       vermilion rockfish  4.4198082576
## 12340    Benthopelagic    3              black perch  4.5173898133
## 12341          Benthic    8  california scorpionfish  4.4803783817
## 12342          Pelagic    5          pacific sardine  4.5603880967
## 12343          Benthic    5  california scorpionfish  4.5847049291
## 12344    Benthopelagic    8          copper rockfish  4.5910418468
## 12345          Pelagic    5          pacific sardine  4.5463093729
## 12346    Benthopelagic    2            white croaker  4.3856897787
## 12347    Benthopelagic    1            white croaker  4.5850161822
## 12348    Benthopelagic   21            leopard shark  4.5978703938
## 12349    Benthopelagic   14              black perch  4.5253311474
## 12350    Benthopelagic   16       vermilion rockfish  4.4449360053
## 12351    Benthopelagic   10       vermilion rockfish  4.7259427094
## 12352         Midwater   21                kelp bass  4.6540717882
## 12353    Benthopelagic    1            rosy rockfish  4.5974755322
## 12354         Midwater    3         shiner surfperch  4.6074749544
## 12355    Benthopelagic   11            white croaker  4.6763456986
## 12356    Benthopelagic    1         barred surfperch  4.4467179648
## 12357         Midwater    1         shiner surfperch  4.5124887292
## 12358          Pelagic   21            chub mackerel  4.7093207643
## 12359    Benthopelagic   16       vermilion rockfish  4.5386619299
## 12360    Benthopelagic    7        speckled rockfish  4.4657537465
## 12361         Midwater    4         shiner surfperch  4.4963427520
## 12362    Benthopelagic   11       vermilion rockfish  4.6629706904
## 12363          Pelagic    5            chub mackerel  4.5430414779
## 12364         Midwater   14                kelp bass  4.2817828989
## 12365    Benthopelagic    3              black perch  4.6411625245
## 12366    Benthopelagic    5            black croaker  4.4810304823
## 12367         Midwater    5                top smelt  4.4782536912
## 12368         Midwater   11                top smelt  4.3763488030
## 12369          Benthic   10         hornyhead turbot  4.6583284242
## 12370          Pelagic    5             market squid  4.4263192135
## 12371    Benthopelagic   12              black perch  4.4595400662
## 12372    Benthopelagic    1       california corbina  4.5502936638
## 12373    Benthopelagic    3         barred surfperch  4.5820122420
## 12374    Benthopelagic   19       vermilion rockfish  4.6610967946
## 12375    Benthopelagic   15        speckled rockfish  4.6111645236
## 12376          Pelagic    5          pacific sardine  4.5149336817
## 12377    Benthopelagic    4         barred surfperch  4.5795418884
## 12378    Benthopelagic   11              black perch  4.6667918210
## 12379         Midwater   11                kelp bass  4.5805853043
## 12380    Benthopelagic   11         barred surfperch  4.7257942714
## 12381          Pelagic    5         northern anchovy  4.3642028724
## 12382          Pelagic    5          pacific sardine  4.6034699553
## 12383    Benthopelagic   11            white croaker  4.5103616890
## 12384    Benthopelagic   19            white croaker  4.5924924522
## 12385    Benthopelagic    3              black perch  4.3741510518
## 12386    Benthopelagic   19       vermilion rockfish  4.6152359925
## 12387    Benthopelagic   12           brown rockfish  4.5529710198
## 12388    Benthopelagic    6          copper rockfish  4.4522939788
## 12389          Pelagic    5             market squid  4.3957537178
## 12390    Benthopelagic   22              black perch  4.4065994886
## 12391          Benthic   20       california halibut  4.4034733875
## 12392    Benthopelagic    2        spotted sand bass  4.6205858900
## 12393          Benthic    1           diamond turbot  4.4852815814
## 12394          Benthic   23         hornyhead turbot  4.2646326796
## 12395    Benthopelagic    5         barred sand bass  4.6277882930
## 12396          Benthic    4    california lizardfish  4.4591768735
## 12397    Benthopelagic   11 brown smooth-hound shark  4.7187681004
## 12398    Benthopelagic   21            white croaker  4.6044727594
## 12399    Benthopelagic    4            flag rockfish  4.4966800264
## 12400          Benthic   12         hornyhead turbot  4.6021490567
## 12401          Benthic    4    shovelnose guitarfish  6.5100621075
## 12402    Benthopelagic   14            white croaker  6.1703577413
## 12403    Benthopelagic    5     california sheephead  6.3810319773
## 12404          Pelagic    5         northern anchovy  6.4028346980
## 12405    Benthopelagic   20       vermilion rockfish  6.3203699939
## 12406    Benthopelagic    2         barred surfperch  6.3835233098
## 12407         Midwater   17      squarespot rockfish  6.2981229467
## 12408    Benthopelagic   18       vermilion rockfish  6.5802382964
## 12409    Benthopelagic   11            white croaker  6.2420854585
## 12410    Benthopelagic    4         barred sand bass  6.4598576146
## 12411         Midwater    4                top smelt  6.4016517709
## 12412          Benthic   17         hornyhead turbot  6.3833149744
## 12413    Benthopelagic   11            white croaker  6.2845103534
## 12414    Benthopelagic   11         barred surfperch  6.5161616872
## 12415          Pelagic    5             market squid  6.4340958164
## 12416          Benthic   19  california scorpionfish  6.2825868135
## 12417          Pelagic    5             market squid  6.2257828348
## 12418    Benthopelagic   10         barred sand bass  6.6183929604
## 12419          Pelagic   11            chub mackerel  6.5122709403
## 12420    Benthopelagic   11              black perch  6.3770108519
## 12421    Benthopelagic   22              black perch  6.5735279446
## 12422    Benthopelagic   12            white croaker  6.6362504566
## 12423          Benthic    5    shovelnose guitarfish  6.5872714262
## 12424    Benthopelagic   20       california corbina  6.3370947625
## 12425    Benthopelagic    5                  opaleye  6.3526542645
## 12426    Benthopelagic   16       vermilion rockfish  6.1975796385
## 12427    Benthopelagic    1        spotted sand bass  6.6923925222
## 12428    Benthopelagic    3        rainbow surfperch  6.3142167849
## 12429    Benthopelagic   17            white croaker  6.1944920130
## 12430          Benthic   22  california scorpionfish  6.4812201700
## 12431         Midwater   21                kelp bass  6.2588607582
## 12432          Pelagic    5             market squid  6.3065620663
## 12433    Benthopelagic   21            white croaker  6.3142029066
## 12434    Benthopelagic    1        rainbow surfperch  6.4907411550
## 12435    Benthopelagic    4       california corbina  6.3572447325
## 12436          Pelagic   21            chub mackerel  6.3433262227
## 12437    Benthopelagic   20            white croaker  6.4440621346
## 12438          Pelagic    6          pacific sardine  6.4036009241
## 12439         Midwater    4           striped mullet  6.3581536770
## 12440          Pelagic   21            chub mackerel  6.7049226479
## 12441          Benthic    1         speckled sanddab  6.4637146177
## 12442    Benthopelagic   11            white croaker  6.3078464560
## 12443          Benthic    8         hornyhead turbot  6.5482080465
## 12444         Midwater    4         shiner surfperch  6.4286991784
## 12445    Benthopelagic   10       vermilion rockfish  6.5723485157
## 12446    Benthopelagic    1        rainbow surfperch  6.2790795326
## 12447         Midwater   11         shiner surfperch  6.5894102414
## 12448    Benthopelagic    5            leopard shark  6.3407795294
## 12449          Pelagic   21            chub mackerel  6.3658348779
## 12450    Benthopelagic   11              black perch  6.4780145256
## 12451         Midwater    4         shiner surfperch  6.4277718357
## 12452    Benthopelagic   14              black perch  6.3624370445
## 12453         Midwater   11                kelp bass  6.2530055283
## 12454    Benthopelagic   18            white croaker  6.3540994274
## 12455         Midwater    4                top smelt  6.4930310886
## 12456    Benthopelagic    5   gray smoothhound shark  6.2890797429
## 12457    Benthopelagic   23            white croaker  6.5830990363
## 12458          Pelagic   21           slough anchovy  6.3752875059
## 12459         Midwater    1                queenfish  6.6140197925
## 12460    Benthopelagic   21            white croaker  6.2032015169
## 12461         Midwater    1                kelp bass  6.4216119172
## 12462    Benthopelagic   24       vermilion rockfish  6.4412641309
## 12463          Pelagic   21            chub mackerel  6.4317466751
## 12464          Pelagic    5          pacific sardine  6.1022773745
## 12465    Benthopelagic    4       california corbina  6.3342524097
## 12466    Benthopelagic    3       california corbina  6.4819332228
## 12467    Benthopelagic   16              black perch  6.2440347144
## 12468          Pelagic    5          pacific sardine  6.3592027209
## 12469          Pelagic   21            chub mackerel  6.3414973662
## 12470    Benthopelagic   21         barred sand bass  6.4763523772
## 12471          Pelagic    6          pacific sardine  6.5702574324
## 12472    Benthopelagic    5        yellowfin croaker  6.3882794502
## 12473          Benthic    1  california scorpionfish  6.4340150176
## 12474         Midwater    4         shiner surfperch  6.2235672819
## 12475          Benthic    5  california scorpionfish  6.3030098674
## 12476    Benthopelagic    5       california corbina  6.4417728709
## 12477          Benthic   19         hornyhead turbot  6.4320128772
## 12478    Benthopelagic    2              black perch  6.4731660159
## 12479    Benthopelagic   21        spotted sand bass  6.4763433878
## 12480    Benthopelagic    7       vermilion rockfish  6.3914955279
## 12481    Benthopelagic    3              black perch  6.4476019638
## 12482          Pelagic   11            chub mackerel  6.3445598025
## 12483    Benthopelagic   22            white croaker  6.3340062251
## 12484         Midwater    2         shiner surfperch  6.4324887920
## 12485    Benthopelagic   11   gray smoothhound shark  6.3609474522
## 12486    Benthopelagic   19            white croaker  6.1117569657
## 12487    Benthopelagic   11            white croaker  6.3877054756
## 12488    Benthopelagic    5            white croaker  6.4550841435
## 12489    Benthopelagic   21          white surfperch  6.2702231902
## 12490         Midwater    5                 halfmoon  6.5118503153
## 12491         Midwater   10                kelp bass  6.3774604472
## 12492         Midwater    1                kelp bass  6.5331749150
## 12493         Midwater    3         shiner surfperch  6.6113377055
## 12494    Benthopelagic   10            white croaker  6.5459409811
## 12495         Midwater    5                queenfish  6.3626246180
## 12496    Benthopelagic    1            white croaker  6.4218690200
## 12497    Benthopelagic    4              black perch  6.4567092283
## 12498    Benthopelagic    1         barred sand bass  6.4717598984
## 12499         Midwater    5                kelp bass  6.4833137953
## 12500          Pelagic    5          pacific sardine  6.3124862623
## 12501    Benthopelagic   21         barred sand bass  6.4181270237
## 12502    Benthopelagic    4           pile surfperch  6.5286166594
## 12503         Midwater   14                kelp bass  6.5738120187
## 12504    Benthopelagic   16          copper rockfish  6.6717391352
## 12505    Benthopelagic    3        spotted sand bass  6.4947347269
## 12506         Midwater   16                kelp bass  6.3751883380
## 12507         Midwater    4                kelp bass  6.4541503746
## 12508    Benthopelagic   14              black perch  6.5435772827
## 12509          Pelagic    6          pacific sardine  6.3483705743
## 12510    Benthopelagic   11              black perch  6.4224315512
## 12511    Benthopelagic    4           pile surfperch  6.4153879659
## 12512    Benthopelagic    5        yellowfin croaker  6.5604624458
## 12513          Benthic   14         hornyhead turbot  6.3081615389
## 12514          Pelagic    5          pacific sardine  6.4967443759
## 12515          Pelagic   21            chub mackerel  6.4800927242
## 12516         Midwater   21                kelp bass  6.5324154877
## 12517    Benthopelagic   10              black perch  6.4763562026
## 12518         Midwater   21                kelp bass  6.5836119768
## 12519          Pelagic    5          pacific sardine  6.1589323512
## 12520         Midwater    3         shiner surfperch  6.4432261403
## 12521    Benthopelagic    8         barred sand bass  6.2901707075
## 12522    Benthopelagic   11         barred sand bass  6.4049496598
## 12523         Midwater    1        walleye surfperch  6.4972374870
## 12524          Benthic   20  california scorpionfish  6.3333856798
## 12525          Benthic   23         hornyhead turbot  6.4169314836
## 12526          Benthic   19  california scorpionfish  6.3584767073
## 12527    Benthopelagic   12           brown rockfish  6.2626177814
## 12528    Benthopelagic   11          white surfperch  6.3585713040
## 12529    Benthopelagic    5       california corbina  6.3503621890
## 12530    Benthopelagic    4              black perch  6.3433878962
## 12531    Benthopelagic    5            white croaker  6.2336305823
## 12532    Benthopelagic    3        spotted sand bass  6.2241457642
## 12533    Benthopelagic   20            white croaker  6.4635314573
## 12534         Midwater    1         shiner surfperch  6.2052530910
## 12535          Benthic   20         hornyhead turbot  6.4571198552
## 12536          Benthic    1           spotted turbot  6.4363742817
## 12537          Benthic   23         hornyhead turbot  6.2679418236
## 12538    Benthopelagic   14       vermilion rockfish  6.4256001017
## 12539          Pelagic    5             market squid  6.3539842336
## 12540    Benthopelagic    8            white croaker  6.4041095772
## 12541          Pelagic    5             market squid  6.4233906675
## 12542    Benthopelagic    5       vermilion rockfish  6.5972078957
## 12543    Benthopelagic   11            white croaker  6.4411294861
## 12544          Benthic    3           diamond turbot  6.3652456412
## 12545          Pelagic   21         northern anchovy  6.3688666159
## 12546          Benthic    8         hornyhead turbot  6.4844527266
## 12547    Benthopelagic    4         barred sand bass  6.6718419467
## 12548         Midwater    3                jacksmelt  6.3774301537
## 12549         Midwater   21                kelp bass  6.4493736532
## 12550    Benthopelagic   11        yellowfin croaker  6.4142976215
## 12551         Midwater    8                kelp bass  6.4765817536
## 12552    Benthopelagic    9       vermilion rockfish  6.3036315286
## 12553         Midwater   21                kelp bass  6.3294900717
## 12554    Benthopelagic    1         barred surfperch  5.9815687690
## 12555         Midwater   11                top smelt  6.5857123401
## 12556    Benthopelagic    5            white croaker  6.3753474902
## 12557    Benthopelagic    4         barred surfperch  6.3894575497
## 12558    Benthopelagic   21        yellowfin croaker  6.3502367556
## 12559    Benthopelagic    5         barred sand bass  6.4421014405
## 12560          Pelagic   21            chub mackerel  6.4333774926
## 12561         Midwater   21                kelp bass  6.2770104223
## 12562    Benthopelagic    8            white croaker  6.5217427850
## 12563          Pelagic   21            chub mackerel  6.6298950640
## 12564    Benthopelagic   16        speckled rockfish  6.3154006233
## 12565    Benthopelagic    5         barred sand bass  6.2888179441
## 12566          Pelagic   21           slough anchovy  6.6029806029
## 12567    Benthopelagic   11            rosy rockfish  6.3869074203
## 12568          Benthic    4           diamond turbot  6.6141497341
## 12569          Benthic   16  california scorpionfish  6.4834857494
## 12570    Benthopelagic   20       vermilion rockfish  6.3836200309
## 12571         Midwater   20                kelp bass  6.3032040210
## 12572         Midwater   21                kelp bass  6.2013095709
## 12573          Benthic   13         hornyhead turbot  6.3244222260
## 12574          Pelagic   21            chub mackerel  6.2600489436
## 12575    Benthopelagic   14       vermilion rockfish  6.3931776719
## 12576         Midwater    5                kelp bass  6.3568403441
## 12577          Benthic   10  california scorpionfish  6.3851312728
## 12578    Benthopelagic    5         barred sand bass  6.5146602433
## 12579         Midwater    4                kelp bass  6.3076034801
## 12580    Benthopelagic    1        yellowfin croaker  6.3271117852
## 12581    Benthopelagic   10           brown rockfish  6.4446763819
## 12582          Benthic    5          longfin sanddab  6.3583915588
## 12583    Benthopelagic    3        yellowfin croaker  6.4213330280
## 12584    Benthopelagic   11            white croaker  6.3378317728
## 12585         Midwater   20                kelp bass  6.4107317567
## 12586          Benthic    5       california halibut  6.5005644606
## 12587          Pelagic    5          pacific sardine  6.5174396049
## 12588         Midwater   21                kelp bass  6.4409560873
## 12589    Benthopelagic    8            white croaker  6.3196146888
## 12590    Benthopelagic    3       california corbina  6.5255026681
## 12591    Benthopelagic    4        spotted sand bass  6.4255823231
## 12592          Benthic   10  california scorpionfish  6.6107545260
## 12593          Benthic    5  california scorpionfish  6.5685426089
## 12594         Midwater   11                top smelt  6.3333600319
## 12595    Benthopelagic   17            white croaker  6.5409151521
## 12596    Benthopelagic    5            white croaker  6.5034396569
## 12597          Pelagic   21         northern anchovy  6.4423423547
## 12598          Pelagic    5          pacific sardine  6.3973851706
## 12599    Benthopelagic    1       california corbina  6.4584736338
## 12600         Midwater    5                kelp bass  6.4621189486
## 12601    Benthopelagic   20            white croaker  6.4449564835
## 12602    Benthopelagic    3            rosy rockfish  6.4330130956
## 12603    Benthopelagic   21        yellowfin croaker  6.3755388640
## 12604    Benthopelagic    1         barred surfperch  6.2963862966
## 12605    Benthopelagic   14         barred sand bass  6.6330280579
## 12606    Benthopelagic    5       vermilion rockfish  6.2340011210
## 12607         Midwater   21                kelp bass  6.4848778626
## 12608    Benthopelagic    3           pile surfperch  6.5874061404
## 12609    Benthopelagic   19       vermilion rockfish  6.3986546641
## 12610          Pelagic    5            chub mackerel  6.5519328338
## 12611         Midwater   21                kelp bass  6.4270581739
## 12612         Midwater    5                queenfish  6.3791195055
## 12613    Benthopelagic   11            white croaker  6.5076733485
## 12614          Benthic    1           diamond turbot  6.6004359354
## 12615          Benthic   22         hornyhead turbot  6.3645538802
## 12616         Midwater    5                kelp bass  6.5028457180
## 12617    Benthopelagic   21          spotfin croaker  6.4544255428
## 12618          Pelagic    5            chub mackerel  6.2382094796
## 12619    Benthopelagic    5       vermilion rockfish  6.3344247517
## 12620    Benthopelagic    1         barred surfperch  6.3776583311
## 12621    Benthopelagic   11            white croaker  6.3413145597
## 12622    Benthopelagic    4         barred sand bass  6.6806228933
## 12623    Benthopelagic   17       vermilion rockfish  6.3406023809
## 12624    Benthopelagic   11          white surfperch  6.7346289302
## 12625    Benthopelagic    8          copper rockfish  6.4817869610
## 12626         Midwater   11            kelp rockfish  6.5676168195
## 12627    Benthopelagic    5            white croaker  6.4225494622
## 12628    Benthopelagic    4         barred surfperch  6.3484390203
## 12629    Benthopelagic    4       california corbina  6.4208729511
## 12630          Benthic   20       california halibut  6.6316876372
## 12631          Benthic    3           diamond turbot  6.2226154086
## 12632    Benthopelagic   12         barred sand bass  6.5389384172
## 12633         Midwater    1                 halfmoon  6.3151060205
## 12634    Benthopelagic   13       vermilion rockfish  6.3141835117
## 12635          Pelagic    5        pacific barracuda  6.4178456789
## 12636    Benthopelagic    3              black perch  6.5475010015
## 12637          Pelagic   21            chub mackerel  6.3549834514
## 12638    Benthopelagic   14            white croaker  6.2618230552
## 12639    Benthopelagic   24       vermilion rockfish  6.5157859371
## 12640    Benthopelagic   20       california corbina  6.2628857483
## 12641    Benthopelagic   21         barred sand bass  6.2523162066
## 12642    Benthopelagic   11            white croaker  6.5118520686
## 12643         Midwater   21                kelp bass  6.1744827240
## 12644         Midwater    1         shiner surfperch  6.5106260501
## 12645         Midwater    5         shiner surfperch  6.2212622660
## 12646    Benthopelagic   11           brown rockfish  6.5573755541
## 12647    Benthopelagic    5         barred sand bass  6.5941895129
## 12648          Pelagic    5          pacific sardine  6.4336472047
## 12649          Benthic   16         hornyhead turbot  6.4716957270
## 12650         Midwater    1         shiner surfperch  6.3905346983
## 12651    Benthopelagic    5                  opaleye  6.5667063186
## 12652    Benthopelagic   20            white croaker  6.2856017729
## 12653    Benthopelagic   21            white croaker  6.5225326275
## 12654    Benthopelagic   11          spotfin croaker  6.3014016568
## 12655          Benthic   22  california scorpionfish  6.5920050525
## 12656          Pelagic    5          pacific sardine  6.3693060498
## 12657    Benthopelagic    1                  opaleye  6.5926183536
## 12658         Midwater    1         shiner surfperch  6.4206379403
## 12659    Benthopelagic   11         barred surfperch  6.3629218421
## 12660         Midwater   11         shiner surfperch  6.3787209225
## 12661    Benthopelagic   12            white croaker  6.5432445110
## 12662         Midwater   21                queenfish  6.4329272088
## 12663          Benthic    4    shovelnose guitarfish  6.4043522262
## 12664    Benthopelagic   21         barred sand bass  6.4570577564
## 12665    Benthopelagic   10            white croaker  6.3269678645
## 12666    Benthopelagic    1       california corbina  6.4602044283
## 12667    Benthopelagic   11            white croaker  6.2919920966
## 12668         Midwater   11                kelp bass  6.5661020750
## 12669    Benthopelagic    3        spotted sand bass  6.3913296692
## 12670    Benthopelagic    3          copper rockfish  6.3504228028
## 12671          Pelagic   11            chub mackerel  6.4840422687
## 12672          Pelagic    5             market squid  6.5269113789
## 12673          Pelagic   11            chub mackerel  6.2970708931
## 12674          Pelagic   21            chub mackerel  6.4863655994
## 12675          Benthic   22  california scorpionfish  6.4028796984
## 12676         Midwater    4         shiner surfperch  6.3717065672
## 12677          Benthic   18  california scorpionfish  6.2992622759
## 12678    Benthopelagic    5                  opaleye  6.4571711972
## 12679         Midwater   21                queenfish  6.4161812430
## 12680    Benthopelagic    5          copper rockfish  6.4049804573
## 12681    Benthopelagic   11         barred sand bass  6.3428585883
## 12682    Benthopelagic   21        spotted sand bass  6.4608555998
## 12683    Benthopelagic   22            white croaker  6.4240246029
## 12684          Pelagic    5         northern anchovy  6.4600467479
## 12685    Benthopelagic   21            leopard shark  6.5199643383
## 12686         Midwater   11         shiner surfperch  6.7094686137
## 12687    Benthopelagic   21            white croaker  6.2538098888
## 12688          Benthic    5       california halibut  6.2814321238
## 12689         Midwater   11                kelp bass  6.3659467754
## 12690         Midwater   18                kelp bass  6.3155590789
## 12691    Benthopelagic    5            white croaker  6.4502191886
## 12692    Benthopelagic    1         barred surfperch  6.1704986655
## 12693    Benthopelagic   20            white croaker  6.5069643932
## 12694    Benthopelagic    4 brown smooth-hound shark  6.3896081359
## 12695    Benthopelagic   11         barred sand bass  6.2578637780
## 12696          Benthic   15         hornyhead turbot  6.3305141905
## 12697          Benthic    5  california scorpionfish  6.4666379176
## 12698    Benthopelagic   14       vermilion rockfish  6.3059430435
## 12699          Pelagic    5             market squid  6.3050224861
## 12700    Benthopelagic    5            black croaker  6.3987238418
## 12701    Benthopelagic    1         barred surfperch  6.4567269431
## 12702         Midwater    2        walleye surfperch  6.4520043193
## 12703    Benthopelagic   16       vermilion rockfish  6.4382528348
## 12704          Pelagic    4            chub mackerel  6.4794923674
## 12705    Benthopelagic    1        yellowfin croaker  6.3403505209
## 12706         Midwater    5                kelp bass  6.5018841027
## 12707    Benthopelagic    6          copper rockfish  6.4691712617
## 12708          Benthic    9         hornyhead turbot  6.3799204897
## 12709    Benthopelagic   13           brown rockfish  6.3130079935
## 12710    Benthopelagic    4            white croaker  6.4632338373
## 12711    Benthopelagic   21        spotted sand bass  6.1444804368
## 12712          Pelagic    6             market squid  6.4861562395
## 12713    Benthopelagic   11            white croaker  6.4385890255
## 12714    Benthopelagic   16       vermilion rockfish  6.3148043817
## 12715          Benthic    5           diamond turbot  6.4461360869
## 12716         Midwater    5                kelp bass  6.5019327317
## 12717    Benthopelagic    3        rainbow surfperch  6.4707967217
## 12718          Benthic   21       california halibut  6.5090314806
## 12719    Benthopelagic   21            white croaker  6.3127390788
## 12720    Benthopelagic   11          white surfperch  6.4244565585
## 12721    Benthopelagic    4        yellowfin croaker  6.2372445460
## 12722          Pelagic    5         northern anchovy  6.4278823455
## 12723          Pelagic   21         northern anchovy  6.3708263992
## 12724    Benthopelagic   21        yellowfin croaker  6.3121014510
## 12725    Benthopelagic   13       vermilion rockfish  6.4881364003
## 12726    Benthopelagic   11         barred sand bass  6.6892655762
## 12727    Benthopelagic    1       california corbina  6.5395723304
## 12728    Benthopelagic    5       vermilion rockfish  6.1726920859
## 12729         Midwater    1                 halfmoon  6.3296115212
## 12730    Benthopelagic   23          starry rockfish  6.4780906993
## 12731    Benthopelagic    9          copper rockfish  6.4598362575
## 12732    Benthopelagic    5            white croaker  6.2816879474
## 12733    Benthopelagic   12         barred sand bass  6.4071955642
## 12734    Benthopelagic   23            white croaker  6.2988504094
## 12735          Pelagic    5            chub mackerel  6.3835975903
## 12736         Midwater    4                kelp bass  6.7151870484
## 12737          Pelagic    5         northern anchovy  6.4835247000
## 12738    Benthopelagic    1        spotted sand bass  6.2119869876
## 12739          Benthic   16         hornyhead turbot  6.2972288074
## 12740         Midwater   11                kelp bass  6.4177130770
## 12741          Pelagic   21            chub mackerel  6.4041947236
## 12742    Benthopelagic    1          ocean whitefish  6.5215430307
## 12743    Benthopelagic    1       california corbina  6.4844901313
## 12744    Benthopelagic   21        spotted sand bass  6.4100223263
## 12745          Pelagic    5          pacific sardine  6.4257956505
## 12746    Benthopelagic    4                  opaleye  6.2734769091
## 12747          Pelagic    6          pacific sardine  6.4372493652
## 12748          Pelagic   11            chub mackerel  6.4292303734
## 12749         Midwater   21                kelp bass  6.2580764376
## 12750    Benthopelagic    1     california sheephead  6.1886897383
## 12751         Midwater   10                kelp bass  6.5840610136
## 12752    Benthopelagic   13            white croaker  6.6194714899
## 12753          Pelagic    5            chub mackerel  6.4956872969
## 12754          Benthic   15         hornyhead turbot  6.5720743088
## 12755    Benthopelagic   24          starry rockfish  6.4201128785
## 12756    Benthopelagic   14       vermilion rockfish  6.4883521826
## 12757    Benthopelagic   22            white croaker  6.4216753580
## 12758          Benthic    5    shovelnose guitarfish  6.5117859790
## 12759          Benthic   12  california scorpionfish  6.2680898212
## 12760    Benthopelagic   11   gray smoothhound shark  6.2522245560
## 12761    Benthopelagic    3        rainbow surfperch  6.4497275600
## 12762    Benthopelagic    1                  opaleye  6.4671586999
## 12763          Pelagic    5             market squid  6.4794511822
## 12764          Pelagic    4            chub mackerel  6.1129665147
## 12765          Pelagic    5          pacific sardine  6.3457087667
## 12766    Benthopelagic   15            white croaker  6.4185166893
## 12767          Pelagic    5             market squid  6.3658382748
## 12768          Pelagic   21            chub mackerel  6.2524105797
## 12769    Benthopelagic   11           brown rockfish  6.4483883110
## 12770    Benthopelagic   20        yellowfin croaker  6.3671751878
## 12771    Benthopelagic   22         barred sand bass  6.4920971926
## 12772          Pelagic    5          pacific sardine  6.4627931431
## 12773          Benthic   13         hornyhead turbot  6.4802895575
## 12774         Midwater   12                kelp bass  6.5642820181
## 12775    Benthopelagic   22            white croaker  6.3660160588
## 12776          Pelagic    6             market squid  6.3392929405
## 12777          Pelagic    5          pacific sardine  6.6939297673
## 12778    Benthopelagic    4       california corbina  6.4523696829
## 12779    Benthopelagic   21        spotted sand bass  6.3770863360
## 12780    Benthopelagic    6    greenspotted rockfish  6.5423724945
## 12781          Pelagic    5             market squid  6.3424955175
## 12782    Benthopelagic    4            white croaker  6.3578340721
## 12783    Benthopelagic    1       california corbina  6.4034861570
## 12784         Midwater    4         shiner surfperch  6.2982950118
## 12785    Benthopelagic   23       vermilion rockfish  6.2443773431
## 12786    Benthopelagic   20       california corbina  6.4260285582
## 12787          Pelagic    5            chub mackerel  6.3676668260
## 12788    Benthopelagic   21         barred sand bass  6.1908258928
## 12789          Benthic    5  california scorpionfish  6.1941378970
## 12790          Pelagic    5             market squid  6.2119037015
## 12791    Benthopelagic   21        yellowfin croaker  6.3255174956
## 12792          Benthic    5          longfin sanddab  6.4149229042
## 12793    Benthopelagic    5       vermilion rockfish  6.2419018701
## 12794         Midwater   13     chilipepper rockfish  6.1930043489
## 12795    Benthopelagic    4        yellowfin croaker  6.3796362002
## 12796    Benthopelagic   21        yellowfin croaker  6.3134680144
## 12797    Benthopelagic    1        yellowfin croaker  6.6014037033
## 12798    Benthopelagic    3                  opaleye  6.2959541146
## 12799    Benthopelagic   11        yellowfin croaker  6.5353243766
## 12800          Benthic   15         hornyhead turbot  6.6000173837
## 12801         Midwater    3         shiner surfperch  1.3296279993
## 12802    Benthopelagic    3        spotted sand bass  1.5797428798
## 12803          Benthic   13         hornyhead turbot  1.4166428002
## 12804    Benthopelagic    7       vermilion rockfish  1.3946202902
## 12805         Midwater    3                kelp bass  1.3862612350
## 12806    Benthopelagic   22       vermilion rockfish  1.3239182538
## 12807    Benthopelagic   11          gopher rockfish  1.2395845340
## 12808    Benthopelagic    4         barred sand bass  1.5185640025
## 12809    Benthopelagic    5         barred sand bass  1.3538678873
## 12810         Midwater   10                kelp bass  1.3704971122
## 12811          Benthic    4    california lizardfish  1.3787467655
## 12812    Benthopelagic    8            white croaker  1.0087489987
## 12813         Midwater   11         shiner surfperch  1.2207832746
## 12814    Benthopelagic    1     california sheephead  1.2804598108
## 12815    Benthopelagic    5            white croaker  1.1756724031
## 12816    Benthopelagic   11            white croaker  1.1199232920
## 12817          Benthic    1           diamond turbot  1.5506680746
## 12818    Benthopelagic    6       vermilion rockfish  1.5449419789
## 12819          Pelagic   21            chub mackerel  1.3258779253
## 12820         Midwater    4           striped mullet  1.2624155482
## 12821          Benthic   19  california scorpionfish  1.4292874721
## 12822         Midwater    1         shiner surfperch  1.3426892761
## 12823    Benthopelagic   11         barred surfperch  1.1722522713
## 12824    Benthopelagic   11        spotted sand bass  1.6497298948
## 12825          Pelagic    5            chub mackerel  1.1237344227
## 12826          Pelagic    5            chub mackerel  1.6534231842
## 12827    Benthopelagic   11            white croaker  1.0937197461
## 12828    Benthopelagic    5           brown rockfish  1.4338351681
## 12829         Midwater    4           striped mullet  1.1924413268
## 12830         Midwater   21                kelp bass  1.4963841272
## 12831    Benthopelagic   21        yellowfin croaker  1.3782083817
## 12832    Benthopelagic    1         barred surfperch  1.1314399489
## 12833    Benthopelagic   14          starry rockfish  1.2852037595
## 12834    Benthopelagic   11 brown smooth-hound shark  1.7551515365
## 12835    Benthopelagic   11           brown rockfish  1.2178201249
## 12836         Midwater    1        walleye surfperch  1.3704384789
## 12837    Benthopelagic   20              black perch  1.2466158364
## 12838          Benthic   10  california scorpionfish  1.4853717158
## 12839         Midwater   22                kelp bass  1.1336123828
## 12840    Benthopelagic    1        rainbow surfperch  1.3000646815
## 12841         Midwater   24      squarespot rockfish  1.4778969631
## 12842    Benthopelagic   21        yellowfin croaker  1.4905863465
## 12843    Benthopelagic   11       vermilion rockfish  1.1831879368
## 12844    Benthopelagic   11         barred sand bass  1.2241144908
## 12845          Benthic   22  california scorpionfish  1.1441016926
## 12846    Benthopelagic    1                  opaleye  1.3949007856
## 12847    Benthopelagic   21          white surfperch  1.0028355805
## 12848         Midwater    4           striped mullet  1.1680641453
## 12849          Pelagic   21            chub mackerel  1.3350756302
## 12850    Benthopelagic   22       vermilion rockfish  1.1193308627
## 12851    Benthopelagic   13            white croaker  1.0930666028
## 12852          Benthic    8  california scorpionfish  1.2103689070
## 12853    Benthopelagic    5       vermilion rockfish  1.4364254314
## 12854    Benthopelagic    3        rainbow surfperch  1.4373112015
## 12855    Benthopelagic    9   greenblotched rockfish  1.1140463315
## 12856          Pelagic   21            chub mackerel  1.4106262888
## 12857    Benthopelagic    5            white croaker  1.1529028337
## 12858          Pelagic   21            chub mackerel  1.2657137903
## 12859          Pelagic    5          pacific sardine  1.3858403752
## 12860         Midwater   12                kelp bass  1.0553389783
## 12861    Benthopelagic   11         barred sand bass  1.5031234050
## 12862          Benthic    8         hornyhead turbot  1.0595468735
## 12863          Benthic    4           spotted turbot  1.3538402044
## 12864          Benthic    5  california scorpionfish  1.6280875131
## 12865         Midwater   21                kelp bass  1.1911449379
## 12866    Benthopelagic    1       california corbina  1.6323444476
## 12867          Pelagic   21            chub mackerel  1.4382269128
## 12868          Benthic    3           diamond turbot  1.3813004823
## 12869          Pelagic   11            chub mackerel  1.2280018295
## 12870    Benthopelagic    9   greenblotched rockfish  1.2573287165
## 12871    Benthopelagic    5            white croaker  1.0477638105
## 12872    Benthopelagic    4        yellowfin croaker  1.2770385074
## 12873         Midwater    7      squarespot rockfish  1.2488445860
## 12874    Benthopelagic   15        speckled rockfish  1.5421902930
## 12875    Benthopelagic   11          white surfperch  1.3127129551
## 12876    Benthopelagic   13       vermilion rockfish  1.3467533171
## 12877    Benthopelagic    2        spotted sand bass  1.4598921305
## 12878    Benthopelagic   15       vermilion rockfish  1.3323779139
## 12879    Benthopelagic   13            white croaker  1.2398762645
## 12880    Benthopelagic    1              black perch  1.4833061011
## 12881    Benthopelagic    8         barred sand bass  1.2807952181
## 12882          Pelagic   11            chub mackerel  1.2628156915
## 12883          Pelagic    6             market squid  1.2648299470
## 12884    Benthopelagic   10            white croaker  1.1610638482
## 12885          Benthic    4           spotted turbot  1.2333967032
## 12886         Midwater   11                kelp bass  1.4834848146
## 12887    Benthopelagic    1              black perch  1.1524094665
## 12888    Benthopelagic   21            white croaker  1.2272098864
## 12889    Benthopelagic   20       california corbina  1.1992279601
## 12890    Benthopelagic   11              black perch  1.5135946769
## 12891          Pelagic   21            chub mackerel  1.2444440685
## 12892    Benthopelagic    1        yellowfin croaker  1.0267470842
## 12893    Benthopelagic   10           brown rockfish  1.1501046783
## 12894          Pelagic   11            chub mackerel  1.2819115153
## 12895    Benthopelagic   11          gopher rockfish  1.4165553578
## 12896    Benthopelagic   21        spotted sand bass  1.3245443158
## 12897    Benthopelagic   23       vermilion rockfish  1.3230469348
## 12898          Pelagic    5            chub mackerel  1.4765520383
## 12899         Midwater    3         shiner surfperch  1.1905639535
## 12900         Midwater   11         shiner surfperch  1.6132534827
## 12901    Benthopelagic   20         barred surfperch  1.2360081680
## 12902    Benthopelagic    3         barred surfperch  0.9155750452
## 12903    Benthopelagic   21        yellowfin croaker  1.5359225785
## 12904    Benthopelagic    5       california corbina  1.1769110951
## 12905    Benthopelagic    5            white croaker  1.1490612910
## 12906          Pelagic    5             market squid  1.0879494082
## 12907    Benthopelagic   17            white croaker  1.5940764728
## 12908    Benthopelagic   20         barred sand bass  1.4178256636
## 12909    Benthopelagic    3              black perch  1.6066274474
## 12910    Benthopelagic   11            white croaker  1.4885431593
## 12911    Benthopelagic    5                  opaleye  1.1731802040
## 12912    Benthopelagic    5            white croaker  1.5246999839
## 12913         Midwater   21                kelp bass  1.0534207088
## 12914    Benthopelagic   23       vermilion rockfish  1.2128409731
## 12915    Benthopelagic    4       california corbina  1.4500693271
## 12916    Benthopelagic   11              black perch  1.3174755733
## 12917    Benthopelagic    5                  opaleye  1.2737200032
## 12918    Benthopelagic    5            white croaker  1.0941530391
## 12919    Benthopelagic   11        spotted sand bass  1.3640068913
## 12920          Pelagic   21            chub mackerel  1.3210841854
## 12921          Pelagic    5         northern anchovy  1.1552214928
## 12922    Benthopelagic    3        spotted sand bass  1.2994820906
## 12923    Benthopelagic   20           pile surfperch  1.3830656994
## 12924          Pelagic    5         northern anchovy  1.1765375504
## 12925          Benthic   11         hornyhead turbot  1.1623362803
## 12926    Benthopelagic   11            black croaker  1.3261770206
## 12927    Benthopelagic    1          white surfperch  1.0337259870
## 12928    Benthopelagic   11         barred sand bass  1.2871741086
## 12929    Benthopelagic   14            white croaker  1.2434809857
## 12930    Benthopelagic    3       california corbina  1.3605425618
## 12931          Pelagic    5            chub mackerel  1.1779931861
## 12932    Benthopelagic   12            white croaker  1.2924211056
## 12933    Benthopelagic    1        yellowfin croaker  1.4437163952
## 12934    Benthopelagic   22          starry rockfish  1.2108243531
## 12935    Benthopelagic    5                  opaleye  1.3504559327
## 12936          Pelagic   11            chub mackerel  1.4530082902
## 12937    Benthopelagic   22            white croaker  1.5022108685
## 12938    Benthopelagic   17        speckled rockfish  1.4820180072
## 12939    Benthopelagic   11         barred sand bass  1.1846824971
## 12940    Benthopelagic   21        spotted sand bass  1.2406425955
## 12941    Benthopelagic    1        spotted sand bass  1.2890374947
## 12942    Benthopelagic    4           pile surfperch  1.3000395927
## 12943    Benthopelagic    5                  opaleye  1.0990476952
## 12944         Midwater    2                kelp bass  1.2791801908
## 12945    Benthopelagic   10              black perch  1.3371100073
## 12946          Pelagic    5          pacific sardine  1.3545541621
## 12947         Midwater    1         shiner surfperch  0.7827599119
## 12948    Benthopelagic    1         barred surfperch  1.2993123296
## 12949    Benthopelagic    2            white croaker  1.1422512695
## 12950    Benthopelagic    1            white croaker  1.3281057106
## 12951    Benthopelagic    5         barred sand bass  0.9434856558
## 12952    Benthopelagic   24       vermilion rockfish  1.2833282718
## 12953         Midwater    3          canary rockfish  1.5308326503
## 12954    Benthopelagic   18            white croaker  1.5157884164
## 12955    Benthopelagic    7           brown rockfish  1.1307342475
## 12956         Midwater    5                queenfish  1.5854991239
## 12957          Benthic    1           diamond turbot  1.3157879973
## 12958    Benthopelagic    1            white croaker  1.0588498016
## 12959          Pelagic    5             market squid  1.4202425053
## 12960          Pelagic    5             market squid  1.0400071789
## 12961    Benthopelagic    3        spotted sand bass  1.1700493313
## 12962          Pelagic    5             market squid  1.2657245841
## 12963         Midwater   11                kelp bass  1.3511144063
## 12964          Benthic    5       california halibut  1.2704675219
## 12965          Benthic   19         hornyhead turbot  1.2159667864
## 12966          Pelagic    5         northern anchovy  1.1792041993
## 12967         Midwater   21                kelp bass  1.0061777885
## 12968          Pelagic   21            chub mackerel  1.3603896233
## 12969         Midwater    1                queenfish  1.2796323050
## 12970    Benthopelagic    3        spotted sand bass  1.4874008558
## 12971    Benthopelagic   14    greenspotted rockfish  1.4892818799
## 12972    Benthopelagic    5            white croaker  1.6346975713
## 12973    Benthopelagic   10   greenblotched rockfish  1.2928883833
## 12974    Benthopelagic    5                  opaleye  1.4887931049
## 12975    Benthopelagic    1            white croaker  1.7419384380
## 12976          Pelagic    5          pacific sardine  1.4541911567
## 12977         Midwater    1            blue rockfish  1.4342533988
## 12978         Midwater   21                kelp bass  1.2066509882
## 12979    Benthopelagic    3         barred sand bass  1.2139176998
## 12980          Pelagic   21            chub mackerel  1.5751505796
## 12981    Benthopelagic    4                  opaleye  1.2749355002
## 12982    Benthopelagic    1     california sheephead  1.1810033133
## 12983    Benthopelagic   11              black perch  1.5188409101
## 12984    Benthopelagic    1        yellowfin croaker  1.4552699617
## 12985    Benthopelagic   18              black perch  1.2352121688
## 12986    Benthopelagic    1        yellowfin croaker  1.4833855850
## 12987    Benthopelagic   21        spotted sand bass  1.5018086604
## 12988    Benthopelagic    5                  opaleye  1.2906279720
## 12989    Benthopelagic   12       vermilion rockfish  1.4481337350
## 12990    Benthopelagic   18       vermilion rockfish  1.5605849657
## 12991    Benthopelagic    3              black perch  1.2572948956
## 12992         Midwater    3                kelp bass  1.5145286762
## 12993    Benthopelagic   12            white croaker  1.0137282755
## 12994         Midwater   21                kelp bass  1.1124058604
## 12995         Midwater    4         shiner surfperch  1.5729627725
## 12996    Benthopelagic   11          gopher rockfish  1.4249560512
## 12997    Benthopelagic    3       vermilion rockfish  1.4328861308
## 12998    Benthopelagic   14         barred sand bass  1.5267845011
## 12999         Midwater   21                kelp bass  1.5908304878
## 13000         Midwater    1                queenfish  1.3203859273
## 13001    Benthopelagic   22          starry rockfish  1.6781624545
## 13002    Benthopelagic   20            white croaker  1.2642324894
## 13003    Benthopelagic    4       california corbina  1.3282344891
## 13004    Benthopelagic    8              black perch  1.3311602229
## 13005          Benthic   20         hornyhead turbot  1.2298040778
## 13006         Midwater   21                kelp bass  1.2934743764
## 13007    Benthopelagic    4              black perch  1.4779397329
## 13008    Benthopelagic    4            white croaker  1.2345278285
## 13009    Benthopelagic    4              black perch  1.5187593904
## 13010    Benthopelagic   21        yellowfin croaker  1.2032648301
## 13011    Benthopelagic    1                  opaleye  1.3089575590
## 13012          Benthic   21         hornyhead turbot  1.1365950398
## 13013    Benthopelagic    4         barred surfperch  1.5276100466
## 13014         Midwater   11                kelp bass  1.1750938633
## 13015          Pelagic    5             market squid  1.2488644561
## 13016          Benthic    1           diamond turbot  1.4753895383
## 13017    Benthopelagic    1            white croaker  1.0981496372
## 13018    Benthopelagic    4              black perch  1.2311146807
## 13019          Pelagic    6             market squid  1.4912517297
## 13020    Benthopelagic   11            white croaker  1.2260301353
## 13021    Benthopelagic    9            white croaker  1.2633804670
## 13022          Pelagic   21         northern anchovy  1.1067089748
## 13023    Benthopelagic   11           brown rockfish  1.8146299011
## 13024    Benthopelagic   11          ocean whitefish  1.2704242323
## 13025          Benthic   17         hornyhead turbot  1.3661835468
## 13026          Benthic   11  california scorpionfish  1.1671392318
## 13027          Benthic   20           diamond turbot  1.4419217328
## 13028    Benthopelagic    4        spotted sand bass  1.3980850745
## 13029         Midwater   11           olive rockfish  1.3829313483
## 13030    Benthopelagic    1              black perch  1.1050876671
## 13031    Benthopelagic    5            white croaker  1.3767024028
## 13032          Pelagic    5         northern anchovy  1.3573253216
## 13033    Benthopelagic   11        yellowfin croaker  1.3038488124
## 13034         Midwater   16                kelp bass  1.3726583542
## 13035    Benthopelagic   11            white croaker  1.3081114410
## 13036    Benthopelagic   11              black perch  1.2200390831
## 13037         Midwater   18                kelp bass  1.4022400345
## 13038    Benthopelagic    3              black perch  1.3413117109
## 13039         Midwater    1                kelp bass  1.5541328331
## 13040    Benthopelagic   15            white croaker  1.1006034507
## 13041    Benthopelagic   22         barred sand bass  1.4674042640
## 13042    Benthopelagic    1            white croaker  1.4303833422
## 13043    Benthopelagic   21        yellowfin croaker  1.1448516087
## 13044          Benthic    5  california scorpionfish  0.8082159288
## 13045          Pelagic   21            chub mackerel  1.3902001427
## 13046          Benthic    1           spotted turbot  1.3882928970
## 13047    Benthopelagic   11          gopher rockfish  0.9533511629
## 13048    Benthopelagic    1            white croaker  1.3185003028
## 13049    Benthopelagic    5       california corbina  1.4045769690
## 13050    Benthopelagic    1              black perch  1.0988716222
## 13051    Benthopelagic   11          spotfin croaker  1.1624598571
## 13052    Benthopelagic    8          copper rockfish  1.2996523951
## 13053    Benthopelagic    4        yellowfin croaker  1.4558117424
## 13054    Benthopelagic   12            white croaker  1.4663160362
## 13055         Midwater    8      yellowtail rockfish  1.2393101423
## 13056         Midwater    3                kelp bass  1.4435988042
## 13057    Benthopelagic    5          spotfin croaker  0.9900371551
## 13058          Pelagic    5          pacific sardine  1.2075744434
## 13059          Benthic    5  california scorpionfish  1.4593851192
## 13060    Benthopelagic    3         barred surfperch  1.2306859142
## 13061          Pelagic    6          pacific sardine  0.9902207185
## 13062    Benthopelagic   11       vermilion rockfish  1.2604700387
## 13063          Pelagic    5         northern anchovy  1.4349871792
## 13064          Pelagic   11            chub mackerel  1.1972210366
## 13065          Pelagic   21            chub mackerel  1.2044840091
## 13066         Midwater    5                top smelt  1.1800092255
## 13067         Midwater    2                queenfish  1.2838252412
## 13068    Benthopelagic    4            white croaker  1.2395015494
## 13069    Benthopelagic   18              black perch  1.4198313269
## 13070         Midwater   21                kelp bass  1.0937046310
## 13071    Benthopelagic    4          copper rockfish  0.9997025154
## 13072    Benthopelagic   20              black perch  1.2643192910
## 13073          Benthic    1         speckled sanddab  1.6168777765
## 13074    Benthopelagic   18            white croaker  0.9135784680
## 13075    Benthopelagic   11         barred sand bass  1.0632134054
## 13076    Benthopelagic   11          spotfin croaker  1.8101245416
## 13077          Pelagic   11            chub mackerel  1.3094551025
## 13078          Pelagic    5            chub mackerel  1.4505604761
## 13079          Benthic   18         hornyhead turbot  1.4024993589
## 13080          Benthic   12  california scorpionfish  1.4284998346
## 13081          Benthic    1             fantail sole  1.3304690808
## 13082         Midwater   21                kelp bass  1.2437717015
## 13083    Benthopelagic    3          white surfperch  1.3073939746
## 13084    Benthopelagic   13       vermilion rockfish  1.0009405032
## 13085    Benthopelagic   18            white croaker  1.4375781825
## 13086         Midwater    1         shiner surfperch  1.2562013270
## 13087    Benthopelagic   14            white croaker  0.7938071793
## 13088         Midwater   11                kelp bass  1.3510289954
## 13089          Benthic    5         speckled sanddab  1.1175587186
## 13090          Benthic   17  california scorpionfish  1.3962891590
## 13091    Benthopelagic   21       california corbina  1.1190192809
## 13092          Benthic   11  california scorpionfish  1.8220728088
## 13093          Benthic   17         hornyhead turbot  0.9927838421
## 13094    Benthopelagic   12              black perch  1.2774555236
## 13095    Benthopelagic    1            white croaker  1.3406957266
## 13096    Benthopelagic    5       california corbina  1.3448725992
## 13097    Benthopelagic    4              black perch  1.5029786408
## 13098    Benthopelagic    5            white croaker  1.3731060038
## 13099    Benthopelagic    1            white croaker  1.3206957408
## 13100          Benthic   14         hornyhead turbot  1.4326257259
## 13101          Benthic    4    shovelnose guitarfish  1.1021349279
## 13102         Midwater    1        walleye surfperch  1.3627024451
## 13103         Midwater   18                kelp bass  1.3821553424
## 13104    Benthopelagic    5            white croaker  1.2572723179
## 13105    Benthopelagic    5         barred sand bass  1.4019889469
## 13106         Midwater    2                kelp bass  1.4016905054
## 13107    Benthopelagic   21         barred sand bass  1.3846636324
## 13108    Benthopelagic   12       vermilion rockfish  1.1409022026
## 13109    Benthopelagic    2       quillback rockfish  1.3030758079
## 13110    Benthopelagic   21            white croaker  1.2057255058
## 13111    Benthopelagic   16       vermilion rockfish  1.1815214808
## 13112    Benthopelagic    3              black perch  1.3203314026
## 13113          Benthic    8  california scorpionfish  0.8517054425
## 13114          Pelagic    5          pacific sardine  1.0784284520
## 13115          Benthic    5  california scorpionfish  1.5621558270
## 13116    Benthopelagic    8          copper rockfish  1.6093277026
## 13117          Pelagic    5          pacific sardine  1.3505638894
## 13118    Benthopelagic    2            white croaker  1.3699165659
## 13119    Benthopelagic    1            white croaker  1.4984290860
## 13120    Benthopelagic   21            leopard shark  1.4235694976
## 13121    Benthopelagic   14              black perch  1.6012968167
## 13122    Benthopelagic   16       vermilion rockfish  1.0675100997
## 13123    Benthopelagic   10       vermilion rockfish  1.0550466878
## 13124         Midwater   21                kelp bass  1.1991296966
## 13125    Benthopelagic    1            rosy rockfish  1.2249644548
## 13126         Midwater    3         shiner surfperch  1.4070661269
## 13127    Benthopelagic   11            white croaker  1.5157672060
## 13128    Benthopelagic    1         barred surfperch  1.3113459365
## 13129         Midwater    1         shiner surfperch  1.2341559220
## 13130          Pelagic   21            chub mackerel  1.3378900227
## 13131    Benthopelagic   16       vermilion rockfish  1.1000703088
## 13132    Benthopelagic    7        speckled rockfish  1.4315746980
## 13133         Midwater    4         shiner surfperch  1.2088681399
## 13134    Benthopelagic   11       vermilion rockfish  1.4971167036
## 13135          Pelagic    5            chub mackerel  1.5779983754
## 13136         Midwater   14                kelp bass  0.9589724132
## 13137    Benthopelagic    3              black perch  1.0891919445
## 13138    Benthopelagic    5            black croaker  1.4100446593
## 13139         Midwater    5                top smelt  1.5594192903
## 13140         Midwater   11                top smelt  1.6907404248
## 13141          Benthic   10         hornyhead turbot  1.3230108901
## 13142          Pelagic    5             market squid  1.1380199652
## 13143    Benthopelagic   12              black perch  1.3488251270
## 13144    Benthopelagic    1       california corbina  1.3587041595
## 13145    Benthopelagic    3         barred surfperch  1.4332377919
## 13146    Benthopelagic   19       vermilion rockfish  1.4251804143
## 13147    Benthopelagic   15        speckled rockfish  1.2442764907
## 13148          Pelagic    5          pacific sardine  1.4596982427
## 13149    Benthopelagic    4         barred surfperch  1.3923958647
## 13150    Benthopelagic   11              black perch  1.6044833521
## 13151         Midwater   11                kelp bass  1.2429433566
## 13152    Benthopelagic   11         barred surfperch  1.1803664110
## 13153          Pelagic    5         northern anchovy  1.4265063163
## 13154          Pelagic    5          pacific sardine  1.3193521408
## 13155    Benthopelagic   11            white croaker  1.5106205972
## 13156    Benthopelagic   19            white croaker  1.2009928895
## 13157    Benthopelagic    3              black perch  1.1692700887
## 13158    Benthopelagic   19       vermilion rockfish  1.3509458954
## 13159    Benthopelagic   12           brown rockfish  1.3020877183
## 13160    Benthopelagic    6          copper rockfish  1.2160007888
## 13161          Pelagic    5             market squid  1.3087945872
## 13162    Benthopelagic   22              black perch  1.2590268675
## 13163          Benthic   20       california halibut  1.4458142278
## 13164    Benthopelagic    2        spotted sand bass  1.4465440628
## 13165          Benthic    1           diamond turbot  1.3527004398
## 13166          Benthic   23         hornyhead turbot  1.3711235465
## 13167    Benthopelagic    5         barred sand bass  1.4092510387
## 13168          Benthic    4    california lizardfish  1.4905634277
## 13169    Benthopelagic   11 brown smooth-hound shark  1.2474520413
## 13170    Benthopelagic   21            white croaker  1.2289438156
## 13171    Benthopelagic    4            flag rockfish  1.4651380422
## 13172          Benthic   12         hornyhead turbot  1.1422521112
## 13173          Benthic    4    shovelnose guitarfish  1.4085187321
## 13174    Benthopelagic   14            white croaker  1.4799984559
## 13175    Benthopelagic    5     california sheephead  1.5663741370
## 13176          Pelagic    5         northern anchovy  1.2899367832
## 13177    Benthopelagic   20       vermilion rockfish  1.1002573285
## 13178    Benthopelagic    2         barred surfperch  1.2566697199
## 13179         Midwater   17      squarespot rockfish  1.5736305094
## 13180    Benthopelagic   18       vermilion rockfish  1.3982459904
## 13181    Benthopelagic   11            white croaker  1.1745193618
## 13182    Benthopelagic    4         barred sand bass  1.5847820663
## 13183         Midwater    4                top smelt  1.3521440522
## 13184          Benthic   17         hornyhead turbot  1.3310549033
## 13185    Benthopelagic   11            white croaker  1.3558704541
## 13186    Benthopelagic   11         barred surfperch  1.3470242270
## 13187          Pelagic    5             market squid  1.3117368558
## 13188          Benthic   19  california scorpionfish  1.4679050112
## 13189          Pelagic    5             market squid  1.1371929220
## 13190    Benthopelagic   10         barred sand bass  1.4448818992
## 13191          Pelagic   11            chub mackerel  1.1928304710
## 13192    Benthopelagic   11              black perch  1.7270689269
## 13193    Benthopelagic   22              black perch  1.6090995061
## 13194    Benthopelagic   12            white croaker  1.0580015609
## 13195          Benthic    5    shovelnose guitarfish  1.2679228132
## 13196    Benthopelagic   20       california corbina  1.3425364764
## 13197    Benthopelagic    5                  opaleye  1.4787974764
## 13198    Benthopelagic   16       vermilion rockfish  1.7828259394
## 13199    Benthopelagic    1        spotted sand bass  0.9557431523
## 13200    Benthopelagic    3        rainbow surfperch  1.3571717413
## 13201    Benthopelagic   17            white croaker  0.8535273818
## 13202          Benthic   22  california scorpionfish  0.7794632418
## 13203         Midwater   21                kelp bass  0.6525184969
## 13204          Pelagic    5             market squid  0.7728338237
## 13205    Benthopelagic   21            white croaker  0.8748039087
## 13206    Benthopelagic    1        rainbow surfperch  0.3554501247
## 13207    Benthopelagic    4       california corbina  0.5189256793
## 13208          Pelagic   21            chub mackerel  0.8441637920
## 13209    Benthopelagic   20            white croaker  0.7521141324
## 13210          Pelagic    6          pacific sardine  0.7970171616
## 13211         Midwater    4           striped mullet  0.6644201879
## 13212          Pelagic   21            chub mackerel  0.4715079885
## 13213          Benthic    1         speckled sanddab  0.5878432960
## 13214    Benthopelagic   11            white croaker  0.8155031152
## 13215          Benthic    8         hornyhead turbot  0.6143746854
## 13216         Midwater    4         shiner surfperch  0.5249139082
## 13217    Benthopelagic   10       vermilion rockfish  0.7778687630
## 13218    Benthopelagic    1        rainbow surfperch  0.6712497815
## 13219         Midwater   11         shiner surfperch  0.8819064884
## 13220    Benthopelagic    5            leopard shark  0.6585753407
## 13221          Pelagic   21            chub mackerel  0.7346708514
## 13222    Benthopelagic   11              black perch  0.7045427579
## 13223         Midwater    4         shiner surfperch  0.8694974109
## 13224    Benthopelagic   14              black perch  0.3912291478
## 13225         Midwater   11                kelp bass  0.6125837515
## 13226    Benthopelagic   18            white croaker  0.7169249522
## 13227         Midwater    4                top smelt  0.7795407127
## 13228    Benthopelagic    5   gray smoothhound shark  0.6279777367
## 13229    Benthopelagic   23            white croaker  0.6665445403
## 13230          Pelagic   21           slough anchovy  0.7763698255
## 13231         Midwater    1                queenfish  1.0959945379
## 13232    Benthopelagic   21            white croaker  0.7606428026
## 13233         Midwater    1                kelp bass  0.8355607558
## 13234    Benthopelagic   24       vermilion rockfish  0.7083323718
## 13235          Pelagic   21            chub mackerel  0.8039662691
## 13236          Pelagic    5          pacific sardine  0.8259815077
## 13237    Benthopelagic    4       california corbina  0.7080432907
## 13238    Benthopelagic    3       california corbina  0.7189413355
## 13239    Benthopelagic   16              black perch  0.7023806093
## 13240          Pelagic    5          pacific sardine  0.5118642904
## 13241          Pelagic   21            chub mackerel  0.5669366483
## 13242    Benthopelagic   21         barred sand bass  0.7879027596
## 13243          Pelagic    6          pacific sardine  0.7866516032
## 13244    Benthopelagic    5        yellowfin croaker  0.8801185853
## 13245          Benthic    1  california scorpionfish  0.9595670755
## 13246         Midwater    4         shiner surfperch  0.6995418438
## 13247          Benthic    5  california scorpionfish  0.7098690526
## 13248    Benthopelagic    5       california corbina  0.8803547444
## 13249          Benthic   19         hornyhead turbot  0.4906126616
## 13250    Benthopelagic    2              black perch  0.5786149997
## 13251    Benthopelagic   21        spotted sand bass  0.8994900069
## 13252    Benthopelagic    7       vermilion rockfish  0.6446780358
## 13253    Benthopelagic    3              black perch  0.7578489172
## 13254          Pelagic   11            chub mackerel  0.9792390806
## 13255    Benthopelagic   22            white croaker  0.7660859134
## 13256         Midwater    2         shiner surfperch  0.6769853222
## 13257    Benthopelagic   11   gray smoothhound shark  0.4869265458
## 13258    Benthopelagic   19            white croaker  0.6419302170
## 13259    Benthopelagic   11            white croaker  1.0117677187
## 13260    Benthopelagic    5            white croaker  0.6672346969
## 13261    Benthopelagic   21          white surfperch  0.8906356725
## 13262         Midwater    5                 halfmoon  0.7809295599
## 13263         Midwater   10                kelp bass  0.5988100107
## 13264         Midwater    1                kelp bass  0.5855660372
## 13265         Midwater    3         shiner surfperch  0.6041760143
## 13266    Benthopelagic   10            white croaker  0.5472876625
## 13267         Midwater    5                queenfish  0.7739008766
## 13268    Benthopelagic    1            white croaker  0.3083855042
## 13269    Benthopelagic    4              black perch  0.6680765257
## 13270    Benthopelagic    1         barred sand bass  0.7628300189
## 13271         Midwater    5                kelp bass  0.5438930403
## 13272          Pelagic    5          pacific sardine  0.8891969559
## 13273    Benthopelagic   21         barred sand bass  0.8100381853
## 13274    Benthopelagic    4           pile surfperch  0.6984405552
## 13275         Midwater   14                kelp bass  0.6872230550
## 13276    Benthopelagic   16          copper rockfish  0.9685165691
## 13277    Benthopelagic    3        spotted sand bass  0.9985299782
## 13278         Midwater   16                kelp bass  0.6347289749
## 13279         Midwater    4                kelp bass  0.6770091948
## 13280    Benthopelagic   14              black perch  0.5735908100
## 13281          Pelagic    6          pacific sardine  0.6817142375
## 13282    Benthopelagic   11              black perch  0.7395384270
## 13283    Benthopelagic    4           pile surfperch  0.9455645585
## 13284    Benthopelagic    5        yellowfin croaker  0.6573087422
## 13285          Benthic   14         hornyhead turbot  1.0417920378
## 13286          Pelagic    5          pacific sardine  0.8825427455
## 13287          Pelagic   21            chub mackerel  0.9021911224
## 13288         Midwater   21                kelp bass  1.0655942142
## 13289    Benthopelagic   10              black perch  0.8106104908
## 13290         Midwater   21                kelp bass  0.5472874588
## 13291          Pelagic    5          pacific sardine  0.4095206876
## 13292         Midwater    3         shiner surfperch  0.4581723689
## 13293    Benthopelagic    8         barred sand bass  0.7472396708
## 13294    Benthopelagic   11         barred sand bass  0.7695157745
## 13295         Midwater    1        walleye surfperch  0.6495919630
## 13296          Benthic   20  california scorpionfish  0.7519298128
## 13297          Benthic   23         hornyhead turbot  0.5973257166
## 13298          Benthic   19  california scorpionfish  0.5314652831
## 13299    Benthopelagic   12           brown rockfish  0.5685244622
## 13300    Benthopelagic   11          white surfperch  0.6742162859
## 13301    Benthopelagic    5       california corbina  0.9167394128
## 13302    Benthopelagic    4              black perch  0.5784632015
## 13303    Benthopelagic    5            white croaker  0.6407143182
## 13304    Benthopelagic    3        spotted sand bass  0.5192041697
## 13305    Benthopelagic   20            white croaker  0.5833990350
## 13306         Midwater    1         shiner surfperch  0.6314021003
## 13307          Benthic   20         hornyhead turbot  0.6092550853
## 13308          Benthic    1           spotted turbot  0.9134155393
## 13309          Benthic   23         hornyhead turbot  0.7405460359
## 13310    Benthopelagic   14       vermilion rockfish  0.7435951647
## 13311          Pelagic    5             market squid  0.6139464184
## 13312    Benthopelagic    8            white croaker  0.9653531258
## 13313          Pelagic    5             market squid  0.7455909216
## 13314    Benthopelagic    5       vermilion rockfish  0.7040115730
## 13315    Benthopelagic   11            white croaker  0.4166963108
## 13316          Benthic    3           diamond turbot  0.8969368103
## 13317          Pelagic   21         northern anchovy  0.5241084394
## 13318          Benthic    8         hornyhead turbot  0.8186978636
## 13319    Benthopelagic    4         barred sand bass  0.7881990305
## 13320         Midwater    3                jacksmelt  0.8554623599
## 13321         Midwater   21                kelp bass  0.8694052744
## 13322    Benthopelagic   11        yellowfin croaker  0.9120760037
## 13323         Midwater    8                kelp bass  1.0027392618
## 13324    Benthopelagic    9       vermilion rockfish  0.5771139776
## 13325         Midwater   21                kelp bass  0.8466824086
## 13326    Benthopelagic    1         barred surfperch  0.7728795560
## 13327         Midwater   11                top smelt  0.6551946039
## 13328    Benthopelagic    5            white croaker  0.7896134467
## 13329    Benthopelagic    4         barred surfperch  0.8409258389
## 13330    Benthopelagic   21        yellowfin croaker  0.9638501091
## 13331    Benthopelagic    5         barred sand bass  0.7628609564
## 13332          Pelagic   21            chub mackerel  1.0805392788
## 13333         Midwater   21                kelp bass  0.5649794180
## 13334    Benthopelagic    8            white croaker  0.5793880300
## 13335          Pelagic   21            chub mackerel  0.6682529955
## 13336    Benthopelagic   16        speckled rockfish  0.6739352220
## 13337    Benthopelagic    5         barred sand bass  0.8488770149
## 13338          Pelagic   21           slough anchovy  0.6565890699
## 13339    Benthopelagic   11            rosy rockfish  0.7116929180
## 13340          Benthic    4           diamond turbot  0.8454796080
## 13341          Benthic   16  california scorpionfish  0.8488704605
## 13342    Benthopelagic   20       vermilion rockfish  0.7512361958
## 13343         Midwater   20                kelp bass  0.7220075397
## 13344         Midwater   21                kelp bass  0.6815555311
## 13345          Benthic   13         hornyhead turbot  0.5936556420
## 13346          Pelagic   21            chub mackerel  0.8236517171
## 13347    Benthopelagic   14       vermilion rockfish  0.5656238865
## 13348         Midwater    5                kelp bass  0.7136140766
## 13349          Benthic   10  california scorpionfish  0.5094558219
## 13350    Benthopelagic    5         barred sand bass  0.7320489399
## 13351         Midwater    4                kelp bass  0.6686160360
## 13352    Benthopelagic    1        yellowfin croaker  0.7082074107
## 13353    Benthopelagic   10           brown rockfish  0.8211637074
## 13354          Benthic    5          longfin sanddab  0.7617273048
## 13355    Benthopelagic    3        yellowfin croaker  0.7584067402
## 13356    Benthopelagic   11            white croaker  0.5872796057
## 13357         Midwater   20                kelp bass  0.5668301367
## 13358          Benthic    5       california halibut  0.7192270279
## 13359          Pelagic    5          pacific sardine  0.9310604669
## 13360         Midwater   21                kelp bass  0.7561272263
## 13361    Benthopelagic    8            white croaker  0.8776482510
## 13362    Benthopelagic    3       california corbina  0.7943939467
## 13363    Benthopelagic    4        spotted sand bass  0.6877801537
## 13364          Benthic   10  california scorpionfish  0.9704980704
## 13365          Benthic    5  california scorpionfish  0.8682673971
## 13366         Midwater   11                top smelt  0.7763145332
## 13367    Benthopelagic   17            white croaker  0.7671926676
## 13368    Benthopelagic    5            white croaker  0.6144719546
## 13369          Pelagic   21         northern anchovy  0.6781744519
## 13370          Pelagic    5          pacific sardine  0.7941420326
## 13371    Benthopelagic    1       california corbina  0.7374409180
## 13372         Midwater    5                kelp bass  0.8891493022
## 13373    Benthopelagic   20            white croaker  0.7960644108
## 13374    Benthopelagic    3            rosy rockfish  0.8873753074
## 13375    Benthopelagic   21        yellowfin croaker  0.7217633972
## 13376    Benthopelagic    1         barred surfperch  0.8426434932
## 13377    Benthopelagic   14         barred sand bass  0.6668357624
## 13378    Benthopelagic    5       vermilion rockfish  0.8262210539
## 13379         Midwater   21                kelp bass  0.9390081867
## 13380    Benthopelagic    3           pile surfperch  0.8219042513
## 13381    Benthopelagic   19       vermilion rockfish  0.7043349550
## 13382          Pelagic    5            chub mackerel  0.7498514072
## 13383         Midwater   21                kelp bass  0.6466078940
## 13384         Midwater    5                queenfish  0.5999334264
## 13385    Benthopelagic   11            white croaker  0.7868428884
## 13386          Benthic    1           diamond turbot  0.2064631470
## 13387          Benthic   22         hornyhead turbot  0.7715359830
## 13388         Midwater    5                kelp bass  0.6709052791
## 13389    Benthopelagic   21          spotfin croaker  0.5322326231
## 13390          Pelagic    5            chub mackerel  0.8732616521
## 13391    Benthopelagic    5       vermilion rockfish  0.6353483571
## 13392    Benthopelagic    1         barred surfperch  0.6530138491
## 13393    Benthopelagic   11            white croaker  0.6264687823
## 13394    Benthopelagic    4         barred sand bass  1.0296210038
## 13395    Benthopelagic   17       vermilion rockfish  0.4970045609
## 13396    Benthopelagic   11          white surfperch  0.7884014711
## 13397    Benthopelagic    8          copper rockfish  0.8196426504
## 13398         Midwater   11            kelp rockfish  0.8842759511
## 13399    Benthopelagic    5            white croaker  0.7141689523
## 13400    Benthopelagic    4         barred surfperch  0.9355381327
## 13401    Benthopelagic    4       california corbina  0.8737039762
## 13402          Benthic   20       california halibut  0.7009377395
## 13403          Benthic    3           diamond turbot  0.9600886725
## 13404    Benthopelagic   12         barred sand bass  0.7758416401
## 13405         Midwater    1                 halfmoon  0.6440993238
## 13406    Benthopelagic   13       vermilion rockfish  0.7127382443
## 13407          Pelagic    5        pacific barracuda  0.5915078874
## 13408    Benthopelagic    3              black perch  0.7755169281
## 13409          Pelagic   21            chub mackerel  0.4930766807
## 13410    Benthopelagic   14            white croaker  0.7171542631
## 13411    Benthopelagic   24       vermilion rockfish  0.7093130488
## 13412    Benthopelagic   20       california corbina  0.4116455725
## 13413    Benthopelagic   21         barred sand bass  0.8933316524
## 13414    Benthopelagic   11            white croaker  0.7869076082
## 13415         Midwater   21                kelp bass  0.8192941662
## 13416         Midwater    1         shiner surfperch  0.3140000872
## 13417         Midwater    5         shiner surfperch  0.7059782631
## 13418    Benthopelagic   11           brown rockfish  0.9091273392
## 13419    Benthopelagic    5         barred sand bass  0.5639301861
## 13420          Pelagic    5          pacific sardine  0.8313838724
## 13421          Benthic   16         hornyhead turbot  0.7895039599
## 13422         Midwater    1         shiner surfperch  0.7761072379
## 13423    Benthopelagic    5                  opaleye  0.8709528626
## 13424    Benthopelagic   20            white croaker  0.8077620511
## 13425    Benthopelagic   21            white croaker  0.7891503162
## 13426    Benthopelagic   11          spotfin croaker  0.7421987662
## 13427          Benthic   22  california scorpionfish  0.5466336866
## 13428          Pelagic    5          pacific sardine  0.7689773126
## 13429    Benthopelagic    1                  opaleye  0.6215171013
## 13430         Midwater    1         shiner surfperch  0.4583872508
## 13431    Benthopelagic   11         barred surfperch  0.9244811682
## 13432         Midwater   11         shiner surfperch  0.4796014443
## 13433    Benthopelagic   12            white croaker  0.7989734089
## 13434         Midwater   21                queenfish  0.9528415515
## 13435          Benthic    4    shovelnose guitarfish  0.5845890069
## 13436    Benthopelagic   21         barred sand bass  0.7434737026
## 13437    Benthopelagic   10            white croaker  0.8884850871
## 13438    Benthopelagic    1       california corbina  0.6632655220
## 13439    Benthopelagic   11            white croaker  0.4952347250
## 13440         Midwater   11                kelp bass  0.7265771565
## 13441    Benthopelagic    3        spotted sand bass  0.9890920874
## 13442    Benthopelagic    3          copper rockfish  0.8131653734
## 13443          Pelagic   11            chub mackerel  0.9756418613
## 13444          Pelagic    5             market squid  0.8079590687
## 13445          Pelagic   11            chub mackerel  0.6801854222
## 13446          Pelagic   21            chub mackerel  0.6175263571
## 13447          Benthic   22  california scorpionfish  0.5211328254
## 13448         Midwater    4         shiner surfperch  0.8658505594
## 13449          Benthic   18  california scorpionfish  0.5838430964
## 13450    Benthopelagic    5                  opaleye  0.6418056567
## 13451         Midwater   21                queenfish  0.7694580772
## 13452    Benthopelagic    5          copper rockfish  0.7267709390
## 13453    Benthopelagic   11         barred sand bass  0.8179397278
## 13454    Benthopelagic   21        spotted sand bass  0.6052982869
## 13455    Benthopelagic   22            white croaker  0.8477514999
## 13456          Pelagic    5         northern anchovy  0.5242825009
## 13457    Benthopelagic   21            leopard shark  0.6751086611
## 13458         Midwater   11         shiner surfperch  0.7403175312
## 13459    Benthopelagic   21            white croaker  0.7595090805
## 13460          Benthic    5       california halibut  0.5754639356
## 13461         Midwater   11                kelp bass  0.6283234821
## 13462         Midwater   18                kelp bass  0.4459715776
## 13463    Benthopelagic    5            white croaker  0.8445375729
## 13464    Benthopelagic    1         barred surfperch  0.7302662684
## 13465    Benthopelagic   20            white croaker  0.8025404014
## 13466    Benthopelagic    4 brown smooth-hound shark  0.8486866152
## 13467    Benthopelagic   11         barred sand bass  0.8978101231
## 13468          Benthic   15         hornyhead turbot  0.7294187927
## 13469          Benthic    5  california scorpionfish  0.9483723260
## 13470    Benthopelagic   14       vermilion rockfish  0.7282854671
## 13471          Pelagic    5             market squid  0.7627283580
## 13472    Benthopelagic    5            black croaker  0.8432014295
## 13473    Benthopelagic    1         barred surfperch  0.5731143320
## 13474         Midwater    2        walleye surfperch  0.9786252851
## 13475    Benthopelagic   16       vermilion rockfish  0.7074024130
## 13476          Pelagic    4            chub mackerel  0.8155002432
## 13477    Benthopelagic    1        yellowfin croaker  0.7383767343
## 13478         Midwater    5                kelp bass  0.7596510393
## 13479    Benthopelagic    6          copper rockfish  0.5624320889
## 13480          Benthic    9         hornyhead turbot  0.7961956284
## 13481    Benthopelagic   13           brown rockfish  0.6642219098
## 13482    Benthopelagic    4            white croaker  0.6994222211
## 13483    Benthopelagic   21        spotted sand bass  0.5828575220
## 13484          Pelagic    6             market squid  0.5941145251
## 13485    Benthopelagic   11            white croaker  0.9608846812
## 13486    Benthopelagic   16       vermilion rockfish  0.3926218169
## 13487          Benthic    5           diamond turbot  0.6626393678
## 13488         Midwater    5                kelp bass  0.6098605559
## 13489    Benthopelagic    3        rainbow surfperch  0.6623232805
## 13490          Benthic   21       california halibut  0.5872772443
## 13491    Benthopelagic   21            white croaker  0.5792392258
## 13492    Benthopelagic   11          white surfperch  0.5092595959
## 13493    Benthopelagic    4        yellowfin croaker  0.7718475724
## 13494          Pelagic    5         northern anchovy  0.8646396508
## 13495          Pelagic   21         northern anchovy  0.5148092718
## 13496    Benthopelagic   21        yellowfin croaker  0.7143776351
## 13497    Benthopelagic   13       vermilion rockfish  0.6801510198
## 13498    Benthopelagic   11         barred sand bass  0.6289636611
## 13499    Benthopelagic    1       california corbina  0.6961682072
## 13500    Benthopelagic    5       vermilion rockfish  0.8100797226
## 13501         Midwater    1                 halfmoon  0.9568578115
## 13502    Benthopelagic   23          starry rockfish  0.6938471683
## 13503    Benthopelagic    9          copper rockfish  0.5502560309
## 13504    Benthopelagic    5            white croaker  0.7303969653
## 13505    Benthopelagic   12         barred sand bass  0.7328961517
## 13506    Benthopelagic   23            white croaker  0.9543487569
## 13507          Pelagic    5            chub mackerel  0.6171067478
## 13508         Midwater    4                kelp bass  0.6321431366
## 13509          Pelagic    5         northern anchovy  0.6700815047
## 13510    Benthopelagic    1        spotted sand bass  0.9169170130
## 13511          Benthic   16         hornyhead turbot  0.7775472353
## 13512         Midwater   11                kelp bass  0.8809089242
## 13513          Pelagic   21            chub mackerel  0.7941576717
## 13514    Benthopelagic    1          ocean whitefish  0.8402663662
## 13515    Benthopelagic    1       california corbina  0.5689228689
## 13516    Benthopelagic   21        spotted sand bass  0.9849519051
## 13517          Pelagic    5          pacific sardine  0.5815522765
## 13518    Benthopelagic    4                  opaleye  0.7669908239
## 13519          Pelagic    6          pacific sardine  0.9261463038
## 13520          Pelagic   11            chub mackerel  0.6702696117
## 13521         Midwater   21                kelp bass  0.5535705114
## 13522    Benthopelagic    1     california sheephead  0.7496625809
## 13523         Midwater   10                kelp bass  0.6682647537
## 13524    Benthopelagic   13            white croaker  0.7486604895
## 13525          Pelagic    5            chub mackerel  0.6529884323
## 13526          Benthic   15         hornyhead turbot  0.7762274514
## 13527    Benthopelagic   24          starry rockfish  0.6132559542
## 13528    Benthopelagic   14       vermilion rockfish  0.8034566232
## 13529    Benthopelagic   22            white croaker  0.7252767780
## 13530          Benthic    5    shovelnose guitarfish  0.5245723800
## 13531          Benthic   12  california scorpionfish  0.6172866679
## 13532    Benthopelagic   11   gray smoothhound shark  0.7829926926
## 13533    Benthopelagic    3        rainbow surfperch  0.4278634348
## 13534    Benthopelagic    1                  opaleye  0.7990262388
## 13535          Pelagic    5             market squid  0.7480675015
## 13536          Pelagic    4            chub mackerel  0.8942499662
## 13537          Pelagic    5          pacific sardine  0.5122977405
## 13538    Benthopelagic   15            white croaker  0.9895788790
## 13539          Pelagic    5             market squid  0.7379493936
## 13540          Pelagic   21            chub mackerel  0.6915967540
## 13541    Benthopelagic   11           brown rockfish  0.7855835434
## 13542    Benthopelagic   20        yellowfin croaker  0.7121544725
## 13543    Benthopelagic   22         barred sand bass  0.6061420014
## 13544          Pelagic    5          pacific sardine  0.6470722440
## 13545          Benthic   13         hornyhead turbot  0.7699862665
## 13546         Midwater   12                kelp bass  0.7404235235
## 13547    Benthopelagic   22            white croaker  0.8965485738
## 13548          Pelagic    6             market squid  0.5765026315
## 13549          Pelagic    5          pacific sardine  0.8054767595
## 13550    Benthopelagic    4       california corbina  0.7773327445
## 13551    Benthopelagic   21        spotted sand bass  0.6367450800
## 13552    Benthopelagic    6    greenspotted rockfish  0.8290981349
## 13553          Pelagic    5             market squid  1.1546045714
## 13554    Benthopelagic    4            white croaker  0.7889851421
## 13555    Benthopelagic    1       california corbina  0.9219666320
## 13556         Midwater    4         shiner surfperch  0.7471392857
## 13557    Benthopelagic   23       vermilion rockfish  0.5873180098
## 13558    Benthopelagic   20       california corbina  0.9024755282
## 13559          Pelagic    5            chub mackerel  0.5571721370
## 13560    Benthopelagic   21         barred sand bass  0.5750730054
## 13561          Benthic    5  california scorpionfish  0.7687998630
## 13562          Pelagic    5             market squid  0.6744418280
## 13563    Benthopelagic   21        yellowfin croaker  0.7924523524
## 13564          Benthic    5          longfin sanddab  0.8266352451
## 13565    Benthopelagic    5       vermilion rockfish  0.9542049361
## 13566         Midwater   13     chilipepper rockfish  0.6863394883
## 13567    Benthopelagic    4        yellowfin croaker  0.8598321613
## 13568    Benthopelagic   21        yellowfin croaker  0.7987247708
## 13569    Benthopelagic    1        yellowfin croaker  0.8170371275
## 13570    Benthopelagic    3                  opaleye  0.6732132110
## 13571    Benthopelagic   11        yellowfin croaker  0.7425853142
## 13572          Benthic   15         hornyhead turbot  0.7754766218
## 13573         Midwater    3         shiner surfperch  0.5371961785
## 13574    Benthopelagic    3        spotted sand bass  0.5105373703
## 13575          Benthic   13         hornyhead turbot  0.6673334350
## 13576    Benthopelagic    7       vermilion rockfish  0.5870990090
## 13577         Midwater    3                kelp bass  0.5507849983
## 13578    Benthopelagic   22       vermilion rockfish  0.6673753754
## 13579    Benthopelagic   11          gopher rockfish  1.0399231215
## 13580    Benthopelagic    4         barred sand bass  0.8359419806
## 13581    Benthopelagic    5         barred sand bass  0.5135041939
## 13582         Midwater   10                kelp bass  0.6321345041
## 13583          Benthic    4    california lizardfish  0.9538401980
## 13584    Benthopelagic    8            white croaker  0.4421532460
## 13585         Midwater   11         shiner surfperch  0.3546332079
## 13586    Benthopelagic    1     california sheephead  0.5538783564
## 13587    Benthopelagic    5            white croaker  0.5774977447
## 13588    Benthopelagic   11            white croaker  0.8458926973
## 13589          Benthic    1           diamond turbot  0.5843018994
## 13590    Benthopelagic    6       vermilion rockfish  0.6476234832
## 13591          Pelagic   21            chub mackerel  0.4502519488
## 13592         Midwater    4           striped mullet  0.8966636845
## 13593          Benthic   19  california scorpionfish  0.8518278854
## 13594         Midwater    1         shiner surfperch  0.7695954135
## 13595    Benthopelagic   11         barred surfperch  0.5638813702
## 13596    Benthopelagic   11        spotted sand bass  0.9798888741
## 13597          Pelagic    5            chub mackerel  0.9056202156
## 13598          Pelagic    5            chub mackerel  0.7322595719
## 13599    Benthopelagic   11            white croaker  0.8505331272
## 13600    Benthopelagic    5           brown rockfish  0.7230540923
## 13601         Midwater    4           striped mullet  1.0676943697
## 13602         Midwater   21                kelp bass  0.9159131376
## 13603    Benthopelagic   21        yellowfin croaker  0.9077474606
## 13604    Benthopelagic    1         barred surfperch  0.6625134022
## 13605    Benthopelagic   14          starry rockfish  1.1416832742
## 13606    Benthopelagic   11 brown smooth-hound shark  1.1466054930
## 13607    Benthopelagic   11           brown rockfish  0.6261487943
## 13608         Midwater    1        walleye surfperch  1.2417203597
## 13609    Benthopelagic   20              black perch  0.4221131343
## 13610          Benthic   10  california scorpionfish  0.7454338102
## 13611         Midwater   22                kelp bass  0.5504343064
## 13612    Benthopelagic    1        rainbow surfperch  0.3263255627
## 13613         Midwater   24      squarespot rockfish  0.2804344737
## 13614    Benthopelagic   21        yellowfin croaker  0.1863482499
## 13615    Benthopelagic   11       vermilion rockfish  0.7700987999
## 13616    Benthopelagic   11         barred sand bass  0.4513215927
## 13617          Benthic   22  california scorpionfish  0.9117883716
## 13618    Benthopelagic    1                  opaleye  0.9225533794
## 13619    Benthopelagic   21          white surfperch  0.4056232017
## 13620         Midwater    4           striped mullet  1.0488268567
## 13621          Pelagic   21            chub mackerel  0.6718751091
## 13622    Benthopelagic   22       vermilion rockfish  0.7053429776
## 13623    Benthopelagic   13            white croaker  1.2840546602
## 13624          Benthic    8  california scorpionfish  0.5929846832
## 13625    Benthopelagic    5       vermilion rockfish  0.7429542738
## 13626    Benthopelagic    3        rainbow surfperch  1.2630087355
## 13627    Benthopelagic    9   greenblotched rockfish  0.4326022117
## 13628          Pelagic   21            chub mackerel  0.8826110724
## 13629    Benthopelagic    5            white croaker  0.4440343254
## 13630          Pelagic   21            chub mackerel  0.5920045541
## 13631          Pelagic    5          pacific sardine  0.9076293077
## 13632         Midwater   12                kelp bass  1.1277386671
## 13633    Benthopelagic   11         barred sand bass  0.3992083478
## 13634          Benthic    8         hornyhead turbot  0.2958814783
## 13635          Benthic    4           spotted turbot  1.0026820187
## 13636          Benthic    5  california scorpionfish  1.4245957788
## 13637         Midwater   21                kelp bass  0.5090821775
## 13638    Benthopelagic    1       california corbina  0.7680640119
## 13639          Pelagic   21            chub mackerel  1.0775914850
## 13640          Benthic    3           diamond turbot  0.6915703955
## 13641          Pelagic   11            chub mackerel  0.8486922696
## 13642    Benthopelagic    9   greenblotched rockfish  0.8991827208
## 13643    Benthopelagic    5            white croaker  1.2251126135
## 13644    Benthopelagic    4        yellowfin croaker  0.3284778723
## 13645         Midwater    7      squarespot rockfish  1.0416172477
## 13646    Benthopelagic   15        speckled rockfish  0.7250802840
## 13647    Benthopelagic   11          white surfperch  0.5867232098
## 13648    Benthopelagic   13       vermilion rockfish  0.7342710169
## 13649    Benthopelagic    2        spotted sand bass  1.2266713763
## 13650    Benthopelagic   15       vermilion rockfish  1.0883631486
## 13651    Benthopelagic   13            white croaker  0.3270995686
## 13652    Benthopelagic    1              black perch  0.6033274666
## 13653    Benthopelagic    8         barred sand bass  1.0718717297
## 13654          Pelagic   11            chub mackerel  0.6638007769
## 13655          Pelagic    6             market squid  0.7804558773
## 13656    Benthopelagic   10            white croaker  1.1492190229
## 13657          Benthic    4           spotted turbot  0.7301746499
## 13658         Midwater   11                kelp bass  0.5990031440
## 13659    Benthopelagic    1              black perch  0.6076193826
## 13660    Benthopelagic   21            white croaker  0.5566693851
## 13661    Benthopelagic   20       california corbina  0.9159104424
## 13662    Benthopelagic   11              black perch  0.6703087077
## 13663          Pelagic   21            chub mackerel  0.3365657055
## 13664    Benthopelagic    1        yellowfin croaker  0.5957204835
## 13665    Benthopelagic   10           brown rockfish  0.6743566700
## 13666          Pelagic   11            chub mackerel  0.7815293239
## 13667    Benthopelagic   11          gopher rockfish  0.4367871061
## 13668    Benthopelagic   21        spotted sand bass  0.9530863778
## 13669    Benthopelagic   23       vermilion rockfish  0.9525816397
## 13670          Pelagic    5            chub mackerel  0.8432457840
## 13671         Midwater    3         shiner surfperch  0.8162590251
## 13672         Midwater   11         shiner surfperch  0.5766760863
## 13673    Benthopelagic   20         barred surfperch  0.6928350359
## 13674    Benthopelagic    3         barred surfperch  0.6027748300
## 13675    Benthopelagic   21        yellowfin croaker  1.0270590235
## 13676    Benthopelagic    5       california corbina  0.6647599414
## 13677    Benthopelagic    5            white croaker  0.6833347459
## 13678          Pelagic    5             market squid  0.5952771895
## 13679    Benthopelagic   17            white croaker  1.3171652931
## 13680    Benthopelagic   20         barred sand bass  0.5846778402
## 13681    Benthopelagic    3              black perch  0.6034632401
## 13682    Benthopelagic   11            white croaker  1.3266753361
## 13683    Benthopelagic    5                  opaleye  0.9079957276
## 13684    Benthopelagic    5            white croaker  0.5824395753
## 13685         Midwater   21                kelp bass  0.3677371261
## 13686    Benthopelagic   23       vermilion rockfish  0.8871024704
## 13687    Benthopelagic    4       california corbina  0.7110535410
## 13688    Benthopelagic   11              black perch  1.1615716552
## 13689    Benthopelagic    5                  opaleye  0.8014709821
## 13690    Benthopelagic    5            white croaker  0.7679481249
## 13691    Benthopelagic   11        spotted sand bass  1.3278266805
## 13692          Pelagic   21            chub mackerel  0.6968807445
## 13693          Pelagic    5         northern anchovy  0.5614822879
## 13694    Benthopelagic    3        spotted sand bass  0.8509089463
## 13695    Benthopelagic   20           pile surfperch  0.5325841797
## 13696          Pelagic    5         northern anchovy  1.2848855123
## 13697          Benthic   11         hornyhead turbot  0.6746797321
## 13698    Benthopelagic   11            black croaker  0.2697526429
## 13699    Benthopelagic    1          white surfperch  0.8040539671
## 13700    Benthopelagic   11         barred sand bass  0.5470302364
## 13701    Benthopelagic   14            white croaker  0.6088371350
## 13702    Benthopelagic    3       california corbina  1.0243984960
## 13703          Pelagic    5            chub mackerel  0.5883074802
## 13704    Benthopelagic   12            white croaker  0.8910203566
## 13705    Benthopelagic    1        yellowfin croaker  1.0196845227
## 13706    Benthopelagic   22          starry rockfish  1.1504296955
## 13707    Benthopelagic    5                  opaleye  0.5363550145
## 13708          Pelagic   11            chub mackerel  0.4307812717
## 13709    Benthopelagic   22            white croaker  0.5605495234
## 13710    Benthopelagic   17        speckled rockfish  1.2749446971
## 13711    Benthopelagic   11         barred sand bass  0.9217858853
## 13712    Benthopelagic   21        spotted sand bass  0.8147750077
## 13713    Benthopelagic    1        spotted sand bass  0.5285455227
## 13714    Benthopelagic    4           pile surfperch  0.5075007535
## 13715    Benthopelagic    5                  opaleye  0.4625639203
## 13716         Midwater    2                kelp bass  0.9976402904
## 13717    Benthopelagic   10              black perch  1.0513111881
## 13718          Pelagic    5          pacific sardine  0.3393171972
## 13719         Midwater    1         shiner surfperch  0.8375781178
## 13720    Benthopelagic    1         barred surfperch  1.2304064931
## 13721    Benthopelagic    2            white croaker  0.5404177279
## 13722    Benthopelagic    1            white croaker  0.5732688707
## 13723    Benthopelagic    5         barred sand bass  1.4798347373
## 13724    Benthopelagic   24       vermilion rockfish  0.5435889914
## 13725         Midwater    3          canary rockfish  0.6167252590
## 13726    Benthopelagic   18            white croaker  0.8791733227
## 13727    Benthopelagic    7           brown rockfish  0.8214420881
## 13728         Midwater    5                queenfish  0.6152890842
## 13729          Benthic    1           diamond turbot  0.3946386283
## 13730    Benthopelagic    1            white croaker  0.6238114342
## 13731          Pelagic    5             market squid  0.6010227422
## 13732          Pelagic    5             market squid  1.0517946653
## 13733    Benthopelagic    3        spotted sand bass  0.3431662332
## 13734          Pelagic    5             market squid  0.3227815498
## 13735         Midwater   11                kelp bass  0.8587880437
## 13736          Benthic    5       california halibut  0.3584265634
## 13737          Benthic   19         hornyhead turbot  0.7301026137
## 13738          Pelagic    5         northern anchovy  0.8387485580
## 13739         Midwater   21                kelp bass  0.6781413107
## 13740          Pelagic   21            chub mackerel  0.9918821918
## 13741         Midwater    1                queenfish  1.0816009860
## 13742    Benthopelagic    3        spotted sand bass  0.9141712890
## 13743    Benthopelagic   14    greenspotted rockfish  0.3545316637
## 13744    Benthopelagic    5            white croaker  0.9387469322
## 13745    Benthopelagic   10   greenblotched rockfish  0.1256853506
## 13746    Benthopelagic    5                  opaleye  0.8820005140
## 13747    Benthopelagic    1            white croaker  0.3760984866
## 13748          Pelagic    5          pacific sardine  0.5412011031
## 13749         Midwater    1            blue rockfish  0.5263983392
## 13750         Midwater   21                kelp bass  0.7365857750
## 13751    Benthopelagic    3         barred sand bass  0.7639112890
## 13752          Pelagic   21            chub mackerel  0.6603035043
## 13753    Benthopelagic    4                  opaleye  1.3596557058
## 13754    Benthopelagic    1     california sheephead  0.4095111897
## 13755    Benthopelagic   11              black perch  0.8835290993
## 13756    Benthopelagic    1        yellowfin croaker  0.9081482743
## 13757    Benthopelagic   18              black perch  0.7907698610
## 13758    Benthopelagic    1        yellowfin croaker  0.7470733269
## 13759    Benthopelagic   21        spotted sand bass  0.1900322436
## 13760    Benthopelagic    5                  opaleye  0.4736149399
## 13761    Benthopelagic   12       vermilion rockfish  0.5316063245
## 13762    Benthopelagic   18       vermilion rockfish  0.6885508396
## 13763    Benthopelagic    3              black perch  1.1708586906
## 13764         Midwater    3                kelp bass  0.5377223792
## 13765    Benthopelagic   12            white croaker  0.4855365385
## 13766         Midwater   21                kelp bass  0.7755094478
## 13767         Midwater    4         shiner surfperch  0.2776410227
## 13768    Benthopelagic   11          gopher rockfish  0.6040502043
## 13769    Benthopelagic    3       vermilion rockfish  0.6754092926
## 13770    Benthopelagic   14         barred sand bass  0.8803232374
## 13771         Midwater   21                kelp bass  0.5343455787
## 13772         Midwater    1                queenfish  0.8296149819
## 13773    Benthopelagic   22          starry rockfish  0.9762030736
## 13774    Benthopelagic   20            white croaker  1.0442408485
## 13775    Benthopelagic    4       california corbina  0.7445695465
## 13776    Benthopelagic    8              black perch  1.2960342871
## 13777          Benthic   20         hornyhead turbot  0.1110221413
## 13778         Midwater   21                kelp bass  0.8057994723
## 13779    Benthopelagic    4              black perch  0.6158591977
## 13780    Benthopelagic    4            white croaker  0.8888611486
## 13781    Benthopelagic    4              black perch  0.4602279036
## 13782    Benthopelagic   21        yellowfin croaker  1.2739970169
## 13783    Benthopelagic    1                  opaleye  0.5170131151
## 13784          Benthic   21         hornyhead turbot  0.9834973567
## 13785    Benthopelagic    4         barred surfperch  0.8318374718
## 13786         Midwater   11                kelp bass  0.9378487244
## 13787          Pelagic    5             market squid  0.7468457615
## 13788          Benthic    1           diamond turbot  0.8382668094
## 13789    Benthopelagic    1            white croaker  1.1876811340
## 13790    Benthopelagic    4              black perch  0.8621700145
## 13791          Pelagic    6             market squid  0.6892428397
## 13792    Benthopelagic   11            white croaker  1.2594978934
## 13793    Benthopelagic    9            white croaker  0.8435758925
## 13794          Pelagic   21         northern anchovy  0.9038387805
## 13795    Benthopelagic   11           brown rockfish  0.8175667542
## 13796    Benthopelagic   11          ocean whitefish  0.9302033040
## 13797          Benthic   17         hornyhead turbot  0.3169628802
## 13798          Benthic   11  california scorpionfish  0.8047064081
## 13799          Benthic   20           diamond turbot  0.6488255688
## 13800    Benthopelagic    4        spotted sand bass  0.9461846245
## 13801         Midwater   11           olive rockfish  1.0315692575
## 13802    Benthopelagic    1              black perch  0.9082859796
## 13803    Benthopelagic    5            white croaker  0.5864168287
## 13804          Pelagic    5         northern anchovy  1.0779812884
## 13805    Benthopelagic   11        yellowfin croaker  0.3474173050
## 13806         Midwater   16                kelp bass  0.9905480652
## 13807    Benthopelagic   11            white croaker  1.0589906420
## 13808    Benthopelagic   11              black perch  0.9099722654
## 13809         Midwater   18                kelp bass  1.0678643575
## 13810    Benthopelagic    3              black perch  0.2333515253
## 13811         Midwater    1                kelp bass  0.8990522493
## 13812    Benthopelagic   15            white croaker  0.9923013948
## 13813    Benthopelagic   22         barred sand bass  0.6846886308
## 13814    Benthopelagic    1            white croaker  0.5515958462
## 13815    Benthopelagic   21        yellowfin croaker  0.7716623535
## 13816          Benthic    5  california scorpionfish  0.3708120494
## 13817          Pelagic   21            chub mackerel  0.2232488493
## 13818          Benthic    1           spotted turbot  0.6948696639
## 13819    Benthopelagic   11          gopher rockfish  0.9500391707
## 13820    Benthopelagic    1            white croaker  0.7240055438
## 13821    Benthopelagic    5       california corbina  1.0034642481
## 13822    Benthopelagic    1              black perch  1.0580643347
## 13823    Benthopelagic   11          spotfin croaker  1.1270715495
## 13824    Benthopelagic    8          copper rockfish  1.0242494704
## 13825    Benthopelagic    4        yellowfin croaker  1.1471176366
## 13826    Benthopelagic   12            white croaker  1.0455091585
## 13827         Midwater    8      yellowtail rockfish  0.9172016089
## 13828         Midwater    3                kelp bass  0.7985680535
## 13829    Benthopelagic    5          spotfin croaker  0.6667588476
## 13830          Pelagic    5          pacific sardine  0.3029856628
## 13831          Benthic    5  california scorpionfish -0.0216265401
## 13832    Benthopelagic    3         barred surfperch  1.0202239736
## 13833          Pelagic    6          pacific sardine  0.7868955443
## 13834    Benthopelagic   11       vermilion rockfish  0.7027530519
## 13835          Pelagic    5         northern anchovy  0.3740930530
## 13836          Pelagic   11            chub mackerel  0.9715976654
## 13837          Pelagic   21            chub mackerel  0.8467529088
## 13838         Midwater    5                top smelt  0.8366984304
## 13839         Midwater    2                queenfish  0.9226990155
## 13840    Benthopelagic    4            white croaker  0.6218280434
## 13841    Benthopelagic   18              black perch  0.7390241757
## 13842         Midwater   21                kelp bass  1.1076819645
## 13843    Benthopelagic    4          copper rockfish  0.5876150547
## 13844    Benthopelagic   20              black perch  0.1676068084
## 13845          Benthic    1         speckled sanddab  0.9435048998
## 13846    Benthopelagic   18            white croaker  0.8736485749
## 13847    Benthopelagic   11         barred sand bass  0.6006015704
## 13848    Benthopelagic   11          spotfin croaker  0.9181077661
## 13849          Pelagic   11            chub mackerel  0.6912134968
## 13850          Pelagic    5            chub mackerel  0.7286560909
## 13851          Benthic   18         hornyhead turbot  0.4637192648
## 13852          Benthic   12  california scorpionfish  0.5592357518
## 13853          Benthic    1             fantail sole  0.7665674391
## 13854         Midwater   21                kelp bass  0.7204991086
## 13855    Benthopelagic    3          white surfperch  0.8479280865
## 13856    Benthopelagic   13       vermilion rockfish  0.8753725298
## 13857    Benthopelagic   18            white croaker  0.9728825029
## 13858         Midwater    1         shiner surfperch  1.1520187152
## 13859    Benthopelagic   14            white croaker  0.9559899897
## 13860         Midwater   11                kelp bass  0.9742117826
## 13861          Benthic    5         speckled sanddab  0.3201982278
## 13862          Benthic   17  california scorpionfish  0.6768246657
## 13863    Benthopelagic   21       california corbina  0.9391425161
## 13864          Benthic   11  california scorpionfish  1.0417456473
## 13865          Benthic   17         hornyhead turbot  0.7184711208
## 13866    Benthopelagic   12              black perch  0.5758065526
## 13867    Benthopelagic    1            white croaker  1.0159526183
## 13868    Benthopelagic    5       california corbina  0.2767310755
## 13869    Benthopelagic    4              black perch  0.4680127376
## 13870    Benthopelagic    5            white croaker  0.9139921474
## 13871    Benthopelagic    1            white croaker  0.8686247565
## 13872          Benthic   14         hornyhead turbot  1.0363179603
## 13873          Benthic    4    shovelnose guitarfish  0.4681089516
## 13874         Midwater    1        walleye surfperch  0.8716266682
## 13875         Midwater   18                kelp bass  0.9796260964
## 13876    Benthopelagic    5            white croaker  1.1959401996
## 13877    Benthopelagic    5         barred sand bass  0.9386853900
## 13878         Midwater    2                kelp bass  0.4135218488
## 13879    Benthopelagic   21         barred sand bass  0.5195943530
## 13880    Benthopelagic   12       vermilion rockfish  0.6768338254
## 13881    Benthopelagic    2       quillback rockfish  0.8624460261
## 13882    Benthopelagic   21            white croaker  0.4514926499
## 13883    Benthopelagic   16       vermilion rockfish  0.9960351598
## 13884    Benthopelagic    3              black perch  0.9043658047
## 13885          Benthic    8  california scorpionfish  1.0898462867
## 13886          Pelagic    5          pacific sardine  1.0172683873
## 13887          Benthic    5  california scorpionfish  0.9280426174
## 13888    Benthopelagic    8          copper rockfish  0.8940078101
## 13889          Pelagic    5          pacific sardine  0.5741933024
## 13890    Benthopelagic    2            white croaker  0.4947660596
## 13891    Benthopelagic    1            white croaker  1.0396369854
## 13892    Benthopelagic   21            leopard shark  0.8824269761
## 13893    Benthopelagic   14              black perch  0.8319436317
## 13894    Benthopelagic   16       vermilion rockfish  0.7831219417
## 13895    Benthopelagic   10       vermilion rockfish  0.5527667389
## 13896         Midwater   21                kelp bass  0.4845656726
## 13897    Benthopelagic    1            rosy rockfish  0.4799825789
## 13898         Midwater    3         shiner surfperch  0.4657652592
## 13899    Benthopelagic   11            white croaker  0.7379849374
## 13900    Benthopelagic    1         barred surfperch  0.8423137667
## 13901         Midwater    1         shiner surfperch  1.0769979422
## 13902          Pelagic   21            chub mackerel  0.9123308632
## 13903    Benthopelagic   16       vermilion rockfish  0.6497838193
## 13904    Benthopelagic    7        speckled rockfish  0.8400262382
## 13905         Midwater    4         shiner surfperch  0.8156627066
## 13906    Benthopelagic   11       vermilion rockfish  0.7127209946
## 13907          Pelagic    5            chub mackerel  0.7892929992
## 13908         Midwater   14                kelp bass  0.7034459324
## 13909    Benthopelagic    3              black perch  1.2980841032
## 13910    Benthopelagic    5            black croaker  0.8781338312
## 13911         Midwater    5                top smelt  0.5681848949
## 13912         Midwater   11                top smelt  0.5615823363
## 13913          Benthic   10         hornyhead turbot  1.2282037574
## 13914          Pelagic    5             market squid  0.4835160918
## 13915    Benthopelagic   12              black perch  0.8259554686
## 13916    Benthopelagic    1       california corbina  0.7408619571
## 13917    Benthopelagic    3         barred surfperch  0.5789243494
## 13918    Benthopelagic   19       vermilion rockfish  0.6788212922
## 13919    Benthopelagic   15        speckled rockfish  1.0749573445
## 13920          Pelagic    5          pacific sardine  0.4924735791
## 13921    Benthopelagic    4         barred surfperch  0.8079199289
## 13922    Benthopelagic   11              black perch  0.8877752673
## 13923         Midwater   11                kelp bass  0.8275454499
## 13924    Benthopelagic   11         barred surfperch  0.8604428215
## 13925          Pelagic    5         northern anchovy  0.7827936127
## 13926          Pelagic    5          pacific sardine  0.6592864363
## 13927    Benthopelagic   11            white croaker  0.6155055869
## 13928    Benthopelagic   19            white croaker  1.0240294050
## 13929    Benthopelagic    3              black perch  0.4703563158
## 13930    Benthopelagic   19       vermilion rockfish  0.6330650833
## 13931    Benthopelagic   12           brown rockfish  0.9572953642
## 13932    Benthopelagic    6          copper rockfish  0.5307895713
## 13933          Pelagic    5             market squid  0.6158562551
## 13934    Benthopelagic   22              black perch  0.9191176963
## 13935          Benthic   20       california halibut  0.5130712559
## 13936    Benthopelagic    2        spotted sand bass  1.1220595233
## 13937          Benthic    1           diamond turbot  0.8601423593
## 13938          Benthic   23         hornyhead turbot  0.6691987669
## 13939    Benthopelagic    5         barred sand bass  0.9002562990
## 13940          Benthic    4    california lizardfish  1.1840763687
## 13941    Benthopelagic   11 brown smooth-hound shark  0.9930034317
## 13942    Benthopelagic   21            white croaker  0.9439571679
## 13943    Benthopelagic    4            flag rockfish  0.9684005487
## 13944          Benthic   12         hornyhead turbot  0.4856775751
## 13945          Benthic    4    shovelnose guitarfish  1.2956295008
## 13946    Benthopelagic   14            white croaker  1.3854316240
## 13947    Benthopelagic    5     california sheephead  0.5554752779
## 13948          Pelagic    5         northern anchovy  0.6758588594
## 13949    Benthopelagic   20       vermilion rockfish  1.0078679281
## 13950    Benthopelagic    2         barred surfperch  0.8589440725
## 13951         Midwater   17      squarespot rockfish  0.6561860317
## 13952    Benthopelagic   18       vermilion rockfish  0.8722978648
## 13953    Benthopelagic   11            white croaker  0.7245203111
## 13954    Benthopelagic    4         barred sand bass  1.0586824982
## 13955         Midwater    4                top smelt  0.7310747780
## 13956          Benthic   17         hornyhead turbot  1.0544769905
## 13957    Benthopelagic   11            white croaker -0.0968976934
## 13958    Benthopelagic   11         barred surfperch  0.3045324276
## 13959          Pelagic    5             market squid  0.7504376535
## 13960          Benthic   19  california scorpionfish  1.1166097313
## 13961          Pelagic    5             market squid -0.0013458305
## 13962    Benthopelagic   10         barred sand bass  0.5131158453
## 13963          Pelagic   11            chub mackerel  0.1971234376
## 13964    Benthopelagic   11              black perch  0.3563694230
## 13965    Benthopelagic   22              black perch  1.1687747937
## 13966    Benthopelagic   12            white croaker  0.7724044514
## 13967          Benthic    5    shovelnose guitarfish  0.8223988101
## 13968    Benthopelagic   20       california corbina  0.9596521769
## 13969    Benthopelagic    5                  opaleye  0.7674101966
## 13970    Benthopelagic   16       vermilion rockfish  1.1324042246
## 13971    Benthopelagic    1        spotted sand bass  0.7539579434
## 13972    Benthopelagic    3        rainbow surfperch  0.5374308876
## 13973    Benthopelagic   17            white croaker  0.5350440594
## 13974          Benthic   22  california scorpionfish  0.6040953828
## 13975         Midwater   21                kelp bass  0.6979584403
## 13976          Pelagic    5             market squid  0.9967401011
## 13977    Benthopelagic   21            white croaker  0.5278524291
## 13978    Benthopelagic    1        rainbow surfperch  0.6691538708
## 13979    Benthopelagic    4       california corbina  0.9608168648
## 13980          Pelagic   21            chub mackerel  0.8888347329
## 13981    Benthopelagic   20            white croaker  1.0520540289
## 13982          Pelagic    6          pacific sardine  1.2074711772
## 13983         Midwater    4           striped mullet  1.0756132637
## 13984          Pelagic   21            chub mackerel  0.8664433714
## 13985          Benthic    1         speckled sanddab  1.0692497344
## 13986    Benthopelagic   11            white croaker  1.0530820828
## 13987          Benthic    8         hornyhead turbot  0.6087177519
## 13988         Midwater    4         shiner surfperch  1.0975548162
## 13989    Benthopelagic   10       vermilion rockfish  0.7655622832
## 13990    Benthopelagic    1        rainbow surfperch  1.0324007558
## 13991         Midwater   11         shiner surfperch  0.6714061740
## 13992    Benthopelagic    5            leopard shark  1.2090107888
## 13993          Pelagic   21            chub mackerel  1.2893335811
## 13994    Benthopelagic   11              black perch  0.5344204852
## 13995         Midwater    4         shiner surfperch  0.5269818797
## 13996    Benthopelagic   14              black perch  1.2165633981
## 13997         Midwater   11                kelp bass  0.6348285508
## 13998    Benthopelagic   18            white croaker  0.7047858403
## 13999         Midwater    4                top smelt  0.5115394336
## 14000    Benthopelagic    5   gray smoothhound shark  1.0312632606
## 14001    Benthopelagic   23            white croaker  2.5359052040
## 14002          Pelagic   21           slough anchovy  1.8366097001
## 14003         Midwater    1                queenfish  1.9551248472
## 14004    Benthopelagic   21            white croaker  2.8160495193
## 14005         Midwater    1                kelp bass  2.5594532724
## 14006    Benthopelagic   24       vermilion rockfish  2.0331516739
## 14007          Pelagic   21            chub mackerel  1.9912264569
## 14008          Pelagic    5          pacific sardine  2.2304476997
## 14009    Benthopelagic    4       california corbina  2.1566049019
## 14010    Benthopelagic    3       california corbina  2.3680262405
## 14011    Benthopelagic   16              black perch  2.6942791140
## 14012          Pelagic    5          pacific sardine  2.3890758178
## 14013          Pelagic   21            chub mackerel  2.1759014325
## 14014    Benthopelagic   21         barred sand bass  3.1842565302
## 14015          Pelagic    6          pacific sardine  1.8112549675
## 14016    Benthopelagic    5        yellowfin croaker  2.0542025403
## 14017          Benthic    1  california scorpionfish  1.9740554608
## 14018         Midwater    4         shiner surfperch  2.2488627915
## 14019          Benthic    5  california scorpionfish  1.9508688747
## 14020    Benthopelagic    5       california corbina  2.4526767906
## 14021          Benthic   19         hornyhead turbot  2.3240045997
## 14022    Benthopelagic    2              black perch  2.1920916449
## 14023    Benthopelagic   21        spotted sand bass  2.5850385935
## 14024    Benthopelagic    7       vermilion rockfish  2.0403182896
## 14025    Benthopelagic    3              black perch  2.8934340339
## 14026          Pelagic   11            chub mackerel  2.3357702211
## 14027    Benthopelagic   22            white croaker  1.8905590418
## 14028         Midwater    2         shiner surfperch  2.4879350179
## 14029    Benthopelagic   11   gray smoothhound shark  2.6427857824
## 14030    Benthopelagic   19            white croaker  2.7187157806
## 14031    Benthopelagic   11            white croaker  2.5200864459
## 14032    Benthopelagic    5            white croaker  2.2783083616
## 14033    Benthopelagic   21          white surfperch  1.9714061949
## 14034         Midwater    5                 halfmoon  2.2654761212
## 14035         Midwater   10                kelp bass  2.9956449671
## 14036         Midwater    1                kelp bass  2.7224118387
## 14037         Midwater    3         shiner surfperch  1.8946929060
## 14038    Benthopelagic   10            white croaker  2.4866144036
## 14039         Midwater    5                queenfish  2.2416315616
## 14040    Benthopelagic    1            white croaker  2.4044174960
## 14041    Benthopelagic    4              black perch  2.4015200379
## 14042    Benthopelagic    1         barred sand bass  2.2325082100
## 14043         Midwater    5                kelp bass  2.2896103784
## 14044          Pelagic    5          pacific sardine  1.8214790947
## 14045    Benthopelagic   21         barred sand bass  2.4127581020
## 14046    Benthopelagic    4           pile surfperch  2.1627771658
## 14047         Midwater   14                kelp bass  2.4018258986
## 14048    Benthopelagic   16          copper rockfish  2.3867365088
## 14049    Benthopelagic    3        spotted sand bass  2.6036486566
## 14050         Midwater   16                kelp bass  2.6815791882
## 14051         Midwater    4                kelp bass  2.5459148567
## 14052    Benthopelagic   14              black perch  2.8163167159
## 14053          Pelagic    6          pacific sardine  2.9061712912
## 14054    Benthopelagic   11              black perch  2.4428328768
## 14055    Benthopelagic    4           pile surfperch  2.4793583220
## 14056    Benthopelagic    5        yellowfin croaker  2.9536950319
## 14057          Benthic   14         hornyhead turbot  2.2862413021
## 14058          Pelagic    5          pacific sardine  2.4530151857
## 14059          Pelagic   21            chub mackerel  2.3401586624
## 14060         Midwater   21                kelp bass  1.9953728266
## 14061    Benthopelagic   10              black perch  2.6794315845
## 14062         Midwater   21                kelp bass  2.2037823071
## 14063          Pelagic    5          pacific sardine  2.0916847179
## 14064         Midwater    3         shiner surfperch  2.3036474330
## 14065    Benthopelagic    8         barred sand bass  2.5571972830
## 14066    Benthopelagic   11         barred sand bass  1.8599322968
## 14067         Midwater    1        walleye surfperch  2.2603340875
## 14068          Benthic   20  california scorpionfish  2.4481789357
## 14069          Benthic   23         hornyhead turbot  2.6101899126
## 14070          Benthic   19  california scorpionfish  2.6959036129
## 14071    Benthopelagic   12           brown rockfish  2.2046478887
## 14072    Benthopelagic   11          white surfperch  2.2587818311
## 14073    Benthopelagic    5       california corbina  2.4892921991
## 14074    Benthopelagic    4              black perch  2.4540043844
## 14075    Benthopelagic    5            white croaker  2.6180744849
## 14076    Benthopelagic    3        spotted sand bass  2.0869463072
## 14077    Benthopelagic   20            white croaker  2.3155675344
## 14078         Midwater    1         shiner surfperch  2.7942276053
## 14079          Benthic   20         hornyhead turbot  2.1731939773
## 14080          Benthic    1           spotted turbot  2.8169420020
## 14081          Benthic   23         hornyhead turbot  2.2681322479
## 14082    Benthopelagic   14       vermilion rockfish  2.4648335115
## 14083          Pelagic    5             market squid  1.6724815616
## 14084    Benthopelagic    8            white croaker  2.2326904455
## 14085          Pelagic    5             market squid  2.1025688013
## 14086    Benthopelagic    5       vermilion rockfish  2.4917463861
## 14087    Benthopelagic   11            white croaker  2.1545618757
## 14088          Benthic    3           diamond turbot  2.8310449356
## 14089          Pelagic   21         northern anchovy  1.5360673974
## 14090          Benthic    8         hornyhead turbot  2.4562525710
## 14091    Benthopelagic    4         barred sand bass  2.2427476633
## 14092         Midwater    3                jacksmelt  2.7567104520
## 14093         Midwater   21                kelp bass  2.3487417077
## 14094    Benthopelagic   11        yellowfin croaker  2.1960110931
## 14095         Midwater    8                kelp bass  2.2264291263
## 14096    Benthopelagic    9       vermilion rockfish  2.1291812991
## 14097         Midwater   21                kelp bass  2.0244110521
## 14098    Benthopelagic    1         barred surfperch  2.2496822801
## 14099         Midwater   11                top smelt  2.1136313425
## 14100    Benthopelagic    5            white croaker  1.8192326403
## 14101    Benthopelagic    4         barred surfperch  2.6760553564
## 14102    Benthopelagic   21        yellowfin croaker  2.3897762611
## 14103    Benthopelagic    5         barred sand bass  2.4903468540
## 14104          Pelagic   21            chub mackerel  2.2672949689
## 14105         Midwater   21                kelp bass  2.9302120041
## 14106    Benthopelagic    8            white croaker  2.7316965043
## 14107          Pelagic   21            chub mackerel  2.6251683295
## 14108    Benthopelagic   16        speckled rockfish  2.1225174801
## 14109    Benthopelagic    5         barred sand bass  2.3996254522
## 14110          Pelagic   21           slough anchovy  1.8922889951
## 14111    Benthopelagic   11            rosy rockfish  2.2752162766
## 14112          Benthic    4           diamond turbot  2.7998798793
## 14113          Benthic   16  california scorpionfish  1.5627140809
## 14114    Benthopelagic   20       vermilion rockfish  2.3616472802
## 14115         Midwater   20                kelp bass  2.1671060858
## 14116         Midwater   21                kelp bass  1.9961216906
## 14117          Benthic   13         hornyhead turbot  2.0365787657
## 14118          Pelagic   21            chub mackerel  2.2778265186
## 14119    Benthopelagic   14       vermilion rockfish  2.3723678224
## 14120         Midwater    5                kelp bass  2.4405991837
## 14121          Benthic   10  california scorpionfish  2.1599253421
## 14122    Benthopelagic    5         barred sand bass  2.8858410036
## 14123         Midwater    4                kelp bass  2.1656732447
## 14124    Benthopelagic    1        yellowfin croaker  3.1794972490
## 14125    Benthopelagic   10           brown rockfish  2.1823431266
## 14126          Benthic    5          longfin sanddab  2.2911396245
## 14127    Benthopelagic    3        yellowfin croaker  2.2291283274
## 14128    Benthopelagic   11            white croaker  1.8442909656
## 14129         Midwater   20                kelp bass  1.9891869334
## 14130          Benthic    5       california halibut  2.4645490554
## 14131          Pelagic    5          pacific sardine  2.5160863678
## 14132         Midwater   21                kelp bass  2.2345568284
## 14133    Benthopelagic    8            white croaker  2.8495617634
## 14134    Benthopelagic    3       california corbina  2.8758682220
## 14135    Benthopelagic    4        spotted sand bass  2.5369189511
## 14136          Benthic   10  california scorpionfish  2.2823118036
## 14137          Benthic    5  california scorpionfish  2.1263978174
## 14138         Midwater   11                top smelt  2.8135695844
## 14139    Benthopelagic   17            white croaker  2.4016957322
## 14140    Benthopelagic    5            white croaker  3.0708528503
## 14141          Pelagic   21         northern anchovy  1.9462708281
## 14142          Pelagic    5          pacific sardine  2.3281792129
## 14143    Benthopelagic    1       california corbina  2.3662846022
## 14144         Midwater    5                kelp bass  2.3112704991
## 14145    Benthopelagic   20            white croaker  2.4551226442
## 14146    Benthopelagic    3            rosy rockfish  2.7066061906
## 14147    Benthopelagic   21        yellowfin croaker  2.4489795705
## 14148    Benthopelagic    1         barred surfperch  2.0966032642
## 14149    Benthopelagic   14         barred sand bass  2.4982503728
## 14150    Benthopelagic    5       vermilion rockfish  2.0228426312
## 14151         Midwater   21                kelp bass  1.8844845512
## 14152    Benthopelagic    3           pile surfperch  2.5041227311
## 14153    Benthopelagic   19       vermilion rockfish  2.4675902639
## 14154          Pelagic    5            chub mackerel  2.6915632968
## 14155         Midwater   21                kelp bass  2.7716123083
## 14156         Midwater    5                queenfish  2.4032112602
## 14157    Benthopelagic   11            white croaker  2.1142449116
## 14158          Benthic    1           diamond turbot  2.2955967118
## 14159          Benthic   22         hornyhead turbot  2.5273451336
## 14160         Midwater    5                kelp bass  2.4610096619
## 14161    Benthopelagic   21          spotfin croaker  2.2407066618
## 14162          Pelagic    5            chub mackerel  2.3003973353
## 14163    Benthopelagic    5       vermilion rockfish  2.5353320826
## 14164    Benthopelagic    1         barred surfperch  2.1145974489
## 14165    Benthopelagic   11            white croaker  2.3135746465
## 14166    Benthopelagic    4         barred sand bass  2.1438445648
## 14167    Benthopelagic   17       vermilion rockfish  1.9488588017
## 14168    Benthopelagic   11          white surfperch  1.9509055411
## 14169    Benthopelagic    8          copper rockfish  1.9449148486
## 14170         Midwater   11            kelp rockfish  2.4462274299
## 14171    Benthopelagic    5            white croaker  2.5840049715
## 14172    Benthopelagic    4         barred surfperch  2.4416293188
## 14173    Benthopelagic    4       california corbina  2.8261727718
## 14174          Benthic   20       california halibut  2.4852094457
## 14175          Benthic    3           diamond turbot  2.4063659033
## 14176    Benthopelagic   12         barred sand bass  1.6989211639
## 14177         Midwater    1                 halfmoon  2.5617651092
## 14178    Benthopelagic   13       vermilion rockfish  2.5530723421
## 14179          Pelagic    5        pacific barracuda  2.3093458060
## 14180    Benthopelagic    3              black perch  2.0810185926
## 14181          Pelagic   21            chub mackerel  2.4121793273
## 14182    Benthopelagic   14            white croaker  2.6521704879
## 14183    Benthopelagic   24       vermilion rockfish  2.3294252713
## 14184    Benthopelagic   20       california corbina  2.2557149102
## 14185    Benthopelagic   21         barred sand bass  2.0520412347
## 14186    Benthopelagic   11            white croaker  2.4118210597
## 14187         Midwater   21                kelp bass  2.3383362768
## 14188         Midwater    1         shiner surfperch  2.3879120413
## 14189         Midwater    5         shiner surfperch  2.0312503826
## 14190    Benthopelagic   11           brown rockfish  2.1693144921
## 14191    Benthopelagic    5         barred sand bass  2.6679110224
## 14192          Pelagic    5          pacific sardine  2.2425506401
## 14193          Benthic   16         hornyhead turbot  2.0639402260
## 14194         Midwater    1         shiner surfperch  2.3912771391
## 14195    Benthopelagic    5                  opaleye  1.7737782713
## 14196    Benthopelagic   20            white croaker  1.9734050663
## 14197    Benthopelagic   21            white croaker  2.4748095118
## 14198    Benthopelagic   11          spotfin croaker  2.2033272793
## 14199          Benthic   22  california scorpionfish  3.0559765100
## 14200          Pelagic    5          pacific sardine  1.8320489282
## 14201    Benthopelagic    1                  opaleye  2.1873579235
## 14202         Midwater    1         shiner surfperch  2.2597397786
## 14203    Benthopelagic   11         barred surfperch  2.4073453333
## 14204         Midwater   11         shiner surfperch  2.0656985316
## 14205    Benthopelagic   12            white croaker  2.5252258909
## 14206         Midwater   21                queenfish  1.6508645292
## 14207          Benthic    4    shovelnose guitarfish  1.9245798838
## 14208    Benthopelagic   21         barred sand bass  2.0676052058
## 14209    Benthopelagic   10            white croaker  1.9640263327
## 14210    Benthopelagic    1       california corbina  2.7123533721
## 14211    Benthopelagic   11            white croaker  2.4729904503
## 14212         Midwater   11                kelp bass  2.2886354023
## 14213    Benthopelagic    3        spotted sand bass  2.6456806155
## 14214    Benthopelagic    3          copper rockfish  2.4429837607
## 14215          Pelagic   11            chub mackerel  1.9388223734
## 14216          Pelagic    5             market squid  1.8065983419
## 14217          Pelagic   11            chub mackerel  2.0843893130
## 14218          Pelagic   21            chub mackerel  2.1281331852
## 14219          Benthic   22  california scorpionfish  2.0900713024
## 14220         Midwater    4         shiner surfperch  2.2044689537
## 14221          Benthic   18  california scorpionfish  2.3375660980
## 14222    Benthopelagic    5                  opaleye  2.1462013200
## 14223         Midwater   21                queenfish  2.3310745816
## 14224    Benthopelagic    5          copper rockfish  2.6028421916
## 14225    Benthopelagic   11         barred sand bass  2.4539434440
## 14226    Benthopelagic   21        spotted sand bass  2.3440798971
## 14227    Benthopelagic   22            white croaker  2.5759717243
## 14228          Pelagic    5         northern anchovy  2.1496928817
## 14229    Benthopelagic   21            leopard shark  1.8933650449
## 14230         Midwater   11         shiner surfperch  1.8738583279
## 14231    Benthopelagic   21            white croaker  2.9238716672
## 14232          Benthic    5       california halibut  1.9349900243
## 14233         Midwater   11                kelp bass  2.5694177354
## 14234         Midwater   18                kelp bass  2.3718310910
## 14235    Benthopelagic    5            white croaker  2.2500686991
## 14236    Benthopelagic    1         barred surfperch  2.7764491810
## 14237    Benthopelagic   20            white croaker  2.5192503899
## 14238    Benthopelagic    4 brown smooth-hound shark  2.1464667634
## 14239    Benthopelagic   11         barred sand bass  2.4885548013
## 14240          Benthic   15         hornyhead turbot  2.2151727997
## 14241          Benthic    5  california scorpionfish  2.2706679455
## 14242    Benthopelagic   14       vermilion rockfish  2.1136902412
## 14243          Pelagic    5             market squid  2.4657250339
## 14244    Benthopelagic    5            black croaker  2.1300057096
## 14245    Benthopelagic    1         barred surfperch  2.4235894999
## 14246         Midwater    2        walleye surfperch  2.6960327993
## 14247    Benthopelagic   16       vermilion rockfish  2.3570823512
## 14248          Pelagic    4            chub mackerel  2.7194692423
## 14249    Benthopelagic    1        yellowfin croaker  2.2370092379
## 14250         Midwater    5                kelp bass  2.2017938400
## 14251    Benthopelagic    6          copper rockfish  2.1388343799
## 14252          Benthic    9         hornyhead turbot  2.4831686025
## 14253    Benthopelagic   13           brown rockfish  2.4702011854
## 14254    Benthopelagic    4            white croaker  2.2143191175
## 14255    Benthopelagic   21        spotted sand bass  2.0746408271
## 14256          Pelagic    6             market squid  2.6460323560
## 14257    Benthopelagic   11            white croaker  2.6455624276
## 14258    Benthopelagic   16       vermilion rockfish  2.3962347465
## 14259          Benthic    5           diamond turbot  2.9917217525
## 14260         Midwater    5                kelp bass  2.2313171015
## 14261    Benthopelagic    3        rainbow surfperch  2.1506940868
## 14262          Benthic   21       california halibut  2.4816530221
## 14263    Benthopelagic   21            white croaker  2.7792279286
## 14264    Benthopelagic   11          white surfperch  2.1235521077
## 14265    Benthopelagic    4        yellowfin croaker  2.5354616477
## 14266          Pelagic    5         northern anchovy  2.0737618518
## 14267          Pelagic   21         northern anchovy  2.1838850689
## 14268    Benthopelagic   21        yellowfin croaker  2.3179476621
## 14269    Benthopelagic   13       vermilion rockfish  1.9068794341
## 14270    Benthopelagic   11         barred sand bass  2.5470578411
## 14271    Benthopelagic    1       california corbina  2.1467427304
## 14272    Benthopelagic    5       vermilion rockfish  2.4828399653
## 14273         Midwater    1                 halfmoon  2.7005124707
## 14274    Benthopelagic   23          starry rockfish  1.9090492874
## 14275    Benthopelagic    9          copper rockfish  2.2209889129
## 14276    Benthopelagic    5            white croaker  2.5939413958
## 14277    Benthopelagic   12         barred sand bass  2.4687846841
## 14278    Benthopelagic   23            white croaker  2.6872999193
## 14279          Pelagic    5            chub mackerel  2.3576610817
## 14280         Midwater    4                kelp bass  1.9222525214
## 14281          Pelagic    5         northern anchovy  2.8114492613
## 14282    Benthopelagic    1        spotted sand bass  2.1924944051
## 14283          Benthic   16         hornyhead turbot  2.6808242626
## 14284         Midwater   11                kelp bass  2.3276959228
## 14285          Pelagic   21            chub mackerel  2.6557871228
##  [ reached 'max' / getOption("max.print") -- omitted 294515 rows ]
prj_predict <- proj_predict(prj)
# Using the 'bayesplot' package:
ppc_dens_overlay(y = fish_projpred_train$TotalDDT.trans.non, yrep = prj_predict)

Results/overview of projpred

The predictor ranking chart shows that all predictors are likely important, so the model will be left as is.